Browse Source

JLHWEB: 1、修复骨条物料选择无数据问题

JohnnyChan 1 day ago
parent
commit
4c8de5e55c

+ 5 - 0
JLHWEB/src/views/quote/mattressQuote/hooks/index.tsx

@@ -593,6 +593,11 @@ export const useHooks = (t?: any) => {
       label: "车花边",
       formulakinds: [205],
       value: 32
+    },
+    {
+      label: "骨条",
+      formulakinds: [206],
+      value: 33
     }
   ];
   /**

+ 3 - 0
JLHWEB/src/views/system/selector/mtrldef/index.vue

@@ -281,6 +281,9 @@ const getTypename = (ins_type: number) => {
     case 201:
       ls_typename = "无纺布护角";
       break;
+    case 33:
+      ls_typename = "骨条";
+      break;
     default:
       ls_typename = "类型未定义";
       break;