From 2d9a0b60529098aaa1be761688718d935f355005 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 20 Jan 2014 10:56:37 +0100 Subject: [PATCH] =?utf8?q?Pflichtenheft:=20Projektverkn=C3=BCpfung=20in=20?= =?utf8?q?Grundeinstellungen=20anzeigen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- locale/de/all | 2 + .../_show_basic_settings.html | 56 +++++++++++++++---- 2 files changed, 48 insertions(+), 10 deletions(-) diff --git a/locale/de/all b/locale/de/all index 25fa476af..d066fd6a4 100755 --- a/locale/de/all +++ b/locale/de/all @@ -1802,6 +1802,7 @@ $self->{texts} = { 'Project (description)' => 'Projekt (Beschreibung)', 'Project (number)' => 'Projektnummer', 'Project Description' => 'Projektbeschreibung', + 'Project Link' => 'Projektverknüpfung', 'Project Number' => 'Projektnummer', 'Project Numbers' => 'Projektnummern', 'Project Status' => 'Projektstatus', @@ -2564,6 +2565,7 @@ $self->{texts} = { 'This option controls the method used for profit determination.' => 'Dieser Parameter legt die Berechnungsmethode für die Gewinnermittlung fest.', 'This option controls the posting and calculation behavior for the accounting method.' => 'Dieser Parameter steuert die Buchungs- und Berechnungsmethoden für die Versteuerungsart.', 'This partnumber is not unique. You should change it.' => 'Diese Artikelnummer ist nicht eindeutig. Bitte wählen Sie eine andere.', + 'This requirement spec is currently not linked to a project.' => 'Dieses Pflichtenheft ist noch nicht mit einem Projekt verknüpft.', 'This requires you to manually correct entries for which an automatic conversion failed and to check those for which it succeeded.' => 'Dies erfordert, dass Sie diejenigen Einträge manuell korrigieren, für die die automatische Umstellung fehlschlug, sowie dass Sie diejenigen überprüfen, für die die Umstellung erfolgreich war.', 'This transaction has to be split into several transactions manually.' => 'Diese Buchung muss manuell in mehrere Buchungen aufgeteilt werden.', 'This update will change the nature the onhand of goods is tracked.' => 'Dieses update ändert die Art und Weise wie Lagermengen gezält werden.', diff --git a/templates/webpages/requirement_spec/_show_basic_settings.html b/templates/webpages/requirement_spec/_show_basic_settings.html index cdd80f151..83b6d1ea8 100644 --- a/templates/webpages/requirement_spec/_show_basic_settings.html +++ b/templates/webpages/requirement_spec/_show_basic_settings.html @@ -1,16 +1,14 @@ [%- USE HTML -%][%- USE LxERP -%]
- - - - +

+ [% IF SELF.requirement_spec.is_template %] + [% LxERP.t8("Basic Settings for the Requirement Spec Template") %] + [% ELSE %] + [% LxERP.t8("Basic Settings for the Requirement Spec") %] + [% END %] +

+
- [% IF SELF.requirement_spec.is_template %] - [% LxERP.t8("Basic Settings for the Requirement Spec Template") %] - [% ELSE %] - [% LxERP.t8("Basic Settings for the Requirement Spec") %] - [% END %] -
@@ -41,4 +39,42 @@ [%- END %]
[% LxERP.t8("Title") %]: [% HTML.escape(SELF.requirement_spec.title) %]
+ +[% UNLESS SELF.requirement_spec.is_template %] + +

[% LxERP.t8("Project Link") %]

+ + [% IF !SELF.requirement_spec.project_id %] +

[% LxERP.t8("This requirement spec is currently not linked to a project.") %]

+ + [% ELSE %] + + + + + + + + + + + + + + + + + + + + + + + + + +
[% LxERP.t8("Project Number") %]:[% HTML.escape(SELF.requirement_spec.project.projectnumber) %]
[% LxERP.t8("Description") %]:[% HTML.escape(SELF.requirement_spec.project.description) %]
[% LxERP.t8("Customer") %]:[% HTML.escape(SELF.requirement_spec.project.customer.name) %]
[% LxERP.t8("Type") %]:[% HTML.escape(SELF.requirement_spec.project.project_type.description) %]
[% LxERP.t8("Status") %]:[% HTML.escape(SELF.requirement_spec.project.project_status.description) %]
+ + [% END %] +[% END %]
-- 2.20.1