Karten-Icon nur anzeigen, wenn eine Adresse angegeben ist
authorThomas Heck <theck@linet-services.de>
Mon, 1 Jul 2013 12:42:29 +0000 (14:42 +0200)
committerJan Büren <jan@kivitendo-premium.de>
Thu, 18 Jul 2013 07:09:03 +0000 (09:09 +0200)
js/kivi.CustomerVendor.js
js/locale/de.js
templates/webpages/customer_vendor/tabs/billing.html
templates/webpages/customer_vendor/tabs/contacts.html
templates/webpages/customer_vendor/tabs/shipto.html

index 371434c..134efb4 100644 (file)
@@ -1,6 +1,8 @@
-namespace('kivi.CustomerVendor', function() {
+namespace('kivi.CustomerVendor', function(ns) {
 
-  this.selectShipto = function() {
+  var kivi = namespace('kivi');
+
+  this.selectShipto = function(params) {
     var shiptoId = $('#shipto_shipto_id').val();
 
     if( shiptoId ) {
@@ -11,12 +13,18 @@ namespace('kivi.CustomerVendor', function() {
           $(document.getElementById('shipto_'+ key)).val(data[key]);
 
         $('#action_delete_shipto').show();
+
+        if( params.onFormSet )
+          params.onFormSet();
       });
     }
     else {
       $('#shipto :input').not(':button, :submit, :reset, :hidden').val('');
 
       $('#action_delete_shipto').hide();
+
+      if( params.onFormSet )
+        params.onFormSet();
     }
   };
 
@@ -35,7 +43,7 @@ namespace('kivi.CustomerVendor', function() {
     }
   };
 
-  this.selectContact = function() {
+  this.selectContact = function(params) {
     var contactId = $('#contact_cp_id').val();
 
     if( contactId ) {
@@ -44,40 +52,99 @@ namespace('kivi.CustomerVendor', function() {
       $.getJSON(url, function(data) {
         var contact = data.contact;
         for(var key in contact)
-          $(document.getElementById('contact_'+ key)).val(contact[key]);
+          $(document.getElementById('contact_'+ key)).val(contact[key])
 
         var cvars = data.contact_cvars;
         for(var key in cvars)
           $(document.getElementById('contact_cvar_'+ key)).val(cvars[key]);
 
         $('#action_delete_contact').show();
+
+        if( params.onFormSet )
+          params.onFormSet();
       });
     }
     else {
       $('#contacts :input').not(':button, :submit, :reset, :hidden').val('').removeAttr('checked').removeAttr('selected');
 
       $('#action_delete_contact').hide();
+
+      if( params.onFormSet )
+        params.onFormSet();
     }
 
     $('#contact_cp_title_select, #contact_cp_abteilung_select').val('');
   };
 
+  var mapSearchStmts = [
+    '#street',
+    ', ',
+    '#zipcode',
+    ' ',
+    '#city',
+    ', ',
+    '#country'
+  ];
+
+  this.showMapWidget = function(prefix, widgetWrapper) {
+    var result = {
+    };
+
+    $(function(){
+
+      widgetWrapper = $(widgetWrapper);
+
+      var mapSearchElements = [];
+      for(var i in mapSearchStmts) {
+        var stmt = mapSearchStmts[i];
+        if( stmt.charAt(0) == '#' ) {
+          var elem = $('#'+ prefix + stmt.substring(1));
+          if( elem )
+            mapSearchElements.push(elem);
+        }
+      }
+
+      var isNotEmpty = function() {
+        for(var i in mapSearchElements)
+          if( mapSearchElements[i].val() == '' )
+            return false;
+        return true;
+      };
 
-  this.showMap = function(prefix) {
-    var searchStmts = [
-      '#street',
-      ', ',
-      '#zipcode',
-      ' ',
-      '#city',
-      ', ',
-      '#country'
-    ];
+      widgetWrapper
+        .html('<img src="image/map.png" alt="'+ kivi.t8("Map") +'" title="'+ kivi.t8("Map") +'" />')
+        .click(function(){
+          ns.showMap(prefix);
+        });
 
+      var testInputs = function() {
+        if( isNotEmpty() )
+          widgetWrapper.show();
+        else
+          widgetWrapper.hide();
+      };
+
+      result.testInputs = testInputs;
+
+      $(mapSearchElements)
+        .map(function() {
+          return this.toArray();
+        })
+        .keyup(testInputs)
+
+      if( !isNotEmpty() )
+        widgetWrapper.hide();
+
+    });
+
+    return result;
+  };
+
+  this.showMap = function(prefix) {
     var searchString = "";
 
-    for(var i in searchStmts) {
-      var stmt = searchStmts[i];
+    for(var i in mapSearchStmts) {
+      var stmt = mapSearchStmts[i];
       if( stmt.charAt(0) == '#' ) {
         var val = $('#'+ prefix + stmt.substring(1)).val();
         if( val )
index 0d45d30..883ac6b 100644 (file)
@@ -1,5 +1,6 @@
 namespace("kivi").setupLocale({
 "Are you sure?":"Sind Sie sicher?",
+"Map":"Karte",
 "The description is missing.":"Die Beschreibung fehlt.",
 "The name is missing.":"Der Name fehlt.",
 "The name must only consist of letters, numbers and underscores and start with a letter.":"Der Name darf nur aus Buchstaben (keine Umlaute), Ziffern und Unterstrichen bestehen und muss mit einem Buchstaben beginnen.",
index f666b5a..d2b4225 100644 (file)
 
       <td>
         [% L.input_tag('cv.street', SELF.cv.street) %]
-        <a href="#" onclick="namespace('kivi.CustomerVendor').showMap('cv_');" title="[% 'Map' | $T8 %]">
-          <img src="image/map.png" alt="[% 'Map' | $T8 %]" />
-        </a>
+        <span id="billing_map"></span>
+        <script type="text/javascript">
+          namespace('kivi.CustomerVendor').showMapWidget('cv_', $('#billing_map'));
+        </script>
       </td>
     </tr>
 
index 1238a4d..398f60c 100644 (file)
@@ -18,7 +18,8 @@
             empty_title = LxERP.t8('New contact'),
             value_key = 'cp_id',
             title_key = 'full_name',
-            onchange = "namespace('kivi.CustomerVendor').selectContact();")
+            onchange = "namespace('kivi.CustomerVendor').selectContact({onFormSet: function(){contactsMapWidget.testInputs();}});",
+          )
         %]
       </td>
     </tr>
 
       <td>
         [% L.input_tag('contact.cp_street', SELF.contact.cp_street, size = 40, maxlength = 75) %]
-
-        <a href="#" onclick="namespace('kivi.CustomerVendor').showMap('contact_cp_');" title="[% 'Map' | $T8 %]">
-          <img src="image/map.png" alt="[% 'Map' | $T8 %]" />
-        </a>
+        <span id="contact_map"></span>
+        <script type="text/javascript">
+        var contactsMapWidget = namespace('kivi.CustomerVendor').showMapWidget('contact_cp_', $('#contact_map'));
+        </script>
       </td>
     </tr>
 
index ef20e7f..5080802 100644 (file)
@@ -16,7 +16,7 @@
              title_key = 'displayable_id',
              with_empty = 1,
              empty_title = LxERP.t8('New shipto'),
-             onchange = "namespace('kivi.CustomerVendor').selectShipto();"
+             onchange = "namespace('kivi.CustomerVendor').selectShipto({onFormSet: function(){shiptoMapWidget.testInputs();}});",
            )
         %]
       </td>
       <td>
         [% L.input_tag('shipto.shiptostreet', SELF.shipto.shiptostreet,  size = 35, maxlength = 75) %]
 
-        <a href="#" onclick="namespace('kivi.CustomerVendor').showMap('shipto_shipto');" title="[% 'Map' | $T8 %]">
-          <img src="image/map.png" alt="[% 'Map' | $T8 %]" />
-        </a>
+        <span id="shipto_map"></span>
+        <script type="text/javascript">
+          var shiptoMapWidget = namespace('kivi.CustomerVendor').showMapWidget('shipto_shipto', $('#shipto_map'));
+        </script>
       </td>
     </tr>