mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { Money } from 'pesa';
|
|
|
|
|
|
export class StockLedgerEntry extends Doc {
|
|
date?: Date;
|
|
item?: string;
|
|
rate?: Money;
|
|
quantity?: number;
|
|
location?: string;
|
|
referenceName?: string;
|
|
referenceType?: string;
|
|
batchNumber?: string;
|
|
}
|