Set updateAt nullable in payment request details VM
This commit is contained in:
parent
4a0144c23b
commit
3d192770e9
@ -29,7 +29,7 @@ namespace Marco.Pms.Model.ViewModels.Expenses
|
||||
public bool IsAdvancePayment { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public BasicEmployeeVM? CreatedBy { get; set; }
|
||||
public DateTime UpdatedAt { get; set; }
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
public BasicEmployeeVM? UpdatedBy { get; set; }
|
||||
public List<ExpensesStatusMasterVM>? NextStatus { get; set; }
|
||||
public List<PaymentRequestUpdateLog>? UpdateLogs { get; set; }
|
||||
|
||||
@ -1458,6 +1458,7 @@ namespace Marco.Pms.Services.Service
|
||||
.Include(pr => pr.RecurringPayment)
|
||||
.Include(pr => pr.ExpenseCategory)
|
||||
.Include(pr => pr.ExpenseStatus)
|
||||
.Include(pr => pr.PaidBy).ThenInclude(e => e!.JobRole)
|
||||
.Include(pr => pr.CreatedBy).ThenInclude(e => e!.JobRole)
|
||||
.Include(pr => pr.UpdatedBy).ThenInclude(e => e!.JobRole)
|
||||
.Where(pr =>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user