feat: issues in bills and payments made

This commit is contained in:
Ahmed Bouhuolia
2020-10-24 14:49:32 +02:00
parent e8aa4b5d73
commit b91c452101
6 changed files with 67 additions and 47 deletions

View File

@@ -1,3 +1,4 @@
import { IDynamicListFilterDTO } from "./DynamicFilter";
import { IItemEntry, IItemEntryDTO } from "./ItemEntry";
export interface IBillDTO {
@@ -14,6 +15,8 @@ export interface IBillDTO {
};
export interface IBillEditDTO {
vendorId: number,
billNumber: string,
billDate: Date,
dueDate: Date,
referenceNo: string,
@@ -42,7 +45,6 @@ export interface IBill {
entries: IItemEntry[],
};
export interface IBillsFilter {
page: number,
pageSize: number,
export interface IBillsFilter extends IDynamicListFilterDTO {
stringifiedFilterRoles?: string,
}