From e163dc2ccdceee8a8d53f8ab52c37b80ea138e1b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Thu, 3 Dec 2020 12:44:58 +0100 Subject: [PATCH] =?utf8?q?Auftrags-Controller:=20bei=20=C3=84nderung=20Lei?= =?utf8?q?stungsdatum/Liefertermin=20neu=20berechnen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- templates/webpages/order/tabs/basic_data.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/webpages/order/tabs/basic_data.html b/templates/webpages/order/tabs/basic_data.html index d50323def..975f04bf6 100644 --- a/templates/webpages/order/tabs/basic_data.html +++ b/templates/webpages/order/tabs/basic_data.html @@ -188,19 +188,19 @@ [% 'Tax point' | $T8 %] - [% L.date_tag('order.tax_point_as_date', SELF.order.tax_point_as_date) %] + [% L.date_tag('order.tax_point_as_date', SELF.order.tax_point_as_date, class="recalc") %] [%- 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 -%] [% reqdate_txt | $T8 %] - [% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date) %] + [% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date, class=reqdate_class) %] [%- IF SELF.type == "sales_quotation" -%] -- 2.20.1