|
|
@@ -34,11 +34,38 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
align: 'center',
|
|
|
dataIndex: 'pi_status',
|
|
|
width: 90
|
|
|
+ },{
|
|
|
+ text: '关联单号',
|
|
|
+ dataIndex: 'pi_sacode',
|
|
|
+ width: 150
|
|
|
+ },{
|
|
|
+ text: '总金额',
|
|
|
+ dataIndex: 'pi_total',
|
|
|
+ xtype:'numbercolumn',
|
|
|
+ width: 110
|
|
|
+ },{
|
|
|
+ text: '收款状态',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'pi_prstatus',
|
|
|
+ width: 90
|
|
|
+ },{
|
|
|
+ text: '录入人',
|
|
|
+ dataIndex: 'creatorName',
|
|
|
+ width :110
|
|
|
+ },{
|
|
|
+ text: '审核人',
|
|
|
+ dataIndex: 'pi_auditman',
|
|
|
+ width: 110
|
|
|
}, {
|
|
|
+ text: '备注',
|
|
|
+ dataIndex: 'pi_remark',
|
|
|
+ width: 250
|
|
|
+ },{
|
|
|
text: '明细序号',
|
|
|
dataIndex: 'pd_pdno',
|
|
|
xtype: 'numbercolumn',
|
|
|
width: 100,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
var format = '0'
|
|
|
return Ext.util.Format.number(v, format);
|
|
|
@@ -46,12 +73,14 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
}, {
|
|
|
text: '关联销售单号',
|
|
|
dataIndex: 'pd_ordercode',
|
|
|
+ hidden:true,
|
|
|
width: 150
|
|
|
}, {
|
|
|
text: '订单序号',
|
|
|
dataIndex: 'pd_orderdetno',
|
|
|
xtype:'numbercolumn',
|
|
|
width: 100,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
var format = '0'
|
|
|
return Ext.util.Format.number(v, format);
|
|
|
@@ -59,10 +88,12 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
}, {
|
|
|
text: '物料编号',
|
|
|
dataIndex: 'pd_prodcode',
|
|
|
+ hidden:true,
|
|
|
width: 150
|
|
|
}, {
|
|
|
text: '物料名称',
|
|
|
dataIndex: 'pr_detail',
|
|
|
+ hidden:true,
|
|
|
width: 150
|
|
|
}, {
|
|
|
text: '数量',
|
|
|
@@ -70,6 +101,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
dataIndex: 'qty',
|
|
|
xtype:'numbercolumn',
|
|
|
width: 110,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
var arr = (v + '.').split('.');
|
|
|
var xr = (new Array(arr[1].length > 3 ? 3 : arr[1].length)).fill('0');
|
|
|
@@ -81,6 +113,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
dataIndex: 'pd_sendprice',
|
|
|
xtype:'numbercolumn',
|
|
|
width: 110,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
var arr = (v + '.').split('.');
|
|
|
var xr = (new Array(arr[1].length > 8 ? 8 : arr[1].length)).fill('0');
|
|
|
@@ -92,6 +125,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
dataIndex: 'pd_ordertotal',
|
|
|
xtype:'numbercolumn',
|
|
|
width: 110,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
var arr = (v + '.').split('.');
|
|
|
var xr = (new Array(arr[1].length > 3 ? 3 : arr[1].length)).fill('0');
|
|
|
@@ -103,6 +137,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
dataIndex: 'pd_taxrate',
|
|
|
xtype:'numbercolumn',
|
|
|
width: 80,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
return Ext.util.Format.number(v, '0');
|
|
|
}
|
|
|
@@ -111,6 +146,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
dataIndex: 'pd_price',
|
|
|
xtype:'numbercolumn',
|
|
|
width: 110,
|
|
|
+ hidden:true,
|
|
|
renderer : function(v) {
|
|
|
var arr = (v + '.').split('.');
|
|
|
var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');
|
|
|
@@ -120,6 +156,7 @@ Ext.define('saas.view.home.infoCardList.UnauditSaleOut', {
|
|
|
}, {
|
|
|
text: '备注',
|
|
|
dataIndex: 'pd_remark',
|
|
|
+ hidden:true,
|
|
|
width: 250
|
|
|
}],
|
|
|
listeners: {
|