作者 庄敏学

成本导入

... ... @@ -342,6 +342,7 @@ func (srv ExcelDataService) ImportCost(importDataCommand *command.ImportDataComm
ProjectCode: strings.TrimSpace(v["projectCode"]),
ItemName: strings.TrimSpace(v["itemName"]),
ChoiceId: choiceId,
Text: strings.TrimSpace(v["text"]),
Urls: []string{ossFile},
Formula: strings.TrimSpace(v["formula"]),
ChargePersons: chargePersons,
... ...
... ... @@ -39,6 +39,8 @@ type CostManagemant struct {
// 当前选择的节点类型 1、combination 组合框 2、staff 员工选取 3、text 文本框 4、BOM BOM表
// 5、number数值框 6、calculate计算框
ChoiceId int `cname:"当前选择的节点类型 1、combination 组合框 2、staff 员工选取 3、text 文本框 4、BOM BOM表 5、number数值框 6、calculate计算框" json:"choiceId"`
// 文本内容
Text string `cname:"文本内容" json:"text"`
// 图片
Urls []string `cname:"图片" json:"urls"`
// calculate 计算框:计算框公式
... ...