Merge branch '10.0' of git@github.com:Dolibarr/dolibarr.git into develop

Conflicts:
	htdocs/core/menus/standard/eldy.lib.php
This commit is contained in:
Laurent Destailleur 2019-09-15 15:17:38 +02:00
commit 6bfba0b731
2 changed files with 16 additions and 14 deletions

View File

@ -1376,7 +1376,7 @@ if ($resql)
// Debit // Debit
if (! empty($arrayfields['b.debit']['checked'])) if (! empty($arrayfields['b.debit']['checked']))
{ {
print '<td class="right">'; print '<td class="nowrap right">';
if ($objp->amount < 0) if ($objp->amount < 0)
{ {
print price($objp->amount * -1); print price($objp->amount * -1);
@ -1390,7 +1390,7 @@ if ($resql)
// Credit // Credit
if (! empty($arrayfields['b.credit']['checked'])) if (! empty($arrayfields['b.credit']['checked']))
{ {
print '<td class="right">'; print '<td class="nowrap right">';
if ($objp->amount > 0) if ($objp->amount > 0)
{ {
print price($objp->amount); print price($objp->amount);

View File

@ -7624,6 +7624,7 @@ abstract class CommonObject
} }
// Delete cascade first // Delete cascade first
if (! empty($this->childtablesoncascade)) {
foreach($this->childtablesoncascade as $table) foreach($this->childtablesoncascade as $table)
{ {
$sql = 'DELETE FROM '.MAIN_DB_PREFIX.$table.' WHERE '.$this->fk_element.' = '.$this->id; $sql = 'DELETE FROM '.MAIN_DB_PREFIX.$table.' WHERE '.$this->fk_element.' = '.$this->id;
@ -7635,6 +7636,7 @@ abstract class CommonObject
$this->db->rollback(); $this->db->rollback();
return -1; return -1;
} }
}
} }
if (! $error) { if (! $error) {