fix: missed send_to_email column in sale estimate.

This commit is contained in:
Ahmed Bouhuolia
2020-10-26 12:48:26 +02:00
parent 4d3cd250fd
commit 92ddc1bf38
5 changed files with 11 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ export interface ISaleEstimate {
termsConditions: string,
userId: number,
entries: IItemEntry[],
sendToEmail: string,
createdAt?: Date,
};
export interface ISaleEstimateDTO {
@@ -22,6 +22,7 @@ export interface ISaleEstimateDTO {
entries: IItemEntry[],
note: string,
termsConditions: string,
sendToEmail: string,
};
export interface ISalesEstimatesFilter extends IDynamicListFilterDTO {