fd5b1484e6
2、调整业务模块 3、调整客商模块
46 lines
1.8 KiB
JavaScript
46 lines
1.8 KiB
JavaScript
export const approvalStatusOptions = [
|
|
{ label: '草稿', value: 'draft' },
|
|
{ label: '审批中', value: 'reviewing' },
|
|
{ label: '审批通过', value: 'approved' },
|
|
{ label: '已驳回', value: 'returned' },
|
|
{ label: '已作废', value: 'voided' },
|
|
];
|
|
|
|
export const invoiceStatusOptions = [
|
|
{ label: '未收/开票', value: 'unreceived' },
|
|
{ label: '部分收/开票', value: 'partial' },
|
|
{ label: '已收/开票', value: 'completed' },
|
|
];
|
|
|
|
export const paymentStatusOptions = [
|
|
{ label: '未收/付款', value: 'unpaid' },
|
|
{ label: '部分收/付款', value: 'partial' },
|
|
{ label: '已收/付款', value: 'paid' },
|
|
];
|
|
|
|
export const kingdeeSyncStatusOptions = [
|
|
{ label: '未同步', value: 'unsynced' },
|
|
{ label: '已同步', value: 'synced' },
|
|
{ label: '同步失败', value: 'failed' },
|
|
];
|
|
|
|
export const formalSettlementSearchFields = [
|
|
{ label: '结算单号', prop: 'formalSettlementNo', type: 'input' },
|
|
{ label: '预结算单号', prop: 'preSettlementNo', type: 'input' },
|
|
{ label: '项目', prop: 'projectName', type: 'input' },
|
|
{ label: '所属组织', prop: 'deptName', type: 'input' },
|
|
{ label: '合同编号', prop: 'contractNo', type: 'input' },
|
|
{ label: '付款方', prop: 'payerName', type: 'input' },
|
|
{ label: '收款方', prop: 'payeeName', type: 'input' },
|
|
{ label: '发票状态', prop: 'invoiceStatus', type: 'select', options: invoiceStatusOptions },
|
|
{ label: '收付款状态', prop: 'paymentStatus', type: 'select', options: paymentStatusOptions },
|
|
{ label: '审核状态', prop: 'approvalStatus', type: 'select', options: approvalStatusOptions },
|
|
{
|
|
label: '金蝶单据状态',
|
|
prop: 'kingdeeSyncStatus',
|
|
type: 'select',
|
|
options: kingdeeSyncStatusOptions,
|
|
},
|
|
{ label: '生成日期', prop: 'createDateRange', type: 'daterange' },
|
|
];
|