mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
feat: Payment system with voucher cards.
feat: Design with inversion dependency injection architecture. feat: Prettier http middleware. feat: Re-write items categories with preferred accounts.
This commit is contained in:
30
server/src/interfaces/ItemCategory.ts
Normal file
30
server/src/interfaces/ItemCategory.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
|
||||
export interface IItemCategory {
|
||||
name: string,
|
||||
|
||||
parentCategoryId?: number,
|
||||
description?: string,
|
||||
userId: number,
|
||||
|
||||
costAccountId?: number,
|
||||
sellAccountId?: number,
|
||||
inventoryAccountId?: number,
|
||||
|
||||
costMethod?: string,
|
||||
};
|
||||
|
||||
export interface IItemCategoryOTD {
|
||||
name: string,
|
||||
|
||||
parentCategoryId?: number,
|
||||
description?: string,
|
||||
userId: number,
|
||||
|
||||
costAccountId?: number,
|
||||
sellAccountId?: number,
|
||||
inventoryAccountId?: number,
|
||||
|
||||
costMethod?: string,
|
||||
};
|
||||
Reference in New Issue
Block a user