fix: expense publish db column.

This commit is contained in:
Ahmed Bouhuolia
2020-09-29 16:32:01 +02:00
parent 9fbad4ac46
commit 35fce02c7a
4 changed files with 13 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ export interface IExpense {
paymentAccountId: number,
peyeeId?: number,
referenceNo?: string,
published: boolean,
publishedAt: Date|null,
userId: number,
paymentDate: Date,
@@ -29,7 +29,7 @@ export interface IExpenseDTO {
paymentAccountId: number,
peyeeId?: number,
referenceNo?: string,
published: boolean,
publish: boolean,
userId: number,
paymentDate: Date,