fix(calculation): 解决本地代码编译报错问题。 移除QDP累购期权中的价格模式参数

- 从QdpTradeBuilder构造函数调用中移除updownPriceMode参数
- 注释掉累购期权中不再支持的价格模式设置逻辑
- 更新Excel导出方法调用以移除多余的数据分组参数
This commit is contained in:
hjhan
2026-03-24 10:21:33 +08:00
parent 795d8eb011
commit b36c7aa21f
3 changed files with 4 additions and 6 deletions
@@ -268,7 +268,7 @@ namespace YLErp.Modules.ClientModule
var ret = getExprotClientData(clientList, colNameList);
new ExcelHelper().ListToExcel<Dictionary<string, string>>(dc.ToArray(), ret, "客户合并信息", true, out var buffer, true, dataGroupModelList.ToArray());
new ExcelHelper().ListToExcel<Dictionary<string, string>>(dc.ToArray(), ret, "客户合并信息", true, out var buffer, true);
return buffer;
}