Auftrags-Controller: bei Änderung Leistungsdatum/Liefertermin neu berechnen
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Thu, 3 Dec 2020 11:44:58 +0000 (12:44 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Thu, 3 Dec 2020 11:57:30 +0000 (12:57 +0100)
templates/webpages/order/tabs/basic_data.html

index d50323d..975f04b 100644 (file)
 
           <tr>
             <th width="70%" align="right" nowrap>[% 'Tax point' | $T8 %]</th>
-            <td>[% L.date_tag('order.tax_point_as_date', SELF.order.tax_point_as_date) %]</td>
+            <td>[% L.date_tag('order.tax_point_as_date', SELF.order.tax_point_as_date, class="recalc") %]</td>
           </tr>
 
           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
-            [%- SET reqdate_txt = 'Reqdate' -%]
+            [%- SET reqdate_txt = 'Reqdate'; SET reqdate_class = 'recalc' -%]
           [%- ELSIF SELF.type == "sales_quotation" -%]
-            [%- SET reqdate_txt = 'Valid until' -%]
+            [%- SET reqdate_txt = 'Valid until'; SET reqdate_class = '' -%]
           [%- ELSE -%]
-            [%- SET reqdate_txt = 'Required by' -%]
+            [%- SET reqdate_txt = 'Required by'; SET reqdate_class = 'recalc' -%]
           [%- END -%]
           <tr>
             <th width="70%" align="right" nowrap>[% reqdate_txt | $T8 %]</th>
-            <td>[% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date) %]</td>
+            <td>[% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date, class=reqdate_class) %]</td>
           </tr>
 
           [%- IF SELF.type == "sales_quotation" -%]