Browse Source

供应商发货单位显示问题

hella_online_20240815
zhang_li 1 month ago
parent
commit
4d18c09605
  1. 6
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/labelForm.vue

6
src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/labelForm.vue

@ -595,7 +595,11 @@ const blurThree = (oneRow, twoRow, thereeRow) => {
//
const uomLabel = (row) => {
const obj = getStrDictOptions(DICT_TYPE.UOM).find((item) => item.value == row.uom)
return obj.label
if (obj) {
return obj.label
} else {
return ''
}
}
//

Loading…
Cancel
Save