Revision ab80e40b
Von Bernd Bleßmann vor mehr als 1 Jahr hinzugefügt
js/kivi.Part.js | ||
---|---|---|
264 | 264 |
$("#makemodel_rows tr:last").find('input[type=text]').filter(':visible:first').focus(); |
265 | 265 |
}; |
266 | 266 |
|
267 |
// businessmodel |
|
268 |
ns.delete_businessmodel_row = function(clicked) { |
|
269 |
var row = $(clicked).closest('tr'); |
|
270 |
$(row).remove(); |
|
271 |
}; |
|
272 |
|
|
273 |
ns.add_businessmodel_row = function() { |
|
274 |
if ($('#add_businessmodel').val() === '') return; |
|
275 |
|
|
276 |
var data = $('#businessmodel_table :input').serializeArray(); |
|
277 |
data.push({ name: 'action', value: 'Part/add_businessmodel_row' }); |
|
278 |
|
|
279 |
$.post("controller.pl", data, kivi.eval_json_result); |
|
280 |
}; |
|
281 |
|
|
282 |
ns.focus_last_businessmodel_input = function () { |
|
283 |
$("#businessmodel_rows tr:last").find('input[type=text]').filter(':visible:first').focus(); |
|
284 |
}; |
|
267 | 285 |
|
268 | 286 |
// customerprice |
269 | 287 |
ns.customerprice_renumber_positions = function() { |
Auch abrufbar als: Unified diff
Erweiterung für Artikelnummern nach Kunden-/Lieferanten-Typ (business).
Suche im Bericht und Import sind (noch) nicht implementiert.