-
+
导出
-
@@ -116,7 +116,6 @@
showFooter: true,
fixedColumns: true, // 启用冻结列
fixedRightNumber: 1, // 冻结右列个数
- //height: $(window).height() - 120,
modalName: "销售出货通知",
columns: [{
checkbox: true
@@ -129,10 +128,12 @@
{
title: '出库单号',
field: 'outOrderCode',
+ align: 'center',
},
{
title: '出库状态',
field: 'warehouseOutStatus',
+ align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(warehouseOutStatusDatas, value);
}
@@ -140,22 +141,28 @@
{
title: '业务员',
field: 'businessMembers',
+ align: 'center',
},
{
title: '关联销售订单号',
field: 'salesOrderCode',
- },
-
- {
- title: '订单类型',
- field: 'warehouseOrderType',
+ align: 'center',
formatter: function(value, row, index) {
- return $.table.selectDictLabel(warehouseOrderTypeDatas, value);
+ return $.table.tooltip(value, 5, "open");
}
},
+
+ // {
+ // title: '订单类型',
+ // field: 'warehouseOrderType',
+ // formatter: function(value, row, index) {
+ // return $.table.selectDictLabel(warehouseOrderTypeDatas, value);
+ // }
+ // },
{
title: '出库类型',
field: 'warehouseOutType',
+ align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(warehouseOutTypeDatas, value);
}
@@ -164,19 +171,22 @@
{
title: '客户ID',
field: 'customerId',
+ align: 'center',
},
{
title: '客户名称',
field: 'customerName',
+ align: 'center',
},
- {
- title: '客户订单号',
- field: 'salesOrderNumber',
- },
+ // {
+ // title: '客户订单号',
+ // field: 'salesOrderNumber',
+ // },
{
title: '物料合计',
field: 'materialSum',
+ align: 'center',
footerFormatter: function (value) {
var sum = 0;
for (var i in value) {
@@ -188,6 +198,7 @@
{
title: '数量合计',
field: 'enterpriseSum',
+ align: 'center',
footerFormatter: function (value) {
var sum = 0;
for (var i in value) {
@@ -200,6 +211,7 @@
{
title: '不含税总价(RMB)',
field: 'allPriceExcludingTaxRmb',
+ align: 'center',
footerFormatter: function (value) {
var sum = 0;
for (var i in value) {
@@ -211,6 +223,7 @@
{
title: '不含税总价(美元)',
field: 'allPriceExcludingTaxDollar',
+ align: 'center',
footerFormatter: function (value) {
var sum = 0;
for (var i in value) {
@@ -222,6 +235,7 @@
{
title: '含税总价',
field: 'allPriceIncludesTax',
+ align: 'center',
footerFormatter: function (value) {
var sum = 0;
for (var i in value) {
@@ -230,56 +244,67 @@
return "总含税总价: " + sum.toFixed(2);
}
},
- {
- title: '计划交付时间',
- field: 'plannedDeliveryTime',
- },
- {
- title: '客户验收时间',
- field: 'acceptanceTime',
- },
- {
- title: '付款条件',
- field: 'paymentCondition',
- },
- {
- title: '交付条件',
- field: 'deliveryCondition',
- },
+ // {
+ // title: '计划交付时间',
+ // field: 'plannedDeliveryTime',
+ // },
+ // {
+ // title: '客户验收时间',
+ // field: 'acceptanceTime',
+ // },
+ // {
+ // title: '付款条件',
+ // field: 'paymentCondition',
+ // },
+ // {
+ // title: '交付条件',
+ // field: 'deliveryCondition',
+ // },
{
title: '收货联系人',
field: 'customerContact',
+ align: 'center',
formatter: function(value, row, index) {
- return $.table.tooltip(value, 10, "open");
+ return $.table.tooltip(value, 5, "open");
}
},
{
title: '联系电话',
field: 'contactNumber',
+ align: 'center',
},
{
title: '收货地址',
field: 'customerContactAddress',
+ align: 'center',
+ formatter: function(value, row, index) {
+ return $.table.tooltip(value, 5, "open");
+ }
},
{
title: '送货日期',
field: 'deliverTime',
+ align: 'center',
},
{
title: '录入时间',
field: 'createTime',
+ align: 'center',
},
{
title: '录入人',
field: 'createBy',
+ align: 'center',
},
{
title: '更新人',
field: 'updateBy',
+ align: 'center',
},
{
title: '上次更新时间',
field: 'updateTime',
+ align: 'center',
},
{