|
|
@@ -3,7 +3,7 @@
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
|
|
var scMathUtil = require('@sc/util');
|
|
|
-var lodashEs = require('lodash-es');
|
|
|
+var lodash = require('lodash');
|
|
|
|
|
|
function _interopNamespace(e) {
|
|
|
if (e && e.__esModule) return e;
|
|
|
@@ -7698,9 +7698,9 @@ class RptCommon {
|
|
|
let hasKey = false;
|
|
|
const { supplyType } = commonConstants;
|
|
|
for (const propKey in supplyType) {
|
|
|
- if (lodashEs.get(supplyType, propKey) === val) {
|
|
|
+ if (lodash.get(supplyType, propKey) === val) {
|
|
|
hasKey = true;
|
|
|
- rst.push(lodashEs.get(supplyType, propKey));
|
|
|
+ rst.push(lodash.get(supplyType, propKey));
|
|
|
break;
|
|
|
}
|
|
|
}
|