lilei 3 년 전
부모
커밋
cf712a0e1b
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      public/version.json
  2. 1 1
      src/views/inventoryManagement/inventoryImport/list.vue
  3. 1 1
      src/views/reportData/stockImportReport/list.vue

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1657783928834
+  "version": 1657854245857
 }

+ 1 - 1
src/views/inventoryManagement/inventoryImport/list.vue

@@ -23,7 +23,7 @@
             <div class="explain-tit">导入文件说明</div>
             <ul>
               <li>1) 导入的EXCEL文件中必须包含名为"产品编码"、"仓库"、"仓位"、"入库数量"、"成本价";列顺序可忽略、行顺序可忽略。以产品编码,仓库,仓位,成本价作为导入的是否有效判断依据。</li>
-              <li>2) 红色底白字为错误项,错误项忽略不能导入,正确项可直接导入。</li>
+              <li>2) 红色底为错误项,错误项忽略不能导入,正确项可直接导入。</li>
               <li>3) 入库数量必须大于0,且为正整数,为了保证数据的正确性,请检查上传文件数据无误后再上传操作。</li>
               <li>4) 成本价为必填项,必须填写大于等于零的数字。</li>
               <li>5) 支持上传文件格式:.xls、.xlsx。</li>

+ 1 - 1
src/views/reportData/stockImportReport/list.vue

@@ -118,7 +118,7 @@ export default {
     columns () {
       const arr = [
         { title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
-        { title: '库存导入单', dataIndex: 'stockImportNo', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '库存导入单', dataIndex: 'stockImportNo', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '导入类型', dataIndex: 'importTypeDictValue', width: '15%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '款数', dataIndex: 'productTotalCategory', width: '15%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '数量', dataIndex: 'productTotalQty', width: '15%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },