箱管 往来单位 调整

szh-new
张同海 3 months ago
parent 4fa33a5da8
commit effded7907

@ -29,7 +29,7 @@ export const columns: BasicColumn[] = [
}, },
{ {
title: '新箱主', title: '新箱主',
dataIndex: 'BuyContainerOwner', dataIndex: 'buyContainerOwner',
sorter: true, sorter: true,
width: 200, width: 200,
}, },
@ -145,13 +145,13 @@ export const formSchema: FormSchema[] = [
}, },
{ {
label: '购箱单位Id', label: '购箱单位Id',
field: 'BuyContainerOwnerId', field: 'buyContainerOwnerId',
component: 'Input', component: 'Input',
defaultValue: '', defaultValue: '',
show: false, show: false,
}, },
{ {
field: 'BuyContainerOwner', field: 'buyContainerOwner',
label: '购箱单位', label: '购箱单位',
component: 'ApiSelect', component: 'ApiSelect',
required: true, required: true,
@ -173,10 +173,10 @@ export const formSchema: FormSchema[] = [
}, },
onChange: (e, obj) => { onChange: (e, obj) => {
if (e && obj) { if (e && obj) {
formModel.BuyContainerOwnerId = obj.id formModel.buyContainerOwnerId = obj.id
} }
if (!e && !obj) { if (!e && !obj) {
formModel.BuyContainerOwnerId = '' formModel.buyContainerOwnerId = ''
} }
}, },
} }

@ -17,7 +17,7 @@ import {
getVouchingClerkList, getVouchingClerkList,
getSaleUserList, getSaleUserList,
getCustomerServiceList, getCustomerServiceList,
getDeptList, getOrgList,
GetFeeCurrencySelectList, GetFeeCurrencySelectList,
GetUserList, GetUserList,
GetAllClientList, GetAllClientList,
@ -100,12 +100,12 @@ if (res9.succeeded) {
CustomerServiceList.push({ label: e.userName, value: e.id }) CustomerServiceList.push({ label: e.userName, value: e.id })
}) })
} }
let DeptList = [] let OrgList = []
const res10: API.DataResult = await getDeptList() const res10: API.DataResult = await getOrgList()
if (res10.succeeded) { if (res10.succeeded) {
DeptList = [] OrgList = []
res10.data.forEach((e) => { res10.data.forEach((e) => {
DeptList.push({ label: e.orgName, value: e.id }) OrgList.push(e)
}) })
} }
let OrgTree = [] let OrgTree = []
@ -180,7 +180,7 @@ export const columns: BasicColumn[] = [
width: 150, width: 150,
customRender: ({ text }) => { customRender: ({ text }) => {
let RText = '' let RText = ''
DeptList.forEach((e) => { OrgList.forEach((e) => {
text.forEach((item) => { text.forEach((item) => {
if (e.value == item) { if (e.value == item) {
RText = RText == '' ? e.label : `${RText},${e.label}` RText = RText == '' ? e.label : `${RText},${e.label}`
@ -1179,7 +1179,7 @@ export const formSchema: FormSchema[] = [
colProps: { span: 8 }, colProps: { span: 8 },
componentProps: ({ formModel }) => { componentProps: ({ formModel }) => {
return { return {
options: DeptList, options: OrgList,
allowClear: true, allowClear: true,
onChange: (e, obj) => { onChange: (e, obj) => {
console.log(e, obj) console.log(e, obj)

Loading…
Cancel
Save