Update mod_barcode_product_standard.php

$out .= $obj->libelle; //take the libelle corresponding to the type rowid in the database
Take the libelle instead the code for the litteral value of the barcode type rowid.
This commit is contained in:
zuiko 2021-01-12 21:59:09 +01:00 committed by GitHub
parent 364158c35b
commit f718a396d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -162,7 +162,7 @@ class mod_barcode_product_standard extends ModeleNumRefBarCode
if ($num > 0) {
$obj = $this->db->fetch_object($result);
$out .= $obj->code;
$out .= $obj->libelle; //take the libelle corresponding to the type rowid in the database
}
}
else {