2023-06-05 06:09:06 +00:00
|
|
|
import { Fyo } from 'fyo';
|
|
|
|
import { Action, ListViewSettings } from 'fyo/model/types';
|
|
|
|
import {
|
|
|
|
getStockTransferActions,
|
|
|
|
getTransactionStatusColumn,
|
|
|
|
} from 'models/helpers';
|
|
|
|
import { ModelNameEnum } from 'models/types';
|
2022-11-14 08:30:11 +00:00
|
|
|
import { ShipmentItem } from './ShipmentItem';
|
|
|
|
import { StockTransfer } from './StockTransfer';
|
|
|
|
|
|
|
|
export class Shipment extends StockTransfer {
|
|
|
|
items?: ShipmentItem[];
|
|
|
|
|
|
|
|
static getListViewSettings(): ListViewSettings {
|
|
|
|
return {
|
|
|
|
columns: [
|
|
|
|
'name',
|
|
|
|
getTransactionStatusColumn(),
|
|
|
|
'party',
|
|
|
|
'date',
|
|
|
|
'grandTotal',
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
2023-06-05 06:09:06 +00:00
|
|
|
|
|
|
|
static getActions(fyo: Fyo): Action[] {
|
|
|
|
return getStockTransferActions(fyo, ModelNameEnum.Shipment);
|
|
|
|
}
|
2022-11-14 08:30:11 +00:00
|
|
|
}
|