我想在Accounts -> Settings -> Accounts参数(表单CustParameters
)中插入一个新的组,在函数更新引号行的对话框中添加一个新的参数字段。
当单击按钮更新引号行时,它将打开一个对话框。
我插入了一个新字段,在类getFieldDescripion
中修改了方法SalesQuotationToLineField
。
这是可行的,我有新的参数,但我没有组。
我想要一个有标签的组,如下面的屏幕截图,但我的标签(字段标签)。我要改变什么才能做到这一点?
谢谢大家!
享受吧!
发布于 2015-08-04 01:29:38
如果我正确理解您的问题,您在对话框“更新销售报价行”中添加了一个新字段,可以从表单CustParameters
调用该字段,现在您要更改该新字段组的标签。
为此,您必须覆盖类fieldGroupLabel
的SalesQuotationToLineField
方法,并添加类似于方法getFieldDescription
的switch
,以测试新字段并返回自定义标签。这个覆盖的方法将由类dialog
中的方法SalesPurchTableToLineParametersForm
调用。
覆盖的fieldGroupLabel
应该类似于下面的示例:
public FieldLabel fieldGroupLabel()
{
FieldLabel ret;
ret = super();
switch (this.parmFieldId())
{
case fieldNum(SalesQuotationTable, SalesGroup): // replace this with the new field
ret = 'My Group label'; // replace this with the id of the label you want to use
break;
}
return ret;
}
https://stackoverflow.com/questions/31791006
复制