我有两个具有不同数据的电子表格。在其中一个电子表格中,我想要另一个特定的列。
这是我想添加列的电子表格(应计)的原始代码:
${accruals.employee.name}
这是我想为应计电子表格提取数据的另一个电子表格(PersonDetail):
${employee.fullName}
我希望将列 ${baseWage.amountAsString} 从 PersonDetail 添加到 Accruals。
我是第一次使用 JETT 我试图编辑代码:
${accruals.employee.name};productLicense;interactiveLicense;status;skill;certification;approver; purpose;apn;fte;uas;additional Information;personDate;isr;primaryLaborAccount;percentageAllocationRule;adjustmentRule;payRule;baseWage;badgeNumber;employmentTerm;groupAssignment ;scheduleRuleSet;timeEntryMethod;organizationalGroup;jobPreferences;jobTransferSet">${employee.fullName};
但是当我运行报告时,系统显示以下错误:
处理报告时出错(应计(电子表格导出)):net.sf.jett.exception.TagParseException:“collections”属性中的一项不是 Accruals 中的 MultiForEach 标记中的集合!B8:collections=${accruals .accrualsDataRows}
谢谢您的帮助。