Merge remote-tracking branch 'origin/3.5' into 3.6
Conflicts: htdocs/compta/facture/class/facture.class.php
This commit is contained in:
commit
1595765ec8
@ -221,6 +221,9 @@ Fix: [ bug #2570 ] [Contacts] Page should not process if ID is invalid
|
|||||||
Fix: [ bug #3268 ] SQL error when accessing thirdparty log page without a socid parameter
|
Fix: [ bug #3268 ] SQL error when accessing thirdparty log page without a socid parameter
|
||||||
Fix: [ bug #3180 ] formObjectOptions hook when editing thirdparty card does not print result
|
Fix: [ bug #3180 ] formObjectOptions hook when editing thirdparty card does not print result
|
||||||
Fix: [ bug #1791 ] Margin menu not available if any Finance module is not enabled
|
Fix: [ bug #1791 ] Margin menu not available if any Finance module is not enabled
|
||||||
|
Fix: [ bug #3310 ] OrderLine::fetch, FactureLigne::fetch and PropaleLigne::fetch do not return anything
|
||||||
|
Fix: [ bug #3206 ] PropaleLigne, OrderLine and FactureLigne given to triggers through update function does not contain all the information
|
||||||
|
Fix: [ bug #3313 ] Error enabling module with PostgreSQL database
|
||||||
|
|
||||||
***** ChangeLog for 3.5.6 compared to 3.5.5 *****
|
***** ChangeLog for 3.5.6 compared to 3.5.5 *****
|
||||||
Fix: Avoid missing class error for fetch_thirdparty method #1973
|
Fix: Avoid missing class error for fetch_thirdparty method #1973
|
||||||
|
|||||||
@ -535,13 +535,14 @@ class Propal extends CommonObject
|
|||||||
$price = $pu - $remise;
|
$price = $pu - $remise;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update line
|
//Fetch current line from the database and then clone the object and set it in $oldline property
|
||||||
$this->line=new PropaleLigne($this->db);
|
$line = new PropaleLigne($this->db);
|
||||||
|
$line->fetch($rowid);
|
||||||
|
|
||||||
// Stock previous line records
|
$staticline = clone $line;
|
||||||
$staticline=new PropaleLigne($this->db);
|
|
||||||
$staticline->fetch($rowid);
|
$line->oldline = $staticline;
|
||||||
$this->line->oldline = $staticline;
|
$this->line = $line;
|
||||||
|
|
||||||
// Reorder if fk_parent_line change
|
// Reorder if fk_parent_line change
|
||||||
if (! empty($fk_parent_line) && ! empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line)
|
if (! empty($fk_parent_line) && ! empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line)
|
||||||
@ -2862,10 +2863,12 @@ class PropaleLigne extends CommonObject
|
|||||||
$this->date_end = $this->db->jdate($objp->date_end);
|
$this->date_end = $this->db->jdate($objp->date_end);
|
||||||
|
|
||||||
$this->db->free($result);
|
$this->db->free($result);
|
||||||
|
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dol_print_error($this->db);
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2403,13 +2403,14 @@ class Commande extends CommonOrder
|
|||||||
$price = ($pu - $remise);
|
$price = ($pu - $remise);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update line
|
//Fetch current line from the database and then clone the object and set it in $oldline property
|
||||||
$this->line=new OrderLine($this->db);
|
$line = new OrderLine($this->db);
|
||||||
|
$line->fetch($rowid);
|
||||||
|
|
||||||
// Stock previous line records
|
$staticline = clone $line;
|
||||||
$staticline=new OrderLine($this->db);
|
|
||||||
$staticline->fetch($rowid);
|
$line->oldline = $staticline;
|
||||||
$this->line->oldline = $staticline;
|
$this->line = $line;
|
||||||
|
|
||||||
// Reorder if fk_parent_line change
|
// Reorder if fk_parent_line change
|
||||||
if (! empty($fk_parent_line) && ! empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line)
|
if (! empty($fk_parent_line) && ! empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line)
|
||||||
@ -3218,10 +3219,12 @@ class OrderLine extends CommonOrderLine
|
|||||||
$this->date_end = $this->db->jdate($objp->date_end);
|
$this->date_end = $this->db->jdate($objp->date_end);
|
||||||
|
|
||||||
$this->db->free($result);
|
$this->db->free($result);
|
||||||
|
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dol_print_error($this->db);
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1133,7 +1133,6 @@ class AccountLine extends CommonObject
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dol_print_error($this->db);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2173,13 +2173,24 @@ class Facture extends CommonInvoice
|
|||||||
$pu_tva = $tabprice[4];
|
$pu_tva = $tabprice[4];
|
||||||
$pu_ttc = $tabprice[5];
|
$pu_ttc = $tabprice[5];
|
||||||
|
|
||||||
// Update line into database
|
// Old properties: $price, $remise (deprecated)
|
||||||
$this->line=new FactureLigne($this->db);
|
$price = $pu;
|
||||||
|
$remise = 0;
|
||||||
|
if ($remise_percent > 0)
|
||||||
|
{
|
||||||
|
$remise = round(($pu * $remise_percent / 100),2);
|
||||||
|
$price = ($pu - $remise);
|
||||||
|
}
|
||||||
|
$price = price2num($price);
|
||||||
|
|
||||||
// Stock previous line records
|
//Fetch current line from the database and then clone the object and set it in $oldline property
|
||||||
$staticline=new FactureLigne($this->db);
|
$line = new FactureLigne($this->db);
|
||||||
$staticline->fetch($rowid);
|
$line->fetch($rowid);
|
||||||
$this->line->oldline = $staticline;
|
|
||||||
|
$staticline = clone $line;
|
||||||
|
|
||||||
|
$line->oldline = $staticline;
|
||||||
|
$this->line = $line;
|
||||||
|
|
||||||
// Reorder if fk_parent_line change
|
// Reorder if fk_parent_line change
|
||||||
if (! empty($fk_parent_line) && ! empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line)
|
if (! empty($fk_parent_line) && ! empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line)
|
||||||
@ -3436,10 +3447,12 @@ class FactureLigne extends CommonInvoiceLine
|
|||||||
$this->product_desc = $objp->product_desc;
|
$this->product_desc = $objp->product_desc;
|
||||||
|
|
||||||
$this->db->free($result);
|
$this->db->free($result);
|
||||||
|
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dol_print_error($this->db);
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1013,7 +1013,6 @@ abstract class DolibarrModules
|
|||||||
|
|
||||||
$this->db->begin();
|
$this->db->begin();
|
||||||
|
|
||||||
//var_dump($this->menu); exit;
|
|
||||||
foreach ($this->menu as $key => $value)
|
foreach ($this->menu as $key => $value)
|
||||||
{
|
{
|
||||||
$menu = new Menubase($this->db);
|
$menu = new Menubase($this->db);
|
||||||
@ -1022,11 +1021,9 @@ abstract class DolibarrModules
|
|||||||
if (! $this->menu[$key]['fk_menu'])
|
if (! $this->menu[$key]['fk_menu'])
|
||||||
{
|
{
|
||||||
$menu->fk_menu=0;
|
$menu->fk_menu=0;
|
||||||
//print 'aaa'.$this->menu[$key]['fk_menu'];
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
//print 'xxx'.$this->menu[$key]['fk_menu'];exit;
|
|
||||||
$foundparent=0;
|
$foundparent=0;
|
||||||
$fk_parent=$this->menu[$key]['fk_menu'];
|
$fk_parent=$this->menu[$key]['fk_menu'];
|
||||||
if (preg_match('/^r=/',$fk_parent)) // old deprecated method
|
if (preg_match('/^r=/',$fk_parent)) // old deprecated method
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user