mebil
[kivitendo-erp.git] / js / kivi.CustomerVendor.js
1 namespace('kivi.CustomerVendor', function(ns) {
2
3   this.selectShipto = function(params) {
4     var shiptoId = $('#shipto_shipto_id').val();
5     var url      = 'controller.pl?action=CustomerVendor/ajaj_get_shipto&id='+ $('#cv_id').val() +'&db='+ $('#db').val() +'&shipto_id='+ shiptoId;
6
7     $.getJSON(url, function(data) {
8       var shipto = data.shipto;
9       for(var key in shipto)
10         $('#shipto_'+ key).val(shipto[key])
11
12       kivi.CustomerVendor.setCustomVariablesFromAJAJ(data.shipto_cvars, 'shipto_cvars_');
13
14       if ( shiptoId )
15         $('#action_delete_shipto').show();
16       else
17         $('#action_delete_shipto').hide();
18
19       if ( params.onFormSet )
20         params.onFormSet();
21     });
22   };
23
24   this.selectDelivery = function(fromDate, toDate) {
25     var deliveryId = $('#delivery_id').val();
26
27     if( !deliveryId )
28       $("#delivery").empty();
29     else {
30       var url = 'controller.pl?action=CustomerVendor/get_delivery&id='+ $('#cv_id').val() +'&db='+ $('#db').val() +'&shipto_id='+ $('#delivery_id').val();
31
32       if( fromDate && toDate )
33         url += '&delivery_from='+ fromDate +'&delivery_to='+ toDate;
34
35       $('#delivery').load(url);
36     }
37   };
38
39   this.setCustomVariablesFromAJAJ = function(cvars, prefix) {
40     for (var key in cvars) {
41       var cvar  = cvars[key];
42       var $ctrl = $('#' + prefix + key);
43
44       if (cvar.type == 'bool')
45         $ctrl.prop('checked', cvar.value == 1 ? 'checked' : '');
46
47       else if ((cvar.type == 'customer') || (cvar.type == 'vendor'))
48         kivi.CustomerVendorPicker($ctrl).set_item({ id: cvar.id, name: cvar.value });
49
50       else if (cvar.type == 'part')
51         kivi.PartPicker($ctrl).set_item({ id: cvar.id, name: cvar.value });
52
53       else
54         $ctrl.val(cvar.value);
55     }
56   };
57
58   this.selectContact = function(params) {
59     var contactId = $('#contact_cp_id').val();
60
61           var url = 'controller.pl?action=CustomerVendor/ajaj_get_contact&id='+ $('#cv_id').val() +'&db='+ $('#db').val() +'&contact_id='+ contactId;
62
63     $.getJSON(url, function(data) {
64       var contact = data.contact;
65       for(var key in contact)
66         $('#contact_'+ key).val(contact[key])
67
68       kivi.CustomerVendor.setCustomVariablesFromAJAJ(data.contact_cvars, 'contact_cvars_');
69
70       if ( contactId )
71         $('#action_delete_contact').show();
72       else
73         $('#action_delete_contact').hide();
74
75       if ( params.onFormSet )
76         params.onFormSet();
77     });
78
79     $('#contact_cp_title_select, #contact_cp_abteilung_select').val('');
80   };
81
82   var mapSearchStmts = [
83     '#street',
84     ', ',
85     '#zipcode',
86     ' ',
87     '#city',
88     ', ',
89     '#country'
90   ];
91
92   this.MapWidget = function(prefix, source_address)
93   {
94     var $mapSearchElements = [];
95     var $widgetWrapper;
96
97     var init = function() {
98       if( $mapSearchElements.length > 0 )
99         return;
100
101       for(var i in mapSearchStmts) {
102         var stmt = mapSearchStmts[i];
103         if( stmt.charAt(0) == '#' ) {
104           var $elem = $('#'+ prefix + stmt.substring(1));
105           if( $elem )
106             $mapSearchElements.push($elem);
107         }
108       }
109     };
110
111     var isNotEmpty = function() {
112       for(var i in $mapSearchElements)
113         if( ($mapSearchElements[i].attr('id') != prefix + 'country') && ($mapSearchElements[i].val() === '') )
114           return false;
115       return true;
116     };
117
118     var showMap = function() {
119       var searchString = "";
120
121       for(var i in mapSearchStmts) {
122         var stmt = mapSearchStmts[i];
123         if( stmt.charAt(0) == '#' ) {
124           var val = $('#'+ prefix + stmt.substring(1)).val();
125           if( val )
126             searchString += val;
127         }
128         else
129           searchString += stmt;
130       }
131
132       source_address = source_address || '';
133       var query      = source_address !== '' ? 'saddr=' + encodeURIComponent(source_address) + '&daddr=' : 'q=';
134       var url        = 'https://maps.google.com/maps?' + query + encodeURIComponent(searchString);
135
136       window.open(url, '_blank');
137       window.focus();
138     };
139
140     var render = function(widgetWrapper) {
141       init();
142
143       $widgetWrapper = $(widgetWrapper);
144
145       $widgetWrapper
146         .html('<img src="image/map.png" alt="'+ kivi.t8("Map") +'" title="'+ kivi.t8("Map") +'" />')
147         .click(function() {
148           showMap();
149         });
150       for(var i in $mapSearchElements)
151         $mapSearchElements[i].keyup(testInputs);
152       this.testInputs();
153     };
154
155     var testInputs = function() {
156       init();
157
158       if( isNotEmpty() )
159         $widgetWrapper.show();
160       else
161         $widgetWrapper.hide();
162     };
163
164     this.render = render;
165     this.testInputs = testInputs;
166   };
167
168   this.showHistoryWindow = function(id) {
169     var xPos = (screen.width - 800) / 2;
170     var yPos = (screen.height - 500) / 2;
171     var parm = "left="+ xPos +",top="+ yPos +",width=800,height=500,status=yes,scrollbars=yes";
172     var url = "common.pl?INPUT_ENCODING=UTF-8&action=show_history&longdescription=&input_name="+ encodeURIComponent(id);
173     window.open(url, "_new_generic", parm);
174   };
175
176   this.update_dial_action = function($input) {
177     var $action = $('#' + $input.prop('id') + '-dial-action');
178
179     if (!$action)
180       return true;
181
182     var number = $input.val().replace(/\s+/g, '');
183     if (number === '')
184       $action.hide();
185     else
186       $action.prop('href', 'controller.pl?action=CTI/call&number=' + encodeURIComponent(number)).show();
187
188     return true;
189   };
190
191   this.init_dial_action = function(input) {
192     if ($('#_cti_enabled').val() != 1)
193       return false;
194
195     var $input    = $(input);
196     var action_id = $input.prop('id') + '-dial-action';
197
198     if (!$('#' + action_id).size()) {
199       var $action = $('<a href="" id="' + action_id + '" class="cti_call_action" target="_blank" tabindex="-1"></a>');
200       $input.wrap('<span nobr></span>').after($action);
201
202       $input.change(function() { kivi.CustomerVendor.update_dial_action($input); });
203     }
204
205     kivi.CustomerVendor.update_dial_action($input);
206
207     return true;
208   };
209
210   this.inline_report = function(target, source, data){
211     $.ajax({
212       url:        source,
213       success:    function (rsp) {
214         $(target).html(rsp);
215         $(target).find('.paginate').find('a').click(function(event){ ns.redirect_event(event, target) });
216         $(target).find('a.report-generator-header-link').click(function(event){ ns.redirect_event(event, target) });
217       },
218       data:       data,
219     });
220   };
221   this.redirect_event = function(event, target){
222     event.preventDefault();
223     ns.inline_report(target, event.target + '', {});
224   };
225 });
226
227 function local_reinit_widgets() {
228   $('#cv_phone,#shipto_shiptophone,#contact_cp_phone1,#contact_cp_phone2,#contact_cp_mobile1,#contact_cp_mobile2').each(function(idx, elt) {
229     kivi.CustomerVendor.init_dial_action($(elt));
230   });
231 }