lilei před 2 dny
rodič
revize
6f88de47d9

+ 2 - 2
src/views/salesManagement/pushOrderManagement/sendTypeModal.vue

@@ -120,7 +120,7 @@ export default {
       form: { // 打印、导出选项
         id: 'all',
         orderBy: undefined,
-        giftPrintType: undefined,
+        giftPrintType: '2',
         origCode: '0',
         packNo: '1'
       },
@@ -180,7 +180,7 @@ export default {
       this.form.orderBy = undefined
       this.form.origCode = '0'
       this.form.packNo = '1'
-      this.form.giftPrintType = undefined
+      this.form.giftPrintType = '2'
     },
     // 获取该销售单产品二级分类
     getTypeData (dispatchBillSn) {

+ 2 - 2
src/views/salesManagement/stockPrint/sendTypeModal.vue

@@ -114,7 +114,7 @@ export default {
       form: {
         id: 'all',
         orderBy: undefined,
-        giftPrintType: undefined,
+        giftPrintType: '2',
         origCode: '0',
         packNo: '1'
       },
@@ -172,7 +172,7 @@ export default {
       this.form.id = 'all'
       this.form.orderBy = undefined
       this.form.packNo = '1'
-      this.form.giftPrintType = undefined
+      this.form.giftPrintType = '2'
     },
     // 获取该销售单产品二级分类
     getTypeData (dispatchBillSn) {

+ 3 - 3
src/views/salesReturnManagement/custConfirm/chooseImportModal.vue

@@ -110,9 +110,9 @@ export default {
       nowUnColumns: [
         { title: '序号', dataIndex: 'no', width: '6%', align: 'center' },
         { title: '产品编码', dataIndex: 'productCode', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '省级价', dataIndex: 'provincePrice', width: '12%', align: 'center', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
-        { title: '市级价', dataIndex: 'cityPrice', width: '12%', align: 'center', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
-        { title: '特约价', dataIndex: 'specialPrice', width: '12%', align: 'center', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
+        { title: '省级价', dataIndex: 'provincePrice', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '市级价', dataIndex: 'cityPrice', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '特约价', dataIndex: 'specialPrice', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '退货单价说明', dataIndex: 'priceRemark', width: '30%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '错误说明', scopedSlots: { customRender: 'errorMsg' }, width: '13%', align: 'center' }
       ],