소스 검색

fix: 导入信息价,单价小数位数问题

vian 6 달 전
부모
커밋
e40c602d8f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/price_info_lib/controllers/index.js

+ 1 - 1
modules/price_info_lib/controllers/index.js

@@ -168,7 +168,7 @@ class PriceInfoController extends BaseController {
                 uploadFullName = uploadOption.uploadDir + '/' + file.originalFilename;
                 fs.renameSync(file.path, uploadFullName);
 
-                const sheet = excel.parse(uploadFullName);
+                const sheet = excel.parse(uploadFullName, { raw: false });
                 if (sheet[0] === undefined || sheet[0].data === undefined || sheet[0].data.length <= 0) {
                     throw 'excel没有对应数据。';
                 }