FIX Generation of invoice from bulk action "Bill Orders"
Conflicts: htdocs/fourn/class/fournisseur.facture.class.php
This commit is contained in:
parent
fef6440ff2
commit
d28188d19d
@ -208,7 +208,7 @@ if (empty($reshook))
|
|||||||
// TODO Move this into mass action include
|
// TODO Move this into mass action include
|
||||||
if ($massaction == 'confirm_createbills') {
|
if ($massaction == 'confirm_createbills') {
|
||||||
|
|
||||||
$orders = GETPOST('toselect');
|
$orders = GETPOST('toselect','array');
|
||||||
$createbills_onebythird = GETPOST('createbills_onebythird', 'int');
|
$createbills_onebythird = GETPOST('createbills_onebythird', 'int');
|
||||||
$validate_invoices = GETPOST('valdate_invoices', 'int');
|
$validate_invoices = GETPOST('valdate_invoices', 'int');
|
||||||
|
|
||||||
@ -219,13 +219,13 @@ if (empty($reshook))
|
|||||||
|
|
||||||
$db->begin();
|
$db->begin();
|
||||||
|
|
||||||
foreach($orders as $id_order) {
|
foreach($orders as $id_order)
|
||||||
|
{
|
||||||
$cmd = new Commande($db);
|
$cmd = new Commande($db);
|
||||||
if($cmd->fetch($id_order) <= 0) continue;
|
if ($cmd->fetch($id_order) <= 0) continue;
|
||||||
|
|
||||||
$object = new Facture($db);
|
$object = new Facture($db);
|
||||||
if(!empty($createbills_onebythird) && !empty($TFactThird[$cmd->socid])) $object = $TFactThird[$cmd->socid]; // If option "one bill per third" is set, we use already created order.
|
if (!empty($createbills_onebythird) && !empty($TFactThird[$cmd->socid])) $object = $TFactThird[$cmd->socid]; // If option "one bill per third" is set, we use already created order.
|
||||||
else {
|
else {
|
||||||
|
|
||||||
$object->socid = $cmd->socid;
|
$object->socid = $cmd->socid;
|
||||||
@ -247,12 +247,10 @@ if (empty($reshook))
|
|||||||
$res = $object->create($user);
|
$res = $object->create($user);
|
||||||
|
|
||||||
if($res > 0) $nb_bills_created++;
|
if($res > 0) $nb_bills_created++;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if($object->id > 0) {
|
if ($object->id > 0)
|
||||||
|
{
|
||||||
$db->begin();
|
|
||||||
$sql = "INSERT INTO ".MAIN_DB_PREFIX."element_element (";
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."element_element (";
|
||||||
$sql.= "fk_source";
|
$sql.= "fk_source";
|
||||||
$sql.= ", sourcetype";
|
$sql.= ", sourcetype";
|
||||||
@ -265,115 +263,113 @@ if (empty($reshook))
|
|||||||
$sql.= ", '".$object->element."'";
|
$sql.= ", '".$object->element."'";
|
||||||
$sql.= ")";
|
$sql.= ")";
|
||||||
|
|
||||||
if ($db->query($sql))
|
if (! $db->query($sql))
|
||||||
{
|
{
|
||||||
$db->commit();
|
$error++;
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$db->rollback();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$lines = $cmd->lines;
|
if (! $error)
|
||||||
if (empty($lines) && method_exists($cmd, 'fetch_lines'))
|
|
||||||
{
|
{
|
||||||
$cmd->fetch_lines();
|
$lines = $cmd->lines;
|
||||||
$lines = $cmd->lines;
|
if (empty($lines) && method_exists($cmd, 'fetch_lines'))
|
||||||
|
{
|
||||||
|
$cmd->fetch_lines();
|
||||||
|
$lines = $cmd->lines;
|
||||||
|
}
|
||||||
|
|
||||||
|
$fk_parent_line=0;
|
||||||
|
$num=count($lines);
|
||||||
|
|
||||||
|
for ($i=0;$i<$num;$i++)
|
||||||
|
{
|
||||||
|
$desc=($lines[$i]->desc?$lines[$i]->desc:$lines[$i]->libelle);
|
||||||
|
if ($lines[$i]->subprice < 0)
|
||||||
|
{
|
||||||
|
// Negative line, we create a discount line
|
||||||
|
$discount = new DiscountAbsolute($db);
|
||||||
|
$discount->fk_soc=$object->socid;
|
||||||
|
$discount->amount_ht=abs($lines[$i]->total_ht);
|
||||||
|
$discount->amount_tva=abs($lines[$i]->total_tva);
|
||||||
|
$discount->amount_ttc=abs($lines[$i]->total_ttc);
|
||||||
|
$discount->tva_tx=$lines[$i]->tva_tx;
|
||||||
|
$discount->fk_user=$user->id;
|
||||||
|
$discount->description=$desc;
|
||||||
|
$discountid=$discount->create($user);
|
||||||
|
if ($discountid > 0)
|
||||||
|
{
|
||||||
|
$result=$object->insert_discount($discountid);
|
||||||
|
//$result=$discount->link_to_invoice($lineid,$id);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
setEventMessages($discount->error, $discount->errors, 'errors');
|
||||||
|
$error++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Positive line
|
||||||
|
$product_type=($lines[$i]->product_type?$lines[$i]->product_type:0);
|
||||||
|
// Date start
|
||||||
|
$date_start=false;
|
||||||
|
if ($lines[$i]->date_debut_prevue) $date_start=$lines[$i]->date_debut_prevue;
|
||||||
|
if ($lines[$i]->date_debut_reel) $date_start=$lines[$i]->date_debut_reel;
|
||||||
|
if ($lines[$i]->date_start) $date_start=$lines[$i]->date_start;
|
||||||
|
//Date end
|
||||||
|
$date_end=false;
|
||||||
|
if ($lines[$i]->date_fin_prevue) $date_end=$lines[$i]->date_fin_prevue;
|
||||||
|
if ($lines[$i]->date_fin_reel) $date_end=$lines[$i]->date_fin_reel;
|
||||||
|
if ($lines[$i]->date_end) $date_end=$lines[$i]->date_end;
|
||||||
|
// Reset fk_parent_line for no child products and special product
|
||||||
|
if (($lines[$i]->product_type != 9 && empty($lines[$i]->fk_parent_line)) || $lines[$i]->product_type == 9)
|
||||||
|
{
|
||||||
|
$fk_parent_line = 0;
|
||||||
|
}
|
||||||
|
$result = $object->addline(
|
||||||
|
$desc,
|
||||||
|
$lines[$i]->subprice,
|
||||||
|
$lines[$i]->qty,
|
||||||
|
$lines[$i]->tva_tx,
|
||||||
|
$lines[$i]->localtax1_tx,
|
||||||
|
$lines[$i]->localtax2_tx,
|
||||||
|
$lines[$i]->fk_product,
|
||||||
|
$lines[$i]->remise_percent,
|
||||||
|
$date_start,
|
||||||
|
$date_end,
|
||||||
|
0,
|
||||||
|
$lines[$i]->info_bits,
|
||||||
|
$lines[$i]->fk_remise_except,
|
||||||
|
'HT',
|
||||||
|
0,
|
||||||
|
$product_type,
|
||||||
|
$ii,
|
||||||
|
$lines[$i]->special_code,
|
||||||
|
$object->origin,
|
||||||
|
$lines[$i]->rowid,
|
||||||
|
$fk_parent_line,
|
||||||
|
$lines[$i]->fk_fournprice,
|
||||||
|
$lines[$i]->pa_ht,
|
||||||
|
$lines[$i]->label
|
||||||
|
);
|
||||||
|
if ($result > 0)
|
||||||
|
{
|
||||||
|
$lineid=$result;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$lineid=0;
|
||||||
|
$error++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Defined the new fk_parent_line
|
||||||
|
if ($result > 0 && $lines[$i]->product_type == 9)
|
||||||
|
{
|
||||||
|
$fk_parent_line = $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$fk_parent_line=0;
|
|
||||||
$num=count($lines);
|
|
||||||
|
|
||||||
for ($i=0;$i<$num;$i++)
|
|
||||||
{
|
|
||||||
$desc=($lines[$i]->desc?$lines[$i]->desc:$lines[$i]->libelle);
|
|
||||||
if ($lines[$i]->subprice < 0)
|
|
||||||
{
|
|
||||||
// Negative line, we create a discount line
|
|
||||||
$discount = new DiscountAbsolute($db);
|
|
||||||
$discount->fk_soc=$object->socid;
|
|
||||||
$discount->amount_ht=abs($lines[$i]->total_ht);
|
|
||||||
$discount->amount_tva=abs($lines[$i]->total_tva);
|
|
||||||
$discount->amount_ttc=abs($lines[$i]->total_ttc);
|
|
||||||
$discount->tva_tx=$lines[$i]->tva_tx;
|
|
||||||
$discount->fk_user=$user->id;
|
|
||||||
$discount->description=$desc;
|
|
||||||
$discountid=$discount->create($user);
|
|
||||||
if ($discountid > 0)
|
|
||||||
{
|
|
||||||
$result=$object->insert_discount($discountid);
|
|
||||||
//$result=$discount->link_to_invoice($lineid,$id);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
setEventMessages($discount->error, $discount->errors, 'errors');
|
|
||||||
$error++;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Positive line
|
|
||||||
$product_type=($lines[$i]->product_type?$lines[$i]->product_type:0);
|
|
||||||
// Date start
|
|
||||||
$date_start=false;
|
|
||||||
if ($lines[$i]->date_debut_prevue) $date_start=$lines[$i]->date_debut_prevue;
|
|
||||||
if ($lines[$i]->date_debut_reel) $date_start=$lines[$i]->date_debut_reel;
|
|
||||||
if ($lines[$i]->date_start) $date_start=$lines[$i]->date_start;
|
|
||||||
//Date end
|
|
||||||
$date_end=false;
|
|
||||||
if ($lines[$i]->date_fin_prevue) $date_end=$lines[$i]->date_fin_prevue;
|
|
||||||
if ($lines[$i]->date_fin_reel) $date_end=$lines[$i]->date_fin_reel;
|
|
||||||
if ($lines[$i]->date_end) $date_end=$lines[$i]->date_end;
|
|
||||||
// Reset fk_parent_line for no child products and special product
|
|
||||||
if (($lines[$i]->product_type != 9 && empty($lines[$i]->fk_parent_line)) || $lines[$i]->product_type == 9)
|
|
||||||
{
|
|
||||||
$fk_parent_line = 0;
|
|
||||||
}
|
|
||||||
$result = $object->addline(
|
|
||||||
$desc,
|
|
||||||
$lines[$i]->subprice,
|
|
||||||
$lines[$i]->qty,
|
|
||||||
$lines[$i]->tva_tx,
|
|
||||||
$lines[$i]->localtax1_tx,
|
|
||||||
$lines[$i]->localtax2_tx,
|
|
||||||
$lines[$i]->fk_product,
|
|
||||||
$lines[$i]->remise_percent,
|
|
||||||
$date_start,
|
|
||||||
$date_end,
|
|
||||||
0,
|
|
||||||
$lines[$i]->info_bits,
|
|
||||||
$lines[$i]->fk_remise_except,
|
|
||||||
'HT',
|
|
||||||
0,
|
|
||||||
$product_type,
|
|
||||||
$ii,
|
|
||||||
$lines[$i]->special_code,
|
|
||||||
$object->origin,
|
|
||||||
$lines[$i]->rowid,
|
|
||||||
$fk_parent_line,
|
|
||||||
$lines[$i]->fk_fournprice,
|
|
||||||
$lines[$i]->pa_ht,
|
|
||||||
$lines[$i]->label
|
|
||||||
);
|
|
||||||
if ($result > 0)
|
|
||||||
{
|
|
||||||
$lineid=$result;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$lineid=0;
|
|
||||||
$error++;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
// Defined the new fk_parent_line
|
|
||||||
if ($result > 0 && $lines[$i]->product_type == 9)
|
|
||||||
{
|
|
||||||
$fk_parent_line = $result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//$cmd->classifyBilled($user); // Disabled. This behavior must be set or not using the workflow module.
|
//$cmd->classifyBilled($user); // Disabled. This behavior must be set or not using the workflow module.
|
||||||
@ -386,27 +382,29 @@ if (empty($reshook))
|
|||||||
$TAllFact = empty($createbills_onebythird) ? $TFact : $TFactThird;
|
$TAllFact = empty($createbills_onebythird) ? $TFact : $TFactThird;
|
||||||
$toselect = array();
|
$toselect = array();
|
||||||
|
|
||||||
if(!empty($validate_invoices)) {
|
if (! $error && $validate_invoices)
|
||||||
|
{
|
||||||
$massaction = $action = 'builddoc';
|
$massaction = $action = 'builddoc';
|
||||||
|
foreach($TAllFact as &$object)
|
||||||
|
{
|
||||||
|
$result = $object->validate($user);
|
||||||
|
if ($result <= 0)
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
setEventMessages($object->error, $object->errors, 'errors');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
foreach($TAllFact as &$object) {
|
$id = $object->id; // For builddoc action
|
||||||
$object->validate($user);
|
|
||||||
$toselect[] = $object->id; // For builddoc action
|
|
||||||
|
|
||||||
// Fac builddoc
|
// Fac builddoc
|
||||||
|
$donotredirect = 1;
|
||||||
$upload_dir = $conf->facture->dir_output;
|
$upload_dir = $conf->facture->dir_output;
|
||||||
$permissioncreate=$user->rights->facture->creer;
|
$permissioncreate=$user->rights->facture->creer;
|
||||||
include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
|
include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
|
||||||
}
|
}
|
||||||
|
|
||||||
$objectclass='Facture';
|
$massaction = $action = 'confirm_createbills';
|
||||||
$objectlabel='Invoice';
|
|
||||||
$permtoread = $user->rights->facture->lire;
|
|
||||||
$permtodelete = $user->rights->facture->supprimer;
|
|
||||||
$uploaddir = $conf->facture->dir_output;
|
|
||||||
include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! $error)
|
if (! $error)
|
||||||
|
|||||||
@ -2051,6 +2051,10 @@ class Facture extends CommonInvoice
|
|||||||
$error=0;
|
$error=0;
|
||||||
dol_syslog(get_class($this).'::validate user='.$user->id.', force_number='.$force_number.', idwarehouse='.$idwarehouse);
|
dol_syslog(get_class($this).'::validate user='.$user->id.', force_number='.$force_number.', idwarehouse='.$idwarehouse);
|
||||||
|
|
||||||
|
// Force to have object complete for checks
|
||||||
|
$this->fetch_thirdparty();
|
||||||
|
$this->fetch_lines();
|
||||||
|
|
||||||
// Check parameters
|
// Check parameters
|
||||||
if (! $this->brouillon)
|
if (! $this->brouillon)
|
||||||
{
|
{
|
||||||
@ -2068,9 +2072,6 @@ class Facture extends CommonInvoice
|
|||||||
|
|
||||||
$this->db->begin();
|
$this->db->begin();
|
||||||
|
|
||||||
$this->fetch_thirdparty();
|
|
||||||
$this->fetch_lines();
|
|
||||||
|
|
||||||
// Check parameters
|
// Check parameters
|
||||||
if ($this->type == self::TYPE_REPLACEMENT) // si facture de remplacement
|
if ($this->type == self::TYPE_REPLACEMENT) // si facture de remplacement
|
||||||
{
|
{
|
||||||
|
|||||||
@ -91,10 +91,13 @@ if ($action == 'builddoc' && $permissioncreate)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
setEventMessages($langs->trans("FileGenerated"), null);
|
if (empty($donotredirect)) // This is se when include is done by bulk action "Bill Orders"
|
||||||
|
{
|
||||||
|
setEventMessages($langs->trans("FileGenerated"), null);
|
||||||
|
|
||||||
header('Location: '.$_SERVER['REQUEST_URI'].'#builddoc');
|
header('Location: '.$_SERVER['REQUEST_URI'].'#builddoc');
|
||||||
exit;
|
exit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1086,7 +1086,11 @@ class FactureFournisseur extends CommonInvoice
|
|||||||
|
|
||||||
$error=0;
|
$error=0;
|
||||||
|
|
||||||
// Protection
|
// Force to have object complete for checks
|
||||||
|
$this->fetch_thirdparty();
|
||||||
|
$this->fetch_lines();
|
||||||
|
|
||||||
|
// Check parameters
|
||||||
if ($this->statut > self::STATUS_DRAFT) // This is to avoid to validate twice (avoid errors on logs and stock management)
|
if ($this->statut > self::STATUS_DRAFT) // This is to avoid to validate twice (avoid errors on logs and stock management)
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this)."::validate no draft status", LOG_WARNING);
|
dol_syslog(get_class($this)."::validate no draft status", LOG_WARNING);
|
||||||
|
|||||||
@ -239,7 +239,7 @@ if (empty($reshook))
|
|||||||
// TODO Move this into mass action include
|
// TODO Move this into mass action include
|
||||||
if ($massaction == 'confirm_createbills')
|
if ($massaction == 'confirm_createbills')
|
||||||
{
|
{
|
||||||
$orders = GETPOST('toselect');
|
$orders = GETPOST('toselect','array');
|
||||||
$createbills_onebythird = GETPOST('createbills_onebythird', 'int');
|
$createbills_onebythird = GETPOST('createbills_onebythird', 'int');
|
||||||
$validate_invoices = GETPOST('valdate_invoices', 'int');
|
$validate_invoices = GETPOST('valdate_invoices', 'int');
|
||||||
|
|
||||||
@ -281,9 +281,8 @@ if (empty($reshook))
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if($object->id > 0) {
|
if ($object->id > 0)
|
||||||
|
{
|
||||||
$db->begin();
|
|
||||||
$sql = "INSERT INTO ".MAIN_DB_PREFIX."element_element (";
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."element_element (";
|
||||||
$sql.= "fk_source";
|
$sql.= "fk_source";
|
||||||
$sql.= ", sourcetype";
|
$sql.= ", sourcetype";
|
||||||
@ -296,118 +295,116 @@ if (empty($reshook))
|
|||||||
$sql.= ", '".$object->element."'";
|
$sql.= ", '".$object->element."'";
|
||||||
$sql.= ")";
|
$sql.= ")";
|
||||||
|
|
||||||
if ($db->query($sql))
|
if (! $db->query($sql))
|
||||||
{
|
{
|
||||||
$db->commit();
|
$erorr++;
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$db->rollback();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$lines = $cmd->lines;
|
if (! $error)
|
||||||
if (empty($lines) && method_exists($cmd, 'fetch_lines'))
|
|
||||||
{
|
{
|
||||||
$cmd->fetch_lines();
|
$lines = $cmd->lines;
|
||||||
$lines = $cmd->lines;
|
if (empty($lines) && method_exists($cmd, 'fetch_lines'))
|
||||||
|
{
|
||||||
|
$cmd->fetch_lines();
|
||||||
|
$lines = $cmd->lines;
|
||||||
|
}
|
||||||
|
|
||||||
|
$fk_parent_line=0;
|
||||||
|
$num=count($lines);
|
||||||
|
|
||||||
|
for ($i=0;$i<$num;$i++)
|
||||||
|
{
|
||||||
|
$desc=($lines[$i]->desc?$lines[$i]->desc:$lines[$i]->libelle);
|
||||||
|
if ($lines[$i]->subprice < 0)
|
||||||
|
{
|
||||||
|
// Negative line, we create a discount line
|
||||||
|
$discount = new DiscountAbsolute($db);
|
||||||
|
$discount->fk_soc=$object->socid;
|
||||||
|
$discount->amount_ht=abs($lines[$i]->total_ht);
|
||||||
|
$discount->amount_tva=abs($lines[$i]->total_tva);
|
||||||
|
$discount->amount_ttc=abs($lines[$i]->total_ttc);
|
||||||
|
$discount->tva_tx=$lines[$i]->tva_tx;
|
||||||
|
$discount->fk_user=$user->id;
|
||||||
|
$discount->description=$desc;
|
||||||
|
$discountid=$discount->create($user);
|
||||||
|
if ($discountid > 0)
|
||||||
|
{
|
||||||
|
$result=$object->insert_discount($discountid);
|
||||||
|
//$result=$discount->link_to_invoice($lineid,$id);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
setEventMessages($discount->error, $discount->errors, 'errors');
|
||||||
|
$error++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Positive line
|
||||||
|
$product_type=($lines[$i]->product_type?$lines[$i]->product_type:0);
|
||||||
|
// Date start
|
||||||
|
$date_start=false;
|
||||||
|
if ($lines[$i]->date_debut_prevue) $date_start=$lines[$i]->date_debut_prevue;
|
||||||
|
if ($lines[$i]->date_debut_reel) $date_start=$lines[$i]->date_debut_reel;
|
||||||
|
if ($lines[$i]->date_start) $date_start=$lines[$i]->date_start;
|
||||||
|
//Date end
|
||||||
|
$date_end=false;
|
||||||
|
if ($lines[$i]->date_fin_prevue) $date_end=$lines[$i]->date_fin_prevue;
|
||||||
|
if ($lines[$i]->date_fin_reel) $date_end=$lines[$i]->date_fin_reel;
|
||||||
|
if ($lines[$i]->date_end) $date_end=$lines[$i]->date_end;
|
||||||
|
// Reset fk_parent_line for no child products and special product
|
||||||
|
if (($lines[$i]->product_type != 9 && empty($lines[$i]->fk_parent_line)) || $lines[$i]->product_type == 9)
|
||||||
|
{
|
||||||
|
$fk_parent_line = 0;
|
||||||
|
}
|
||||||
|
$result = $object->addline(
|
||||||
|
$desc,
|
||||||
|
$lines[$i]->subprice,
|
||||||
|
$lines[$i]->qty,
|
||||||
|
$lines[$i]->tva_tx,
|
||||||
|
$lines[$i]->localtax1_tx,
|
||||||
|
$lines[$i]->localtax2_tx,
|
||||||
|
$lines[$i]->fk_product,
|
||||||
|
$lines[$i]->remise_percent,
|
||||||
|
$date_start,
|
||||||
|
$date_end,
|
||||||
|
0,
|
||||||
|
$lines[$i]->info_bits,
|
||||||
|
$lines[$i]->fk_remise_except,
|
||||||
|
'HT',
|
||||||
|
0,
|
||||||
|
$product_type,
|
||||||
|
$ii,
|
||||||
|
$lines[$i]->special_code,
|
||||||
|
$object->origin,
|
||||||
|
$lines[$i]->rowid,
|
||||||
|
$fk_parent_line,
|
||||||
|
$lines[$i]->fk_fournprice,
|
||||||
|
$lines[$i]->pa_ht,
|
||||||
|
$lines[$i]->label
|
||||||
|
);
|
||||||
|
if ($result > 0)
|
||||||
|
{
|
||||||
|
$lineid=$result;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$lineid=0;
|
||||||
|
$error++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Defined the new fk_parent_line
|
||||||
|
if ($result > 0 && $lines[$i]->product_type == 9)
|
||||||
|
{
|
||||||
|
$fk_parent_line = $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$fk_parent_line=0;
|
|
||||||
$num=count($lines);
|
|
||||||
|
|
||||||
for ($i=0;$i<$num;$i++)
|
|
||||||
{
|
|
||||||
$desc=($lines[$i]->desc?$lines[$i]->desc:$lines[$i]->libelle);
|
|
||||||
if ($lines[$i]->subprice < 0)
|
|
||||||
{
|
|
||||||
// Negative line, we create a discount line
|
|
||||||
$discount = new DiscountAbsolute($db);
|
|
||||||
$discount->fk_soc=$object->socid;
|
|
||||||
$discount->amount_ht=abs($lines[$i]->total_ht);
|
|
||||||
$discount->amount_tva=abs($lines[$i]->total_tva);
|
|
||||||
$discount->amount_ttc=abs($lines[$i]->total_ttc);
|
|
||||||
$discount->tva_tx=$lines[$i]->tva_tx;
|
|
||||||
$discount->fk_user=$user->id;
|
|
||||||
$discount->description=$desc;
|
|
||||||
$discountid=$discount->create($user);
|
|
||||||
if ($discountid > 0)
|
|
||||||
{
|
|
||||||
$result=$object->insert_discount($discountid);
|
|
||||||
//$result=$discount->link_to_invoice($lineid,$id);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
setEventMessages($discount->error, $discount->errors, 'errors');
|
|
||||||
$error++;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Positive line
|
|
||||||
$product_type=($lines[$i]->product_type?$lines[$i]->product_type:0);
|
|
||||||
// Date start
|
|
||||||
$date_start=false;
|
|
||||||
if ($lines[$i]->date_debut_prevue) $date_start=$lines[$i]->date_debut_prevue;
|
|
||||||
if ($lines[$i]->date_debut_reel) $date_start=$lines[$i]->date_debut_reel;
|
|
||||||
if ($lines[$i]->date_start) $date_start=$lines[$i]->date_start;
|
|
||||||
//Date end
|
|
||||||
$date_end=false;
|
|
||||||
if ($lines[$i]->date_fin_prevue) $date_end=$lines[$i]->date_fin_prevue;
|
|
||||||
if ($lines[$i]->date_fin_reel) $date_end=$lines[$i]->date_fin_reel;
|
|
||||||
if ($lines[$i]->date_end) $date_end=$lines[$i]->date_end;
|
|
||||||
// Reset fk_parent_line for no child products and special product
|
|
||||||
if (($lines[$i]->product_type != 9 && empty($lines[$i]->fk_parent_line)) || $lines[$i]->product_type == 9)
|
|
||||||
{
|
|
||||||
$fk_parent_line = 0;
|
|
||||||
}
|
|
||||||
$result = $object->addline(
|
|
||||||
$desc,
|
|
||||||
$lines[$i]->subprice,
|
|
||||||
$lines[$i]->qty,
|
|
||||||
$lines[$i]->tva_tx,
|
|
||||||
$lines[$i]->localtax1_tx,
|
|
||||||
$lines[$i]->localtax2_tx,
|
|
||||||
$lines[$i]->fk_product,
|
|
||||||
$lines[$i]->remise_percent,
|
|
||||||
$date_start,
|
|
||||||
$date_end,
|
|
||||||
0,
|
|
||||||
$lines[$i]->info_bits,
|
|
||||||
$lines[$i]->fk_remise_except,
|
|
||||||
'HT',
|
|
||||||
0,
|
|
||||||
$product_type,
|
|
||||||
$ii,
|
|
||||||
$lines[$i]->special_code,
|
|
||||||
$object->origin,
|
|
||||||
$lines[$i]->rowid,
|
|
||||||
$fk_parent_line,
|
|
||||||
$lines[$i]->fk_fournprice,
|
|
||||||
$lines[$i]->pa_ht,
|
|
||||||
$lines[$i]->label
|
|
||||||
);
|
|
||||||
if ($result > 0)
|
|
||||||
{
|
|
||||||
$lineid=$result;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$lineid=0;
|
|
||||||
$error++;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
// Defined the new fk_parent_line
|
|
||||||
if ($result > 0 && $lines[$i]->product_type == 9)
|
|
||||||
{
|
|
||||||
$fk_parent_line = $result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$cmd->classifyBilled($user);
|
$cmd->classifyBilled($user); // TODO Move this in workflow like done for customer orders
|
||||||
|
|
||||||
if(!empty($createbills_onebythird) && empty($TFactThird[$cmd->socid])) $TFactThird[$cmd->socid] = $object;
|
if(!empty($createbills_onebythird) && empty($TFactThird[$cmd->socid])) $TFactThird[$cmd->socid] = $object;
|
||||||
else $TFact[$object->id] = $object;
|
else $TFact[$object->id] = $object;
|
||||||
@ -417,27 +414,30 @@ if (empty($reshook))
|
|||||||
$TAllFact = empty($createbills_onebythird) ? $TFact : $TFactThird;
|
$TAllFact = empty($createbills_onebythird) ? $TFact : $TFactThird;
|
||||||
$toselect = array();
|
$toselect = array();
|
||||||
|
|
||||||
if(!empty($validate_invoices)) {
|
if (! $error && $validate_invoices) {
|
||||||
|
|
||||||
$massaction = $action = 'builddoc';
|
$massaction = $action = 'builddoc';
|
||||||
|
|
||||||
foreach($TAllFact as &$object) {
|
foreach($TAllFact as &$object)
|
||||||
|
{
|
||||||
$object->validate($user);
|
$object->validate($user);
|
||||||
$toselect[] = $object->id; // For builddoc action
|
if ($result <= 0)
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
setEventMessages($object->error, $object->errors, 'errors');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
$id = $object->id; // For builddoc action
|
||||||
|
|
||||||
// Fac builddoc
|
// Fac builddoc
|
||||||
|
$donotredirect = 1;
|
||||||
$upload_dir = $conf->facture->dir_output;
|
$upload_dir = $conf->facture->dir_output;
|
||||||
$permissioncreate=$user->rights->facture->creer;
|
$permissioncreate=$user->rights->facture->creer;
|
||||||
include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
|
include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
|
||||||
}
|
}
|
||||||
|
|
||||||
$objectclass='Facture';
|
$massaction = $action = 'confirm_createbills';
|
||||||
$objectlabel='Invoice';
|
|
||||||
$permtoread = $user->rights->facture->lire;
|
|
||||||
$permtodelete = $user->rights->facture->supprimer;
|
|
||||||
$uploaddir = $conf->facture->dir_output;
|
|
||||||
include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! $error)
|
if (! $error)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user