diff --git a/ui/src/pages/OrderProductionUpdate.vue b/ui/src/pages/OrderProductionUpdate.vue index 76ad100..ef2d215 100644 --- a/ui/src/pages/OrderProductionUpdate.vue +++ b/ui/src/pages/OrderProductionUpdate.vue @@ -684,11 +684,8 @@ function isSelectionCompleteByOldShape (row) { if (!hasModel) return false const oldHasColor = String(row?.OldColor || '').trim().length > 0 - const oldHasDim2 = String(row?.OldDim2 || '').trim().length > 0 const hasNewColor = normalizeShortCode(row?.NewColor, 3).length === 3 - const hasNewDim2 = normalizeShortCode(row?.NewDim2, 3).length === 3 - if (oldHasDim2) return hasNewColor && hasNewDim2 if (oldHasColor) return hasNewColor return true }