@fileverse-dev/fortune-core 1.1.80-patch-test-3 → 1.1.80-patch-test-5
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/es/modules/formula.js +3 -0
- package/lib/modules/formula.js +3 -0
- package/package.json +1 -1
package/es/modules/formula.js
CHANGED
|
@@ -687,6 +687,9 @@ export function insertUpdateFunctionGroup(ctx, r, c, id, calcChainSet) {
|
|
|
687
687
|
};
|
|
688
688
|
calcChain.push(cc);
|
|
689
689
|
file.calcChain = calcChain;
|
|
690
|
+
console.log({
|
|
691
|
+
luckysheetfile: luckysheetfile
|
|
692
|
+
});
|
|
690
693
|
ctx.luckysheetfile = luckysheetfile;
|
|
691
694
|
}
|
|
692
695
|
export function execfunction(ctx, txt, r, c, id, calcChainSet, isrefresh, notInsertFunc) {
|
package/lib/modules/formula.js
CHANGED
|
@@ -717,6 +717,9 @@ function insertUpdateFunctionGroup(ctx, r, c, id, calcChainSet) {
|
|
|
717
717
|
};
|
|
718
718
|
calcChain.push(cc);
|
|
719
719
|
file.calcChain = calcChain;
|
|
720
|
+
console.log({
|
|
721
|
+
luckysheetfile: luckysheetfile
|
|
722
|
+
});
|
|
720
723
|
ctx.luckysheetfile = luckysheetfile;
|
|
721
724
|
}
|
|
722
725
|
function execfunction(ctx, txt, r, c, id, calcChainSet, isrefresh, notInsertFunc) {
|