Chnaged the comment in update logs while creating the payment request

This commit is contained in:
ashutosh.nehete 2025-11-10 15:30:34 +05:30
parent 58a4a23ac7
commit e657f91d4b

View File

@ -1761,7 +1761,7 @@ namespace Marco.Pms.Services.Service
NextStatusId = Draft, NextStatusId = Draft,
UpdatedById = loggedInEmployee.Id, UpdatedById = loggedInEmployee.Id,
UpdatedAt = DateTime.UtcNow, UpdatedAt = DateTime.UtcNow,
Comment = "Payment request is submited as draft", Comment = "Payment request is saved as draft",
TenantId = tenantId TenantId = tenantId
}); });
@ -3090,7 +3090,7 @@ namespace Marco.Pms.Services.Service
NextStatusId = Draft, NextStatusId = Draft,
UpdatedById = loggedInEmployee.Id, UpdatedById = loggedInEmployee.Id,
UpdatedAt = DateTime.UtcNow, UpdatedAt = DateTime.UtcNow,
Comment = "Payment request is submited as draft", Comment = "Payment request is saved as draft",
TenantId = tenantId TenantId = tenantId
}); });
statusUpdateLogs.Add(new StatusUpdateLog statusUpdateLogs.Add(new StatusUpdateLog
@ -3101,7 +3101,7 @@ namespace Marco.Pms.Services.Service
NextStatusId = Review, NextStatusId = Review,
UpdatedById = loggedInEmployee.Id, UpdatedById = loggedInEmployee.Id,
UpdatedAt = DateTime.UtcNow.AddMilliseconds(1), UpdatedAt = DateTime.UtcNow.AddMilliseconds(1),
Comment = "Payment request is submited for Review", Comment = "Payment request submited for Review",
TenantId = tenantId TenantId = tenantId
}); });