调整结算模块
This commit is contained in:
@@ -2,10 +2,8 @@ export const transportReconciliationFormFields = [
|
||||
{ prop: 'reconciliationNo', label: '对账单号', readonly: true },
|
||||
{ prop: 'reconciliationMode', label: '对账模式', type: 'mode' },
|
||||
{ prop: 'formalSettlementNo', label: '正式结算单', type: 'formal' },
|
||||
{ prop: 'payerName', label: '付款方', readonly: true },
|
||||
{ prop: 'payeeName', label: '收款方', readonly: true },
|
||||
{ prop: 'customerName', label: '客户/承运商', readonly: true },
|
||||
{ prop: 'projectName', label: '项目', readonly: true },
|
||||
{ prop: 'deptName', label: '所属组织', readonly: true },
|
||||
{ prop: 'contractName', label: '合同名称', readonly: true },
|
||||
{ prop: 'paidAmount', label: '已付合计', money: true, readonly: true },
|
||||
{ prop: 'reconcilerName', label: '对账人', readonly: true },
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
export const reconciliationMatchStatusOptions = [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '全部', value: 'all' },
|
||||
{ label: '未匹配', value: 'unmatched' },
|
||||
{ label: '部分匹配', value: 'partial' },
|
||||
{ label: '已匹配', value: 'matched' },
|
||||
];
|
||||
|
||||
export const reconciliationStatusOptions = [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '全部', value: 'all' },
|
||||
{ label: '未完成', value: 'unfinished' },
|
||||
{ label: '已完成', value: 'completed' },
|
||||
];
|
||||
|
||||
@@ -27,13 +27,10 @@ export const internalColumns = [
|
||||
{ prop: 'transportType', label: '运输类型', minWidth: 120 },
|
||||
{ prop: 'cargoName', label: '货物名称', minWidth: 120 },
|
||||
{ prop: 'cargoType', label: '货物类型', minWidth: 120 },
|
||||
{ prop: 'specification', label: '规格', minWidth: 100 },
|
||||
{ prop: 'model', label: '型号', minWidth: 100 },
|
||||
{ prop: 'transportQuantity', label: '运输总量', minWidth: 100, number: true },
|
||||
{ prop: 'mileage', label: '里程(KM)', minWidth: 100, number: true },
|
||||
{ prop: 'mileage', label: '里程(KM)', minWidth: 120, number: true },
|
||||
{ prop: 'batchNo', label: '批次号', minWidth: 100 },
|
||||
{ prop: 'unitPrice', label: '运输单价', minWidth: 110, money: true },
|
||||
{ prop: 'freightAmount', label: '运输费', minWidth: 110, money: true },
|
||||
{ prop: 'settlementAmount', label: '结算金额', minWidth: 120, money: true },
|
||||
{ prop: 'matchResult', label: '匹配结果', minWidth: 100 },
|
||||
{ prop: 'updateResult', label: '账单更新结果', minWidth: 130 },
|
||||
@@ -50,7 +47,7 @@ export const externalVehicleColumns = [
|
||||
{ prop: 'cargoName', label: '货物名称', minWidth: 120 },
|
||||
{ prop: 'cargoType', label: '货物类型', minWidth: 120 },
|
||||
{ prop: 'transportQuantity', label: '运输总量', minWidth: 100, number: true },
|
||||
{ prop: 'mileage', label: '里程(KM)', minWidth: 100, number: true },
|
||||
{ prop: 'mileage', label: '里程(KM)', minWidth: 120, number: true },
|
||||
{ prop: 'batchNo', label: '批次号', minWidth: 100 },
|
||||
{ prop: 'unitPrice', label: '运输单价', minWidth: 110, money: true },
|
||||
{ prop: 'freightAmount', label: '运费', minWidth: 110, money: true },
|
||||
@@ -71,7 +68,7 @@ export const externalCargoColumns = [
|
||||
{ prop: 'model', label: '型号', minWidth: 100 },
|
||||
{ prop: 'transportQuantity', label: '运输量', minWidth: 100, number: true },
|
||||
{ prop: 'unitPrice', label: '运输单价', minWidth: 110, money: true },
|
||||
{ prop: 'mileage', label: '里程(KM)', minWidth: 100, number: true },
|
||||
{ prop: 'mileage', label: '里程(KM)', minWidth: 120, number: true },
|
||||
{ prop: 'freightAmount', label: '运输费', minWidth: 110, money: true },
|
||||
{ prop: 'settlementAmount', label: '结算金额', minWidth: 120, money: true },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user