mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
// Copyright (C) 2014 Cedric GROSS <c.gross@kreiz-it.fr>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
// or see http://www.gnu.org/
|
|
|
|
//
|
|
// \file htdocs/core/js/lib_batch.js
|
|
// \brief File that include javascript functions used when dispatching batch-enabled product
|
|
//
|
|
|
|
function addLineBatch(index) {
|
|
var nme = 'dluo_0_'+index;
|
|
$row=$("tr[name='"+nme+"']").clone(true);
|
|
$row.find("input[name^='qty']").val('');
|
|
var trs = $("tr[name^='dluo_'][name$='_"+index+"']");
|
|
var newrow=$row.html().replace(/_0_/g,"_"+(trs.length)+"_");
|
|
$row.html(newrow);
|
|
//clear value
|
|
$row.find("input[name^='qty']").val('');
|
|
//change name of row
|
|
$row.attr('name','dluo_'+trs.length+'_'+index);
|
|
$("tr[name^='dluo_'][name$='_"+index+"']:last").after($row);
|
|
} |