|
@@ -199,7 +199,21 @@ export const Columns = [
|
|
|
{ key: "supplierOrderNo", title: "供应商订单号", inputType: "Input",isShow:true, },
|
|
|
{ key: "rebateMoney", title: "订单使用返利金额", inputType: "Input",isShow:true, },
|
|
|
{ key: "deductionMoney", title: "订单抵扣余款金额", inputType: "Input",isShow:true, },
|
|
|
- { key: "address", title: "收货地址", inputType: "Input",isShow:true, },
|
|
|
+ {
|
|
|
+ key: "addressName",
|
|
|
+ title: "收货地址",
|
|
|
+ inputType: "PopoverSelect",
|
|
|
+ valueKey: "id",
|
|
|
+ referName: "ADDRESS_PARAM",
|
|
|
+ isShow:true,
|
|
|
+ dataMapping: {
|
|
|
+ address: 'id',
|
|
|
+ addressName: 'name',
|
|
|
+ contacts:'contactsName',
|
|
|
+ },
|
|
|
+ queryParams: () => ({}),
|
|
|
+ width: 180
|
|
|
+ },
|
|
|
{ key: "contacts", title: "收货联系人", inputType: "Input",isShow:true, },
|
|
|
{
|
|
|
key: "customerDeptName",
|
|
@@ -264,13 +278,18 @@ export const Columns = [
|
|
|
title: "供应商业务员",
|
|
|
inputType: "PopoverSelect",
|
|
|
valueKey: "id",
|
|
|
- referName: "SUPPLIERCONTACTS_PARAM",
|
|
|
+ // referName: "SUPPLIERCONTACTS_PARAM",
|
|
|
+ referName: "PSNLICENSE_PARAM",
|
|
|
dataMapping: {
|
|
|
supplierPersonal: 'id',
|
|
|
supplierPersonalName: 'name'
|
|
|
},
|
|
|
isShow:true,
|
|
|
- queryParams: () => ({}),
|
|
|
+ queryParams: (params) => ({
|
|
|
+ // 组织、供应商id
|
|
|
+ pkOrg: params.puOrg,
|
|
|
+ supplier:params.supplier
|
|
|
+ }),
|
|
|
require: true,
|
|
|
},
|
|
|
{ key: "isDeliver", title: "是否发货", inputType: "Checkbox", isShow:true,},
|
|
@@ -509,7 +528,12 @@ export const TabColumns = [
|
|
|
width: 200,
|
|
|
},
|
|
|
{ key: "place", title: "收货地点", inputType: "Input", width: 180 },
|
|
|
- { key: "address", title: "收货地址", inputType: "Input", width: 180 },
|
|
|
+ {
|
|
|
+ key: "address",
|
|
|
+ title: "收货地址",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 180
|
|
|
+ },
|
|
|
{ key: "productBatch", title: "产品批号", inputType: "Input", width: 180 },
|
|
|
{ key: "manufactureDate", title: "生产日期", inputType: "Input", width: 180 },
|
|
|
{
|