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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
281 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;
2023-01-13 18:46:52 +05:30
batchNumber?: string;
2022-10-28 13:34:08 +05:30
}