X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Frequirement_spec_order%2Flist.html;h=4f8278d19f2b9b320cf8834d22bf483aee5670a7;hb=95c80e5e483f47741ff90a05468aef7585bd2160;hp=b48f2e2f604c3fbac520811023017584210bf3bb;hpb=1bacd5c15dbf06c84167d823544015d59fdc23be;p=kivitendo-erp.git diff --git a/templates/webpages/requirement_spec_order/list.html b/templates/webpages/requirement_spec_order/list.html index b48f2e2f6..4f8278d19 100644 --- a/templates/webpages/requirement_spec_order/list.html +++ b/templates/webpages/requirement_spec_order/list.html @@ -15,6 +15,8 @@ [% LxERP.t8("Title") %] [% LxERP.t8("Description") %] [% LxERP.t8("Article") %] + [% LxERP.t8("Unit") %] + [% LxERP.t8("Position type in quotation/order") %] @@ -23,7 +25,7 @@ [% HTML.escape(section.fb_number) %] [% HTML.escape(section.title) %] - [% HTML.escape(P.truncate(section.description)) %] + [% HTML.escape(P.truncate(section.description_as_stripped_html)) %] [% IF section.order_part %] [% HTML.escape(section.order_part.partnumber) %] [% HTML.escape(section.order_part.description) %] @@ -31,6 +33,14 @@ [% LxERP.t8("no article assigned yet") %] [% END %] + [% HTML.escape(section.order_part.unit) %] + + [% IF section.order_part_id && section.order_part.unit_obj.is_time_based %] + [% LxERP.t8("time and effort based position") %] + [% ELSIF section.order_part_id %] + [% LxERP.t8("flat-rate position") %] + [% END %] + [% END %] @@ -50,8 +60,9 @@ [% LxERP.t8("Type") %] [% LxERP.t8("Requirement Spec Version") %] [% LxERP.t8("Record number") %] - [% LxERP.t8("Transaction Description") %] - [% LxERP.t8("Date") %] + [% LxERP.t8("Transaction description") %] + [% LxERP.t8("Quotation/Order Date") %] + [% LxERP.t8("Creation Date") %] @@ -59,7 +70,7 @@ [% FOREACH rs_order = orders %] [% L.hidden_tag('order_id', rs_order.id, no_id=1) %] - [% rs_order.order.type == 'sales_quotation' ? LxERP.t8('Sales quotation') : LxERP.t8('Sales order') %] + [% rs_order.order.type == 'sales_quotation' ? LxERP.t8('Sales quotation') : LxERP.t8('Sales Order') %] [% IF rs_order.version %] [% HTML.escape(rs_order.version.version_number) %] @@ -67,8 +78,13 @@ [% LxERP.t8("working copy") %] [% END %] - [% HTML.escape(rs_order.order.quotation ? rs_order.order.quonumber : rs_order.order.ordnumber) %] + + + [% HTML.escape(rs_order.order.quotation ? rs_order.order.quonumber : rs_order.order.ordnumber) %] + + [% HTML.escape(rs_order.order.transaction_description) %] + [% rs_order.order.transdate.to_kivitendo(precision='day') %] [% rs_order.itime.to_kivitendo(precision='day') %] [%- END %]