Revision d13114c0
Von Tamino Steinert vor 8 Tagen hinzugefügt
- ID d13114c01420dfdd4e0f53909647cf495e111c04
- Vorgänger e84b30f1
js/kivi.Part.js | ||
---|---|---|
50 | 50 |
$.post("controller.pl", data, kivi.eval_json_result); |
51 | 51 |
}; |
52 | 52 |
|
53 |
ns.print_multi = function() { |
|
54 |
$('#print_options').dialog('close'); |
|
55 |
|
|
56 |
var data = $('#report_form').serializeArray(); |
|
57 |
data = data.concat($('#print_options_form').serializeArray()); |
|
58 |
data.push({ name: 'action', value: 'Part/print_multi' }); |
|
59 |
|
|
60 |
$.post("controller.pl", data, kivi.eval_json_result); |
|
61 |
}; |
|
62 |
|
|
53 | 63 |
ns.show_part_labels_for_stock_print_options = function() { |
54 | 64 |
kivi.popup_dialog({ |
55 | 65 |
id: 'print_part_labels_for_stock_print_options', |
56 | 66 |
dialog: { |
57 |
title: kivi.t8('Part Labels for Stock Print options'),
|
|
67 |
title: kivi.t8('Print options for Stock Print'),
|
|
58 | 68 |
width: 800, |
59 | 69 |
height: 300 |
60 | 70 |
} |
61 | 71 |
}); |
62 |
} |
|
72 |
};
|
|
63 | 73 |
|
64 | 74 |
ns.save_and_print_part_labels_for_stock = function() { |
65 | 75 |
$('#print_part_labels_for_stock_print_options').dialog('close'); |
... | ... | |
71 | 81 |
$.post("controller.pl", data, kivi.eval_json_result); |
72 | 82 |
}; |
73 | 83 |
|
84 |
ns.print_multi_part_labels_for_stock = function() { |
|
85 |
$('#print_part_labels_for_stock_print_options').dialog('close'); |
|
86 |
|
|
87 |
var data = $('#report_form').serializeArray(); |
|
88 |
data = data.concat($('#print_part_labels_for_stock_print_options_form').serializeArray()); |
|
89 |
data.push({ name: 'action', value: 'Part/print_multi' }); |
|
90 |
|
|
91 |
$.post("controller.pl", data, kivi.eval_json_result); |
|
92 |
}; |
|
93 |
|
|
74 | 94 |
ns.delete = function() { |
75 | 95 |
var data = $('#ic').serializeArray(); |
76 | 96 |
data.push({ name: 'action', value: 'Part/delete' }); |
Auch abrufbar als: Unified diff
S:C:Part: Massendruck für Artikeletiketten