howie před 2 roky
rodič
revize
5a95803863

+ 6 - 3
src/views/supply/sales/components/sales_detail.vue

@@ -71,9 +71,12 @@
           >
             <template slot-scope="scope">
               {{
-                scope.row.orderType == "TRADE" || scope.row.orderType == "HOME"
-                  ? scope.row.enginOrderNo
-                  : scope.row.mainOrderId
+                scope.row.orderType === "TRADE" ||
+                  scope.row.orderType === "HOME" ||
+                  scope.row.orderType === "REQUISITION_TRADE" ||
+                  scope.row.orderType === "REQUISITION_HOME"
+                    ? scope.row.enginOrderNo
+                    : scope.row.mainOrderId
               }}
             </template>
           </el-table-column>