mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +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;
|
|
}
|