1、新增结算模块
2、调整业务模块 3、调整客商模块
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
export const reconciliationMatchStatusOptions = [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '未匹配', value: 'unmatched' },
|
||||
{ label: '部分匹配', value: 'partial' },
|
||||
{ label: '已匹配', value: 'matched' },
|
||||
];
|
||||
|
||||
export const reconciliationStatusOptions = [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '未完成', value: 'unfinished' },
|
||||
{ label: '已完成', value: 'completed' },
|
||||
];
|
||||
|
||||
export const transportReconciliationSearchFields = [
|
||||
{ prop: 'reconciliationNo', label: '对账单号', type: 'input' },
|
||||
{ prop: 'preSettlementNos', label: '预结算单号', type: 'input' },
|
||||
{ prop: 'projectName', label: '项目', type: 'input' },
|
||||
{ prop: 'deptName', label: '所属组织', type: 'input' },
|
||||
{ prop: 'contractNo', label: '合同编号', type: 'input' },
|
||||
{ prop: 'payerName', label: '付款方', type: 'input' },
|
||||
{ prop: 'payeeName', label: '收款方', type: 'input' },
|
||||
{
|
||||
prop: 'matchStatus',
|
||||
label: '匹配状态',
|
||||
type: 'select',
|
||||
options: reconciliationMatchStatusOptions,
|
||||
},
|
||||
{
|
||||
prop: 'reconciliationStatus',
|
||||
label: '对账状态',
|
||||
type: 'select',
|
||||
options: reconciliationStatusOptions,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user