Merge branch 'f-chart-picker-in-gl'
[kivitendo-erp.git] / js / kivi.SalesPurchase.js
1 namespace('kivi.SalesPurchase', function(ns) {
2   this.edit_longdescription = function(row) {
3     var $element = $('#longdescription_' + row);
4
5     if (!$element.length) {
6       console.error("kivi.SalesPurchase.edit_longdescription: Element #longdescription_" + row + " not found");
7       return;
8     }
9
10     var params = { element: $element,
11                    runningnumber: row,
12                    partnumber: $('#partnumber_' + row).val() || '',
13                    description: $('#description_' + row).val() || '',
14                    default_longdescription: $('#longdescription_' + row).val() || ''
15                  };
16     this.edit_longdescription_with_params(params);
17   };
18
19   this.edit_longdescription_with_params = function(params) {
20     var $container = $('#popup_edit_longdescription_input_container');
21     var $edit      = $('<textarea id="popup_edit_longdescription_input" class="texteditor-in-dialog" wrap="soft" style="width: 750px; height: 220px;"></textarea>');
22
23     $container.children().remove();
24     $container.append($edit);
25
26     if (params.element) {
27       $container.data('element', params.element);
28     }
29     if (params.set_function) {
30       $container.data('setFunction', params.set_function);
31     }
32
33     $edit.val(params.default_longdescription);
34
35     kivi.init_text_editor($edit);
36
37     $('#popup_edit_longdescription_runningnumber').html(params.runningnumber);
38     $('#popup_edit_longdescription_partnumber').html(params.partnumber);
39
40     var description = params.description.replace(/[\n\r]+/, '');
41     if (description.length >= 50)
42       description = description.substring(0, 50) + "…";
43     $('#popup_edit_longdescription_description').html(description);
44
45     kivi.popup_dialog({
46       id:    'edit_longdescription_dialog',
47       dialog: {
48         title: kivi.t8('Enter longdescription'),
49         open:  function() { kivi.focus_ckeditor_when_ready('#popup_edit_longdescription_input'); },
50         close: function() { $('#popup_edit_longdescription_input_container').children().remove(); }
51       }
52     });
53   };
54
55   this.set_longdescription = function() {
56     if ($('#popup_edit_longdescription_input_container').data('setFunction')) {
57       $('#popup_edit_longdescription_input_container').data('setFunction')($('#popup_edit_longdescription_input').val());
58     } else {
59       $('#popup_edit_longdescription_input_container')
60         .data('element')
61         .val( $('#popup_edit_longdescription_input').val() );
62     }
63     $('#edit_longdescription_dialog').dialog('close');
64   };
65
66   this.delivery_order_check_transfer_qty = function() {
67     var all_match = true;
68     var rowcount  = $('input[name=rowcount]').val();
69     for (var i = 1; i < rowcount; i++)
70       if ($('#stock_in_out_qty_matches_' + i).val() != 1)
71         all_match = false;
72
73     if (all_match)
74       return true;
75
76     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?'));
77   };
78
79   this.oe_warn_save_active_periodic_invoice = function() {
80     return confirm(kivi.t8('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?'));
81   };
82
83   this.check_transaction_description = function() {
84     if ($('#transaction_description').val() !== '')
85       return true;
86
87     alert(kivi.t8('A transaction description is required.'));
88     return false;
89   };
90
91   this.on_submit_checks = function() {
92     var $button = $(this);
93     if (($button.data('check-transfer-qty') == 1) && !kivi.SalesPurchase.delivery_order_check_transfer_qty())
94       return false;
95
96     if (($button.data('warn-save-active-periodic-invoice') == 1) && !kivi.SalesPurchase.oe_warn_save_active_periodic_invoice())
97       return false;
98
99     if (($button.data('require-transaction-description') == 1) && !kivi.SalesPurchase.check_transaction_description())
100       return false;
101
102     return true;
103   };
104
105   this.init_on_submit_checks = function() {
106      $('input[type=submit]').click(kivi.SalesPurchase.on_submit_checks);
107   };
108
109   this.set_duedate_on_reference_date_change = function(reference_field_id) {
110     setTimeout(function() {
111       var data = {
112         action:     'set_duedate',
113         invdate:    $('#' + reference_field_id).val(),
114         duedate:    $('#duedate').val(),
115         payment_id: $('#payment_id').val(),
116       };
117       $.post('is.pl', data, kivi.eval_json_result);
118     });
119   };
120 });