Skip to content

Commit

Permalink
datev read mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Feb 18, 2025
1 parent 68529ab commit fa4b01b
Showing 1 changed file with 28 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,31 +220,39 @@
<table class="imixsdatatable imixs-bookingitems">
<tr>
<th style="width: 300px;">Buchungskonto</th>
<!--
<th style="width: 100px;">Kostenstelle I.</th>
<th style="width: 100px;">Kostenstelle II.</th>
-->
<th style="width: 170px;">BU Schlüssel</th>
<!-- -->
<ui:fragment rendered="#{hasKostenstelle1}">
<th style="width: 140px;">Kostenstelle I.</th>
</ui:fragment>
<ui:fragment rendered="#{hasKostenstelle2}">
<th style="width: 140px;">Kostenstelle II.</th>
</ui:fragment>
<th style="width: 70px;">BU Schlüssel</th>
<th style="width: 50px;">Betrag</th>
</tr>

<ui:repeat var="bookingItem"
value="#{datevBookingController.bookingList}">
<tr>
<td class="konto-input"><h:outputText
value="#{bookingItem.item['datev.sachkonto']}"></h:outputText>
value="#{bookingItem.item['datev.konto']}"></h:outputText>
<h:outputText
value=" #{bookingItem.item['datev.kontobeschriftung']}"></h:outputText>
</td>

<!-- Kostenstelle
<td><h:outputText value="#{bookingItem.item['datev.kostenstelle1']}"></h:outputText>
</td>
<td><h:outputText value="#{bookingItem.item['date.kostenstell2']}"></h:outputText>
</td>
-->
<td><h:outputText value="#{bookingItem.item['datev.buschluessel']}"></h:outputText>



<!-- Kostenstelle -->
<ui:fragment rendered="#{!empty datevController.kostenstelle1}">
<td><h:outputText value="#{bookingItem.item['datev.kostenstelle1']}"></h:outputText></td>
</ui:fragment>
<ui:fragment rendered="#{!empty datevController.kostenstelle2}">
<td><h:outputText value="#{bookingItem.item['datev.kostenstelle2']}"></h:outputText></td>
</ui:fragment>
<td style="text-align: right;">
<h:outputText value="#{bookingItem.item['datev.buschluessel']}"></h:outputText>
</td>

<td style="text-align: right;"><h:outputText
value="#{bookingItem.item['datev.betrag']}"></h:outputText></td>
</tr>
Expand All @@ -253,6 +261,12 @@
<tr>

<td />
<ui:fragment rendered="#{hasKostenstelle1}">
<td />
</ui:fragment>
<ui:fragment rendered="#{hasKostenstelle2}">
<td />
</ui:fragment>
<td class="bookinglist-sum"
style="text-align: right; font-weight: bold;">Summe:</td>
<td class="bookinglist-sum bookinglist_summary"
Expand Down

0 comments on commit fa4b01b

Please sign in to comment.