From ffbde3efce31ec544757258b84eaa7d3c9934986 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 23 Jun 2014 14:49:07 +0200 Subject: [PATCH] =?utf8?q?Lieferscheinmaske:=20JavaScript-Checks=20f=C3=BC?= =?utf8?q?r=20Lagermenge=20nach=20kivi.SalesPurchase=20verschoben?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- js/kivi.SalesPurchase.js | 25 +++++++++++++++++++++++++ js/locale/de.js | 1 + templates/webpages/do/form_footer.html | 20 +++----------------- templates/webpages/do/form_header.html | 1 + 4 files changed, 30 insertions(+), 17 deletions(-) diff --git a/js/kivi.SalesPurchase.js b/js/kivi.SalesPurchase.js index a390c8721..dfd2a6abb 100644 --- a/js/kivi.SalesPurchase.js +++ b/js/kivi.SalesPurchase.js @@ -35,4 +35,29 @@ namespace('kivi.SalesPurchase', function(ns) { $element.val($edit.val()); $('#edit_longdescription_dialog').dialog('close'); }; + + this.delivery_order_check_transfer_qty = function() { + var all_match = true; + var rowcount = $('input[name=rowcount]').val(); + for (var i = 1; i < rowcount; i++) + if ($('#stock_in_out_qty_matches_' + i).val() != 1) + all_match = false; + + if (all_match) + return true; + + return confirm(kivi.t8('There are still transfers not matching the qty of the delivery order. Stock operations can not be changed later. Do you really want to proceed?')); + }; + + this.on_submit_checks = function() { + var $button = $(this); + if (($button.data('check-transfer-qty') == 1) && !kivi.SalesPurchase.delivery_order_check_transfer_qty()) + return false; + + return true; + }; + + this.init_on_submit_checks = function() { + $('input[type=submit]').click(kivi.SalesPurchase.on_submit_checks); + }; }); diff --git a/js/locale/de.js b/js/locale/de.js index f7322d83e..4b46dc950 100644 --- a/js/locale/de.js +++ b/js/locale/de.js @@ -58,6 +58,7 @@ namespace("kivi").setupLocale({ "The option field is empty.":"Das Optionsfeld ist leer.", "The recipient, subject or body is missing.":"Der Empfäger, der Betreff oder der Text ist leer.", "The selected database is still configured for client \"#1\". If you delete the database that client will stop working until you re-configure it. Do you still want to delete the database?":"Die auswählte Datenbank ist noch für Mandant \"#1\" konfiguriert. Wenn Sie die Datenbank löschen, wird der Mandanten nicht mehr funktionieren, bis er anders konfiguriert wurde. Wollen Sie die Datenbank trotzdem löschen?", +"There are still transfers not matching the qty of the delivery order. Stock operations can not be changed later. Do you really want to proceed?":"Einige der Lagerbewegungen sind nicht vollständig und Lagerbewegungen können nachträglich nicht mehr verändert werden. Wollen Sie wirklich fortfahren?", "There is one or more sections for which no part has been assigned yet; therefore creating the new record is not possible yet.":"Es gibt einen oder mehrere Abschnitte ohne Artikelzuweisung; daher kann der neue Beleg noch nicht erstellt werden.", "This sales order has an active configuration for periodic invoices. If you save then all subsequently created invoices will contain those changes as well, but not those that have already been created. Do you want to continue?":"Dieser Auftrag besitzt eine aktive Konfiguration für wiederkehrende Rechnungen. Wenn Sie jetzt speichern, so werden alle zukünftig hieraus erzeugten Rechnungen die Änderungen enthalten, nicht aber die bereits erzeugten Rechnungen. Wollen Sie speichern?", "Time/cost estimate actions":"Aktionen für Kosten-/Zeitabschätzung", diff --git a/templates/webpages/do/form_footer.html b/templates/webpages/do/form_footer.html index eea92171a..2f1d753f6 100644 --- a/templates/webpages/do/form_footer.html +++ b/templates/webpages/do/form_footer.html @@ -73,12 +73,12 @@ [%- UNLESS delivered %] [%- IF vc == 'customer' %] - + [% IF transfer_default %] [%- END %] [%- ELSE %] - + [% IF transfer_default %] [%- END %] @@ -109,19 +109,5 @@ diff --git a/templates/webpages/do/form_header.html b/templates/webpages/do/form_header.html index db7ea231c..63d43cb1c 100644 --- a/templates/webpages/do/form_header.html +++ b/templates/webpages/do/form_header.html @@ -11,6 +11,7 @@ +