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