2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/models/inventory/StockLedgerEntry.ts

14 lines
257 B
TypeScript
Raw Normal View History

import { Doc } from 'fyo/model/doc';
2022-10-28 13:34:08 +05:30
import { Money } from 'pesa';
2022-10-28 13:34:08 +05:30
export class StockLedgerEntry extends Doc {
date?: Date;
item?: string;
rate?: Money;
quantity?: number;
location?: string;
referenceName?: string;
referenceType?: string;
}