New: Can reset barcode also for barcode already defined.

This commit is contained in:
Laurent Destailleur 2014-02-20 23:09:24 +01:00
parent 07ee85b097
commit 1685729393
2 changed files with 63 additions and 42 deletions

View File

@ -35,7 +35,7 @@ $month=dol_print_date($now,'%m');
$day=dol_print_date($now,'%d'); $day=dol_print_date($now,'%d');
$forbarcode=GETPOST('forbarcode'); $forbarcode=GETPOST('forbarcode');
$fk_barcode_type=GETPOST('fk_barcode_type'); $fk_barcode_type=GETPOST('fk_barcode_type');
$submitformbarcodeproductgenall=GETPOST('submitformbarcodeproductgenall'); $eraseallbarcode=GETPOST('eraseallbarcode');
$mesg=''; $mesg='';
@ -46,6 +46,8 @@ $thirdpartytmp=new Societe($db);
$modBarCodeProduct=''; $modBarCodeProduct='';
$maxperinit=1000;
/* /*
* Actions * Actions
@ -100,54 +102,71 @@ if ($action == 'initbarcodeproducts')
$db->begin(); $db->begin();
if (! empty($submitformbarcodeproductgenall)) $nbok=0;
if (! empty($eraseallbarcode))
{ {
$sql ="UPDATE ".MAIN_DB_PREFIX."product"; $sql ="UPDATE ".MAIN_DB_PREFIX."product";
$sql.=" SET barcode = NULL"; $sql.=" SET barcode = NULL";
$resql=$db->query($sql); $resql=$db->query($sql);
if (! $resql) dol_print_error($db); if ($resql)
}
$sql ="SELECT rowid, ref, fk_product_type";
$sql.=" FROM ".MAIN_DB_PREFIX."product";
$sql.=" WHERE barcode IS NULL or barcode = ''";
$sql.=" ORDER BY datec ASC";
$resql=$db->query($sql);
if ($resql)
{
$num=$db->num_rows($resql);
$i=0; $nbok=$nbtry=0;
while ($i < $num)
{ {
$obj=$db->fetch_object($resql); setEventMessage($langs->trans("AllBarcodeReset"),'mesgs');
if ($obj) }
{ else
$productstatic->id=$obj->rowid; {
$productstatic->ref=$obj->ref; $error++;
$productstatic->type=$obj->fk_product_type; dol_print_error($db);
$nextvalue=$modBarCodeProduct->getNextValue($productstatic,'');
//print 'Set value '.$nextvalue.' to product '.$productstatic->id." ".$productstatic->ref." ".$productstatic->type."<br>\n";
$result=$productstatic->setValueFrom('barcode', $nextvalue);
$nbtry++;
if ($result > 0) $nbok++;
}
$i++;
} }
} }
else else
{ {
$error++; $sql ="SELECT rowid, ref, fk_product_type";
dol_print_error($db); $sql.=" FROM ".MAIN_DB_PREFIX."product";
$sql.=" WHERE barcode IS NULL or barcode = ''";
$sql.=$db->order("datec","ASC");
$sql.=$db->plimit($maxperinit);
dol_syslog("codeinit sql=".$sql, LOG_DEBUG);
$resql=$db->query($sql);
if ($resql)
{
$num=$db->num_rows($resql);
$i=0; $nbok=$nbtry=0;
while ($i < min($num,$maxperinit))
{
$obj=$db->fetch_object($resql);
if ($obj)
{
$productstatic->id=$obj->rowid;
$productstatic->ref=$obj->ref;
$productstatic->type=$obj->fk_product_type;
$nextvalue=$modBarCodeProduct->getNextValue($productstatic,'');
//print 'Set value '.$nextvalue.' to product '.$productstatic->id." ".$productstatic->ref." ".$productstatic->type."<br>\n";
$result=$productstatic->setValueFrom('barcode', $nextvalue);
$nbtry++;
if ($result > 0) $nbok++;
}
$i++;
}
}
else
{
$error++;
dol_print_error($db);
}
if (! $error)
{
setEventMessage($langs->trans("RecordsModified",$nbok),'mesgs');
}
} }
if (! $error) if (! $error)
{ {
setEventMessage($langs->trans("RecordsModified",$nbok),'mesgs');
//$db->rollback(); //$db->rollback();
$db->commit(); $db->commit();
} }
@ -229,7 +248,7 @@ if ($conf->product->enabled || $conf->product->service)
$nbno=$nbtotal=0; $nbno=$nbtotal=0;
print_fiche_titre($langs->trans("BarcodeInitForProductsOrServices"),'','').'<br>'."\n"; print_fiche_titre($langs->trans("BarcodeInitForProductsOrServices"),'','').'<br>'."\n";
$sql="SELECT count(rowid) as nb, fk_product_type"; $sql ="SELECT count(rowid) as nb, fk_product_type";
$sql.=" FROM ".MAIN_DB_PREFIX."product"; $sql.=" FROM ".MAIN_DB_PREFIX."product";
$sql.=" WHERE barcode IS NULL OR barcode = ''"; $sql.=" WHERE barcode IS NULL OR barcode = ''";
$sql.=" GROUP BY fk_product_type"; $sql.=" GROUP BY fk_product_type";
@ -284,9 +303,10 @@ if ($conf->product->enabled || $conf->product->service)
print '<br>'; print '<br>';
//print '<input type="checkbox" id="erasealreadyset" name="erasealreadyset"> '.$langs->trans("ResetBarcodeForAllRecords").'<br>'; //print '<input type="checkbox" id="erasealreadyset" name="erasealreadyset"> '.$langs->trans("ResetBarcodeForAllRecords").'<br>';
$moretags1=(($disabled||$disabled1)?' disabled="disabled" title="'.dol_escape_htmltag($titleno).'"':''); $moretags1=(($disabled||$disabled1)?' disabled="disabled" title="'.dol_escape_htmltag($titleno).'"':'');
print '<input class="button" type="submit" name="submitformbarcodeproductgen" id="submitformbarcodeproductgen" value="'.$langs->trans("InitEmptyBarCode",$nbno).'"'.$moretags1.'>'; print '<input class="button" type="submit" name="submitformbarcodeproductgen" id="submitformbarcodeproductgen" value="'.$langs->trans("InitEmptyBarCode",min($maxperinit,$nbno)).'"'.$moretags1.'>';
$moretags2=(($disabled || ! $nbtotal)?' disabled="disabled"':''); $moretags2=(($nbno == $nbtotal)?' disabled="disabled"':'');
print '<input class="button" type="submit" name="submitformbarcodeproductgenall" id="submitformbarcodeproductgenall" value="'.$langs->trans("EraseAndResetBarCode",$nbtotal).'"'.$moretags2.'>'; print ' &nbsp; ';
print '<input class="button" type="submit" name="eraseallbarcode" id="eraseallbarcode" value="'.$langs->trans("EraseAllCurrentBarCode").'"'.$moretags2.'>';
print '<br><br><br>'; print '<br><br><br>';
} }

View File

@ -382,8 +382,9 @@ ExternalModule=External module - Installed into directory %s
BarcodeInitForThirdparties=Mass barcode init for thirdparties BarcodeInitForThirdparties=Mass barcode init for thirdparties
BarcodeInitForProductsOrServices=Mass barcode init for products or services BarcodeInitForProductsOrServices=Mass barcode init for products or services
CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> records on <strong>%s</strong> %s without barcode defined. CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> records on <strong>%s</strong> %s without barcode defined.
InitEmptyBarCode=Init value for the %s empty barcode InitEmptyBarCode=Init value for next %s empty records
EraseAndResetBarCode=Erase and reset barcode for all the %s records EraseAllCurrentBarCode=Erase all current barcode values
AllBarcodeReset=All barcode values have been removed
NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup. NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
NoRecordWithoutBarcodeDefined=No record with no barcode value defined. NoRecordWithoutBarcodeDefined=No record with no barcode value defined.