Delete function disable button disablebuttonmakemovementandclose()

This commit is contained in:
atm-lena 2022-03-08 10:02:30 +01:00
parent f3fb0ffd8a
commit 4e8dd1b6a5
2 changed files with 2 additions and 36 deletions

View File

@ -251,7 +251,7 @@ SelectAStockMovementFileToImport=select a stock movement file to import
InfoTemplateImport=Uploaded file needs to have this format (* are mandatory fields):<br>Source Warehouse* | Target Warehouse* | Product* | Quantity* | Lot/serial number<br>CSV character separator must be "<b>%s</b>"
LabelOfInventoryMovemement=Inventory %s
ReOpen=Reopen
ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory.
ConfirmFinish=Do you confirm the closing of the inventory ? This will generate all stock movements to update your stock to the real qty you entered into the inventory.<br><br>No stock movement will be made on products that do not have an actual quantity entered.
ObjectNotFound=%s not found
MakeMovementsAndClose=Generate movements and close
AutofillWithExpected=Fill real quantity with expected quantity
@ -271,4 +271,4 @@ ErrorCantFindCodeInInventory=Can't find the following code in inventory
QtyWasAddedToTheScannedBarcode=Success !! The quantity was added to all the requested barcode. You can close the Scanner tool.
StockChangeDisabled=Change on stock disabled
NoWarehouseDefinedForTerminal=No warehouse defined for terminal
ClearQtys=Clear all quantities
ClearQtys=Clear all quantities

View File

@ -393,28 +393,6 @@ $help_url = '';
llxHeader('', $langs->trans('Inventory'), $help_url);
// Disable button Generate movement if data were modified and not saved
print '<script type="text/javascript">
function disablebuttonmakemovementandclose() {
console.log("Disable button idbuttonmakemovementandclose until we save");
jQuery("#idbuttonmakemovementandclose").attr(\'disabled\',\'disabled\');
jQuery("#idbuttonmakemovementandclose").attr(\'title\',\''.dol_escape_js($langs->trans("SaveQtyFirst")).'\');
jQuery("#idbuttonmakemovementandclose").attr(\'class\',\'butActionRefused\');
};
jQuery(document).ready(function() {
jQuery(".realqty").keyup(function() {
console.log("keyup on realqty");
disablebuttonmakemovementandclose();
});
jQuery(".realqty").change(function() {
console.log("change on realqty");
disablebuttonmakemovementandclose();
});
});
</script>';
// Part to show record
if ($object->id > 0) {
@ -607,7 +585,6 @@ if ($object->id > 0) {
objecttofill.value = object.innerText;
})
console.log("Values filled (after click on fillwithexpected)");
disablebuttonmakemovementandclose();
return false;
});';
print '});';
@ -858,7 +835,6 @@ if ($object->id > 0) {
id = id.split("_")[1];
tmpvalue = $("#id_"+id+"_input_tmp").val()
$("#id_"+id+"_input")[0].value = tmpvalue;
disablebuttonmakemovementandclose();
return false; /* disable submit */
});
});';
@ -1052,16 +1028,6 @@ if ($object->id > 0) {
print '</div>';
// Call method to disable the button if no qty entered yet for inventory
if ($object->status != $object::STATUS_VALIDATED || !$hasinput) {
print '<script type="text/javascript">
jQuery(document).ready(function() {
console.log("Call disablebuttonmakemovementandclose because status = '.((int) $object->status).' or $hasinput = '.((int) $hasinput).'");
disablebuttonmakemovementandclose();
});
</script>';
}
print '</form>';