Anpassung Style Positions Tabelle
This commit is contained in:
parent
19e334616b
commit
0b826b6880
1 changed files with 12 additions and 10 deletions
|
|
@ -6,17 +6,17 @@
|
||||||
|
|
||||||
<h:panelGroup layout="block" styleClass="imixs-form-section" id="oderlist" binding="#{orderlistContainer}">
|
<h:panelGroup layout="block" styleClass="imixs-form-section" id="oderlist" binding="#{orderlistContainer}">
|
||||||
<f:ajax render="oderlist" onevent="updateOrderItems">
|
<f:ajax render="oderlist" onevent="updateOrderItems">
|
||||||
<table class="imixsdatatable imixs-orderitems">
|
<table class="imixsdatatable imixs-orderitems" style="z-index: 2; position: relative;">
|
||||||
<tr>
|
<tr>
|
||||||
<th style="">#</th>
|
<th style="">#</th>
|
||||||
<th style="">#{custom['pos.number']}<span class="imixs-required">
|
<th style="min-width: 150px;">#{custom['pos.number']}<span class="imixs-required">
|
||||||
*</span></th>
|
*</span></th>
|
||||||
<th style="width: 100px;">#{custom['pos.tax']}<span class="imixs-required">
|
<th style="min-width: 100px;">#{custom['pos.tax']}<span class="imixs-required">
|
||||||
*</span></th>
|
*</span></th>
|
||||||
<th style="width: 100px;">#{custom['pos.type']}<span class="imixs-required"> *</span></th>
|
<th style="min-width: 150px;">#{custom['pos.type']}<span class="imixs-required"> *</span></th>
|
||||||
<th style="width: 80px;">BP</th>
|
<th style="min-width: 80px;">BP</th>
|
||||||
<th style="width: 150px; text-align: right;">#{custom['pos.net']}</th>
|
<th style="min-width: 150px; text-align: right;">#{custom['pos.net']}</th>
|
||||||
<th style="width: 150px; text-align: right;">#{custom['pos.gross']}</th>
|
<th style="min-width: 150px; text-align: right;">#{custom['pos.gross']}</th>
|
||||||
<th style="">
|
<th style="">
|
||||||
<!-- delete -->
|
<!-- delete -->
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -32,13 +32,14 @@
|
||||||
<!-- Name -->
|
<!-- Name -->
|
||||||
<td>
|
<td>
|
||||||
<h:inputText value="#{orderitem.item['name']}" styleClass="pos_nameinput"
|
<h:inputText value="#{orderitem.item['name']}" styleClass="pos_nameinput"
|
||||||
style="width:100%;text-transform: uppercase" />
|
style="width: 100%; min-width: 150px;text-transform: uppercase" />
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
||||||
<!-- Steuer -->
|
<!-- Steuer -->
|
||||||
<td>
|
<td>
|
||||||
<h:selectOneMenu value="#{orderitem.item['tax']}" a:data-id="orderitem_tax">
|
<h:selectOneMenu value="#{orderitem.item['tax']}" a:data-id="orderitem_tax"
|
||||||
|
style="box-sizing: border-box; max-width: 150px;">
|
||||||
<f:selectItem itemLabel="" itemValue="" />
|
<f:selectItem itemLabel="" itemValue="" />
|
||||||
<f:selectItems value="#{aglConfigController.getSelectItems('invoice.tax')}" />
|
<f:selectItems value="#{aglConfigController.getSelectItems('invoice.tax')}" />
|
||||||
|
|
||||||
|
|
@ -56,7 +57,8 @@
|
||||||
|
|
||||||
<!-- Leistungsart -->
|
<!-- Leistungsart -->
|
||||||
<td>
|
<td>
|
||||||
<h:selectOneMenu value="#{orderitem.item['category']}" a:data-id="orderitem_category">
|
<h:selectOneMenu value="#{orderitem.item['category']}" a:data-id="orderitem_category"
|
||||||
|
style="box-sizing: border-box; max-width: 150px;">
|
||||||
<f:selectItem itemLabel="" itemValue="" />
|
<f:selectItem itemLabel="" itemValue="" />
|
||||||
<f:selectItems value="#{aglConfigController.getSelectItems('invoice.type')}" />
|
<f:selectItems value="#{aglConfigController.getSelectItems('invoice.type')}" />
|
||||||
<!--
|
<!--
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue