mirror of
https://github.com/frappe/books.git
synced 2024-11-12 16:36:27 +00:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
|
import { Doc } from 'fyo/model/doc';
|
||
|
import { Money } from 'pesa';
|
||
|
|
||
|
export class StockTransferItem extends Doc {
|
||
|
item?: string;
|
||
|
location?: string;
|
||
|
quantity?: number;
|
||
|
rate?: Money;
|
||
|
amount?: Money;
|
||
|
unit?: string;
|
||
|
description?: string;
|
||
|
hsnCode?: number;
|
||
|
}
|