2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +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
275 B
TypeScript
Raw Normal View History

import { Doc } from 'fyo/model/doc';
2022-10-28 08:04:08 +00:00
import { Money } from 'pesa';
2022-10-28 08:04:08 +00:00
export class StockLedgerEntry extends Doc {
date?: Date;
item?: string;
rate?: Money;
quantity?: number;
location?: string;
referenceName?: string;
referenceType?: string;
2023-02-28 06:01:04 +00:00
batch?: string;
2022-10-28 08:04:08 +00:00
}