...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="UTF-8"?>
<!--
copyright comment
-->
<column>
<row IDENTIFIER="" NAME="" DESCRIPTION="" COLUMNFILLER="" ALIGNMENT="" TYPE="" ACTIVE="" />
</column> |
- identifier - column identifier which you will use in columnFiller class (for ex. productName)
- name - locale key for column name (it will show in column selection window, as well as in workplan raport)
- description - locale key for column description (it will show up only in column selection window)
- columnfiller - full path to the class that will fill the column values
- alignment - column alignment on reports (01left,02right)
- type - to which products column will be added (input, output or both)
- active - if set to true, column will be added as active to all operations on all levels. If set to false column will be just available for user to select it in the column selection window.
...
Code Block | ||
---|---|---|
| ||
@Component public class SomeClass extends Module { @Autowired private PluginNameColumnLoader pluginNameColumnLoader; @Override @Transactional public void multiTenantEnable() { pluginNameColumnLoader.addPluginNameColumnsForProducts(); } @Override @Transactional public void multiTenantDisable() { agfoColumnLoaderpluginNameColumnLoader.deletePluginNameColumnsForProducts(); } } |
...
In order to fill the column
...