doway-coms 1.1.99 → 1.1.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/chunk-vendors.7f83d8f9.css +8 -0
- package/dist/css/index.7946d50b.css +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.28fda91d.js +340 -0
- package/dist/js/index.49bc6add.js +2 -0
- package/lib/doway-coms.common.js +120397 -0
- package/lib/doway-coms.css +1 -0
- package/lib/doway-coms.umd.js +120407 -0
- package/lib/doway-coms.umd.min.js +328 -0
- package/package.json +1 -1
- package/packages/utils/common.js +6 -3
- package/packages/utils/store.js +1 -1
package/package.json
CHANGED
package/packages/utils/common.js
CHANGED
|
@@ -483,9 +483,12 @@ export function custUnitPriceNotTaxAmount(rowInfo, taxRate, colInfo) {
|
|
|
483
483
|
export function setIndustryVersionFields(fields){
|
|
484
484
|
let length = fields.length
|
|
485
485
|
for(let i=length-1;i>=0;i--){
|
|
486
|
-
if(XEUtils.isArray(fields[i].versions)
|
|
487
|
-
|
|
486
|
+
if(XEUtils.isArray(fields[i].versions)){
|
|
487
|
+
let tempValue = XEUtils.find(fields[i].versions,p=>store.getters.industryVersion.includes(p))
|
|
488
|
+
if(tempValue){
|
|
489
|
+
continue
|
|
490
|
+
}
|
|
491
|
+
XEUtils.remove(fields,i)
|
|
488
492
|
}
|
|
489
|
-
|
|
490
493
|
}
|
|
491
494
|
}
|
package/packages/utils/store.js
CHANGED