|
|
@ -117,73 +117,28 @@ |
|
|
|
restoreUrl: prefix + "/restore/{id}", |
|
|
|
detailUrl: prefix + "/detail/{id}", |
|
|
|
exportUrl: prefix + "/export", |
|
|
|
pageSize: 5, |
|
|
|
pageList: [5, 10, 25, 50], |
|
|
|
modalName: "客户报价表", |
|
|
|
fixedColumns:true, |
|
|
|
fixedRightNumber:1, |
|
|
|
columns: [ |
|
|
|
{checkbox: true}, |
|
|
|
{ |
|
|
|
field: 'id', |
|
|
|
title: '主键ID' |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'instanceId', |
|
|
|
title: '流程实例ID', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'submitInstanceId', |
|
|
|
title: '流程提交实例ID', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'cancelInstanceId', |
|
|
|
title: '流程作废实例ID', |
|
|
|
visible: false |
|
|
|
{field: 'id',title: '主键ID',visible: false}, |
|
|
|
{field: 'instanceId',title: '流程实例ID',visible: false}, |
|
|
|
{field: 'submitInstanceId',title: '流程提交实例ID',visible: false }, |
|
|
|
{field: 'cancelInstanceId',title: '流程作废实例ID', visible: false}, |
|
|
|
{field: 'restoreInstanceId',title: '流程恢复实例ID',visible: false}, |
|
|
|
{field: 'instanceTypeName',title: '流程实例类型',visible: false}, |
|
|
|
{field: 'applyUser',title: '申请人ID', visible: false}, |
|
|
|
{field: 'applyUserName', title: '<span style="color: red;">申请人</span>', |
|
|
|
formatter: function(value, row, index) {return '<span style="color: red;">' + (value ? value : "-") + '</span>'; } |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'restoreInstanceId', |
|
|
|
title: '流程恢复实例ID', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'instanceTypeName', |
|
|
|
title: '流程实例类型', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'applyUser', |
|
|
|
title: '申请人ID', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'applyUserName', |
|
|
|
title: '<span style="color: red;">申请人</span>', |
|
|
|
formatter: function(value, row, index) { |
|
|
|
return '<span style="color: red;">' + (value ? value : "-") + '</span>'; |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'applyTime', |
|
|
|
title: '申请时间' |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'taskId', |
|
|
|
title: '当前任务ID', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'todoUserId', |
|
|
|
title: '待办用户ID', |
|
|
|
visible: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
field: 'taskName', |
|
|
|
title: '当前任务名称', |
|
|
|
align: 'center', |
|
|
|
formatter: function(value, row, index) { |
|
|
|
return '<span class="badge badge-primary">' + value + '</span>'; |
|
|
|
} |
|
|
|
{field: 'applyTime',title: '申请时间'}, |
|
|
|
{field: 'taskId', title: '当前任务ID',visible: false}, |
|
|
|
{field: 'todoUserId',title: '待办用户ID',visible: false}, |
|
|
|
{field: 'taskName',title: '当前任务名称',align: 'center', |
|
|
|
formatter: function(value, row, index) { return '<span class="badge badge-primary">' + value + '</span>'; } |
|
|
|
}, |
|
|
|
{ title: '审核状态',field: 'auditStatus', |
|
|
|
formatter: function (value, row, index) { return $.table.selectDictLabel(auditStatusDatas, value);} |
|
|
@ -198,9 +153,8 @@ |
|
|
|
{title: '物料合计',field: 'enterprise'}, |
|
|
|
{title: '数量合计',field: 'enterpriseSum'}, |
|
|
|
{title: '报价币种',field: 'commonCurrency', |
|
|
|
formatter: function (value, row, index) { |
|
|
|
return $.table.selectDictLabel(currencyDatas, value); |
|
|
|
}}, |
|
|
|
formatter: function (value, row, index) {return $.table.selectDictLabel(currencyDatas, value);} |
|
|
|
}, |
|
|
|
{title: '国内汇率',field: 'rmbTax'}, |
|
|
|
{title: '美元汇率',field: 'usdTax'}, |
|
|
|
{title: '不含税总价(RMB)',field: 'noRmbSum'}, |
|
|
|