По нажатию на лукап, сущности SalesOrder, в новом окне выводится грид, с полями "Название" и "Клиент". Хочу добавить поле "Дата" - это свой атрибут "new_agreementname".
Нашла xml-файл salesorder.xml
X++:
<lookup name="SalesOrder">
<objects>
<object type="1088">
<columns>
<column data="name" type="normal"/>
<column data="customerid" attribute="name" type="normal" size="150"/>
</columns>
<datasource>
<filter type="and">
<condition attribute="statecode" operator="eq" value="0"/>
<condition attribute="name" operator="like" value="!searchvalue"/>
</filter>
</datasource>
</object>
</objects>
</lookup>
В columns добавляю
X++:
<column data="new_agreementname" attribute="new_agreementname" type="normal" size="150"/>
- не помогло
и
X++:
<column data="new_agreementname" attribute="name" type="normal" size="150"/>
- тоже не помогло
Подскажите, пожалуйста, куда копать...