mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
21 lines
523 B
TypeScript
21 lines
523 B
TypeScript
|
import { ListViewSettings } from 'fyo/model/types';
|
||
|
import { getTransactionStatusColumn } from 'models/helpers';
|
||
|
import { PurchaseReceiptItem } from './PurchaseReceiptItem';
|
||
|
import { StockTransfer } from './StockTransfer';
|
||
|
|
||
|
export class PurchaseReceipt extends StockTransfer {
|
||
|
items?: PurchaseReceiptItem[];
|
||
|
|
||
|
static getListViewSettings(): ListViewSettings {
|
||
|
return {
|
||
|
columns: [
|
||
|
'name',
|
||
|
getTransactionStatusColumn(),
|
||
|
'party',
|
||
|
'date',
|
||
|
'grandTotal',
|
||
|
],
|
||
|
};
|
||
|
}
|
||
|
}
|