| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui_table xmlns="https://biuro.biall-net.pl/SE/version-git/schema/gui/table.gui.xsd"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ogc="http://www.opengis.net/ogc">
- <filters>
- <filter>
- <label>Status</label>
- <icon>question-sign</icon>
- <name>sf_Status</name>
- <filter_buttons>
- <filter_button>
- <name>OCZEKUJACY</name>
- <value>WAITING</value>
- <ogc:Filter>
- <ogc:PropertyIsEqualTo>
- <ogc:PropertyName>A_STATUS</ogc:PropertyName>
- <ogc:Literal>WAITING</ogc:Literal>
- </ogc:PropertyIsEqualTo>
- </ogc:Filter>
- </filter_button>
- <filter_button>
- <name>AKTYWNI</name>
- <value>AKTYWNI</value>
- <ogc:Filter>
- <ogc:Or>
- <ogc:PropertyIsEqualTo>
- <ogc:PropertyName>A_STATUS</ogc:PropertyName>
- <ogc:Literal>NORMAL</ogc:Literal>
- </ogc:PropertyIsEqualTo>
- <ogc:PropertyIsEqualTo>
- <ogc:PropertyName>A_STATUS</ogc:PropertyName>
- <ogc:Literal>WARNING</ogc:Literal>
- </ogc:PropertyIsEqualTo>
- </ogc:Or>
- </ogc:Filter>
- </filter_button>
- </filter_buttons>
- </filter>
- </filters>
- </ui_table>
|