@kontur.candy/generator 5.103.0-remove-kclang-target-infer.1 → 5.103.0-remove-kclang-target-infer.2
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -75395,8 +75395,8 @@ class FormulaExpressionToFlangExpressionConverter {
|
|
|
75395
75395
|
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_9__.GetPicklistValuesExpression(new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_9__.StringLiteralExpression(expression.gId), filterColumn, filterKey, new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_9__.StringLiteralExpression(expression.resultColumn));
|
|
75396
75396
|
}
|
|
75397
75397
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaIsValidAccountNumberExpression) {
|
|
75398
|
-
const bik = this.compileExpressionToFlangExpressionInternal(expression.bik, prefix, target, addPrecalculationRule);
|
|
75399
|
-
const account = this.compileExpressionToFlangExpressionInternal(expression.account, prefix, target, addPrecalculationRule);
|
|
75398
|
+
const bik = this.compileExpressionToFlangExpressionInternal(expression.bik.bik, prefix, target, addPrecalculationRule);
|
|
75399
|
+
const account = this.compileExpressionToFlangExpressionInternal(expression.account.account, prefix, target, addPrecalculationRule);
|
|
75400
75400
|
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_9__.IsValidAccountNumberExpression((0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_8__.extractOriginalStringValueOrCastToStringIfNeeded)(bik), (0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_8__.extractOriginalStringValueOrCastToStringIfNeeded)(account));
|
|
75401
75401
|
}
|
|
75402
75402
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaGroupSumExpression) {
|
package/package.json
CHANGED