diff --git a/klp-ui/src/views/wms/coil/repeated.vue b/klp-ui/src/views/wms/coil/repeated.vue index 9e0367d4..1aa55295 100644 --- a/klp-ui/src/views/wms/coil/repeated.vue +++ b/klp-ui/src/views/wms/coil/repeated.vue @@ -53,8 +53,10 @@ @@ -229,9 +231,10 @@ export default { const currentNo = (item.currentCoilNo || '').toLowerCase() const spec = (item.productSpecification || '').toLowerCase() const material = (item.productMaterial || '').toLowerCase() - const warehouse = (item.warehouseName || '').toLowerCase() + const manufacturer = (item.manufacturer || '').toLowerCase() + // const warehouse = (item.warehouseName || '').toLowerCase() const matType = (item.materialType || '').toLowerCase() - return enterNo.includes(key) || currentNo.includes(key) || spec.includes(key) || material.includes(key) || warehouse.includes(key) || matType.includes(key) + return enterNo.includes(key) || currentNo.includes(key) || spec.includes(key) || material.includes(key) || manufacturer.includes(key) || matType.includes(key) }) return groupNo.includes(key) || hasMatchCoil })