|
|
|
@ -127,13 +127,14 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
|
|
|
|
|
//列表
|
|
|
|
|
export const columns: BasicColumn[] = [
|
|
|
|
|
{ title: '对账编号', dataIndex: 'billNo', align: 'left' },
|
|
|
|
|
{ title: '对账客户', dataIndex: 'customerName', align: 'left' },
|
|
|
|
|
{ title: '对账单名称', dataIndex: 'billName', align: 'left' },
|
|
|
|
|
{ title: '对账编号', dataIndex: 'billNo', align: 'left', width: 150 },
|
|
|
|
|
{ title: '对账客户', dataIndex: 'customerName', align: 'left', width: 150 },
|
|
|
|
|
{ title: '对账单名称', dataIndex: 'billName', align: 'left', width: 150 },
|
|
|
|
|
{
|
|
|
|
|
title: '收付类型',
|
|
|
|
|
dataIndex: 'billType',
|
|
|
|
|
align: 'left',
|
|
|
|
|
width: 100,
|
|
|
|
|
// customRender: ({ text }) => {
|
|
|
|
|
// let RData = '-'
|
|
|
|
|
// billTypeData.forEach((e) => {
|
|
|
|
@ -148,11 +149,13 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
title: '账单状态',
|
|
|
|
|
dataIndex: 'isLocking',
|
|
|
|
|
align: 'left',
|
|
|
|
|
width: 100,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '是否不含税',
|
|
|
|
|
dataIndex: 'isNoTax',
|
|
|
|
|
align: 'left',
|
|
|
|
|
width: 100,
|
|
|
|
|
// customRender: ({ text }) => {
|
|
|
|
|
// let RData = '-'
|
|
|
|
|
// if (text == 'true') {
|
|
|
|
@ -163,15 +166,15 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
// return RData
|
|
|
|
|
// },
|
|
|
|
|
},
|
|
|
|
|
{ title: '应收RMB', dataIndex: 'rmbdr', align: 'left' },
|
|
|
|
|
{ title: '未收RMB', dataIndex: 'balrmbdr', align: 'left' },
|
|
|
|
|
{ title: '应收USD', dataIndex: 'usddr', align: 'left' },
|
|
|
|
|
{ title: '未收USD', dataIndex: 'balusddr', align: 'left' },
|
|
|
|
|
{ title: '应付RMB', dataIndex: 'rmbcr', align: 'left' },
|
|
|
|
|
{ title: '未付RMB', dataIndex: 'balrmbcr', align: 'left' },
|
|
|
|
|
{ title: '应付USD', dataIndex: 'usdcr', align: 'left' },
|
|
|
|
|
{ title: '未付USD', dataIndex: 'balusdcr', align: 'left' },
|
|
|
|
|
{ title: '对账时间', dataIndex: 'createTime', align: 'left' },
|
|
|
|
|
{ title: '对账人', dataIndex: 'createByName', align: 'left' },
|
|
|
|
|
{ title: '备注', dataIndex: 'note', align: 'left' },
|
|
|
|
|
{ title: '应收RMB', dataIndex: 'rmbdr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '未收RMB', dataIndex: 'balrmbdr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '应收USD', dataIndex: 'usddr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '未收USD', dataIndex: 'balusddr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '应付RMB', dataIndex: 'rmbcr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '未付RMB', dataIndex: 'balrmbcr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '应付USD', dataIndex: 'usdcr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '未付USD', dataIndex: 'balusdcr', align: 'left', width: 100 },
|
|
|
|
|
{ title: '对账时间', dataIndex: 'createTime', align: 'left', width: 150 },
|
|
|
|
|
{ title: '对账人', dataIndex: 'createByName', align: 'left', width: 100 },
|
|
|
|
|
{ title: '备注', dataIndex: 'note', align: 'left', width: 150 },
|
|
|
|
|
]
|
|
|
|
|