on 2018 Nov 10 9:36 PM
HI,
i am working on migration of hmc to backoffice. i have extended B2Bcustomer model to add new attribues .These were coming up as searchable fields in hmc under attributes which is can select and do a search but this is not coming up as part of backoffice . Do i specifically need to include them in custombackoffice-config.xml. This is the same for all custom types after we moved to backoffice.
is there any way all these atribues come up searchable in backofice like in hmc.
Request clarification before answering.
Hi,
yes you need to add these to the advanced-search component, something like this in you backoffice-config.xml
enter code here<context parent="AbstractOrder" type="Order" component="advanced-search" merge-by="type">
<advanced-search:advanced-search>
<advanced-search:field-list>
<advanced-search:field name="someattribute"/>
<advanced-search:field name="otherattribute"/>
<advanced-search:field name="thirdattribute"/>
</advanced-search:field-list>
</advanced-search:advanced-search>
</context>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.