also update ttc with global local taxes
This commit is contained in:
parent
3b8f002e4f
commit
46089bb03c
@ -1533,7 +1533,10 @@ abstract class CommonObject
|
|||||||
{
|
{
|
||||||
$objt = $this->db->fetch_object($resqlt);
|
$objt = $this->db->fetch_object($resqlt);
|
||||||
if ($objt->localtax1_type == '7')
|
if ($objt->localtax1_type == '7')
|
||||||
|
{
|
||||||
$this->total_localtax1 += $objt->localtax1;
|
$this->total_localtax1 += $objt->localtax1;
|
||||||
|
$this->total_ttc += $objt->localtax1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($this->total_localtax2 == 0)
|
if ($this->total_localtax2 == 0)
|
||||||
@ -1550,7 +1553,10 @@ abstract class CommonObject
|
|||||||
{
|
{
|
||||||
$objt = $this->db->fetch_object($resqlt);
|
$objt = $this->db->fetch_object($resqlt);
|
||||||
if ($objt->localtax2_type == '7')
|
if ($objt->localtax2_type == '7')
|
||||||
|
{
|
||||||
$this->total_localtax2 += $objt->localtax2;
|
$this->total_localtax2 += $objt->localtax2;
|
||||||
|
$this->total_ttc += $objt->localtax2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user