2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/models/inventory/StockTransferItem.ts

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;
}