小比萨饼价格为6.00英镑,所有配料均为1.50英镑。我创建了一个计算字段,加起来小披萨的成本和顶部以获得总金额。即使更改了计算字段的结果类型,也会返回值 #Type!。
我正在尝试添加文本框中的值(使用“查找”数据类型将值存储在下拉框中)来计算订单的总成本。< / p>
任何解决方案?
答案 0 :(得分:0)
您的计算字段@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(namespace="urn:XXXX_HPD_IncidentInterface_WS__XXXXX")
public class HelpDesk_Query_ServiceResponse {
@XmlElement(namespace="urn:XXXX_HPD_IncidentInterface_WS__XXXXX")
String Assigned_Group;
@XmlElement(namespace="urn:XXXX_HPD_IncidentInterface_WS__XXXXX")
String Organization;
@XmlElement(namespace="urn:XXXX_HPD_IncidentInterface_WS__XXXXX")
String City;
//other attribute and their Getter and setter
}
必须是Result Type
,而不是Currency
这假设您的Integer.
和Pizza Size
字段都是货币。
请注意,表格中的计算字段通常被视为一个坏主意,请参阅例如在这里:
Calculated fields belong in queries, not tables.