|
|
@@ -440,7 +440,7 @@ const fetchWareOptions = () => {
|
|
440
|
440
|
}
|
|
441
|
441
|
|
|
442
|
442
|
const fetchOwnerCompanyOptions = () => {
|
|
443
|
|
- proxy.$axios.get('sto/OutRecord/ownerCompanyOptions', {}).then((response) => {
|
|
|
443
|
+ proxy.$axios.get('sto/Customer/querySelect', {}).then((response) => {
|
|
444
|
444
|
if (response.data.code === 0 || response.data.code === '0') {
|
|
445
|
445
|
ownerCompanyOptions.value = toOptions(response.data.data, 'label', 'value')
|
|
446
|
446
|
}
|
|
|
@@ -448,7 +448,7 @@ const fetchOwnerCompanyOptions = () => {
|
|
448
|
448
|
}
|
|
449
|
449
|
|
|
450
|
450
|
const fetchCustomerOptions = () => {
|
|
451
|
|
- proxy.$axios.get('sto/OutRecord/customerCompanyOptions', {}).then((response) => {
|
|
|
451
|
+ proxy.$axios.get('sto/Customer/querySelect', {}).then((response) => {
|
|
452
|
452
|
if (response.data.code === 0 || response.data.code === '0') {
|
|
453
|
453
|
customerCompanyOptions.value = toOptions(response.data.data, 'label', 'value')
|
|
454
|
454
|
}
|