mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
refactoring: bills service.
refactoring: bills payments made service.
This commit is contained in:
@@ -1,4 +1,25 @@
|
||||
import { IItemEntry } from "./ItemEntry";
|
||||
|
||||
|
||||
export interface ISaleEstimate {};
|
||||
export interface ISaleEstimateOTD {};
|
||||
export interface ISaleEstimate {
|
||||
id?: number,
|
||||
amount: number,
|
||||
customerId: number,
|
||||
estimateDate: Date,
|
||||
reference: string,
|
||||
note: string,
|
||||
termsConditions: string,
|
||||
userId: number,
|
||||
entries: IItemEntry[],
|
||||
|
||||
createdAt?: Date,
|
||||
};
|
||||
export interface ISaleEstimateDTO {
|
||||
customerId: number,
|
||||
estimateDate?: Date,
|
||||
reference: string,
|
||||
estimateNumber: string,
|
||||
entries: IItemEntry[],
|
||||
note: string,
|
||||
termsConditions: string,
|
||||
};
|
||||
Reference in New Issue
Block a user