create bankAccount, posAccount and update inventories
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { IInventoryBankAccountSummary } from './types';
|
||||
|
||||
export interface IInventoryPosAccountRawResponse {
|
||||
id: number;
|
||||
name: string;
|
||||
code: string;
|
||||
description: string;
|
||||
bankAccountId: number;
|
||||
inventoryId: number;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
deletedAt: null;
|
||||
bankAccount: IInventoryBankAccountSummary;
|
||||
}
|
||||
|
||||
export interface IInventoryPosAccountResponse extends IInventoryPosAccountRawResponse {}
|
||||
|
||||
export interface IInventoryPosAccountRequest {
|
||||
name: string;
|
||||
code: string;
|
||||
description: string;
|
||||
bankAccountId: number;
|
||||
}
|
||||
Reference in New Issue
Block a user