瀏覽代碼

bug修复 INK 喷墨 NEEDLE 针式

chenrui 3 年之前
父節點
當前提交
347bb1464b

+ 3 - 3
src/views/allocationManagement/chainTransferIn/detail.vue

@@ -15,8 +15,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="chainTransferInDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="chainTransferInDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -97,7 +97,7 @@ export default {
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
       localDataSource: [],
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   computed: {

+ 3 - 3
src/views/allocationManagement/chainTransferIn/edit.vue

@@ -8,8 +8,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="chainTransferInEdit-preview-btn" :disabled="loadData.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="chainTransferInEdit-print-btn" :disabled="loadData.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -154,7 +154,7 @@ export default {
       },
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/allocationManagement/chainTransferOut/detail.vue

@@ -15,8 +15,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="chainTransferOutDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="chainTransferOutDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -103,7 +103,7 @@ export default {
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
       localDataSource: [],
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   computed: {

+ 3 - 3
src/views/allocationManagement/chainTransferOut/edit.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="chainTransferOutEdit-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="chainTransferOutEdit-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -282,7 +282,7 @@ export default {
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
       localDataSource: [],
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/allocationManagement/storeTransferOut/detail.vue

@@ -16,8 +16,8 @@
       <template slot="extra">
         <a-checkbox key="4" v-model="printCostChecked">打印成本</a-checkbox>
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="storeTransferOutDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="storeTransferOutDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -95,7 +95,7 @@ export default {
       localDataSource: [],
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
-      printerType: 'INK', //  打印机类型
+      printerType: 'NEEDLE', //  打印机类型
       printCostChecked: true //  打印成本
     }
   },

+ 3 - 3
src/views/allocationManagement/storeTransferOut/edit.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="storeTransferOutEdit-preview-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="storeTransferOutEdit-print-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -267,7 +267,7 @@ export default {
       },
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/bulkManagement/bulkWarehousingOrder/detail.vue

@@ -20,8 +20,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="bulkWarehousingOrderDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="bulkWarehousingOrderDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -132,7 +132,7 @@ export default {
       localDataSource: [],
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   computed: {

+ 3 - 3
src/views/bulkManagement/bulkWarehousingOrder/edit.vue

@@ -10,8 +10,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="bulkWarehousingOrderEdit-preview-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="bulkWarehousingOrderEdit-print-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -313,7 +313,7 @@ export default {
       chooseWarehouseLocList: {}, //  已选产品 仓位  下拉数据
       basicInfoData: null, //  基本信息
       productTotal: null, //  合计
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/financialManagement/warehousingAudit/detail.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="warehousingAuditDetail-preview-btn" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="warehousingAuditDetail-print-btn" @click="handlePrint('print')">快捷打印</a-button>
@@ -94,7 +94,7 @@ export default {
         })
       },
       basicInfoData: null, //  基本信息
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/purchasingManagement/purchaseOrder/detail.vue

@@ -11,8 +11,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="purchaseOrderDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="purchaseOrderDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -171,7 +171,7 @@ export default {
       },
       detail: null, //  详情数据
       localDataSource: [],
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/purchasingManagement/purchaseOrder/edit.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="purchaseOrderEdit-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="purchaseOrderEdit-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -292,7 +292,7 @@ export default {
         })
       },
       localDataSource: [],
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/salesManagement/salesQuery/detail.vue

@@ -22,8 +22,8 @@
         </a-select> -->
         <!-- <a-button key="5" id="salesDetail-export-btn">导出</a-button> -->
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="salesDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="salesDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -140,7 +140,7 @@ export default {
       },
       localDataSource: [],
       detailData: null, //  详情数据
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/salesManagement/salesQuery/edit.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="salesEdit-preview-btn" :disabled="dataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="salesEdit-print-btn" :disabled="dataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -199,7 +199,7 @@ export default {
           return data
         })
       },
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/salesManagement/salesReturn/detail.vue

@@ -6,8 +6,8 @@
       </template>
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="salesReturnDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="salesReturnDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -107,7 +107,7 @@ export default {
       },
       localDataSource: [],
       detailData: null, //  详情数据
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/salesManagement/salesReturn/salesReturnEdit.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="salesReturnEdit-preview-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="salesReturnEdit-print-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -236,7 +236,7 @@ export default {
           return data
         })
       },
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {

+ 3 - 3
src/views/salesManagement/salesReturn/salesReturnGrabEdit.vue

@@ -9,8 +9,8 @@
       <!-- 操作区,位于 title 行的行尾 -->
       <template slot="extra">
         <a-radio-group key="3" v-model="printerType">
-          <a-radio value="INK">针式</a-radio>
-          <a-radio value="NEEDLE">喷墨</a-radio>
+          <a-radio value="NEEDLE">针式</a-radio>
+          <a-radio value="INK">喷墨</a-radio>
         </a-radio-group>
         <a-button key="2" id="salesReturnEdit-preview-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('preview')">打印预览</a-button>
         <a-button key="1" type="primary" id="salesReturnEdit-print-btn" :disabled="chooseLoadData.length==0" @click="handlePrint('print')">快捷打印</a-button>
@@ -228,7 +228,7 @@ export default {
           return data
         })
       },
-      printerType: 'INK' //  打印机类型
+      printerType: 'NEEDLE' //  打印机类型
     }
   },
   methods: {