mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
|
import { Doc } from 'fyo/model/doc';
|
||
|
import type { Transfer } from './Transfer';
|
||
|
import type { Money } from 'pesa';
|
||
|
|
||
|
export class TransferItem extends Doc {
|
||
|
item?: string;
|
||
|
|
||
|
unit?: string;
|
||
|
transferUnit?: string;
|
||
|
quantity?: number;
|
||
|
transferQuantity?: number;
|
||
|
unitConversionFactor?: number;
|
||
|
|
||
|
rate?: Money;
|
||
|
amount?: Money;
|
||
|
|
||
|
batch?: string;
|
||
|
serialNumber?: string;
|
||
|
|
||
|
parentdoc?: Transfer;
|
||
|
}
|