fd5b1484e6
2、调整业务模块 3、调整客商模块
14 lines
799 B
JavaScript
14 lines
799 B
JavaScript
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: '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 },
|
|
{ prop: 'reconciliationDate', label: '对账日期', type: 'date' },
|
|
];
|