Checkstyle
This commit is contained in:
parent
e2e51ecc30
commit
cf68414b21
@ -31,8 +31,7 @@ if ($conf->esaeb->enabled) require_once(DOL_DOCUMENT_ROOT.'/esaeb/class/esaeb19.
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class BonPrelevement
|
* Class to manage withdrawal receipts
|
||||||
* \brief Classe permettant la gestion des bons de prelevements
|
|
||||||
*/
|
*/
|
||||||
class BonPrelevement extends CommonObject
|
class BonPrelevement extends CommonObject
|
||||||
{
|
{
|
||||||
@ -1173,11 +1172,11 @@ class BonPrelevement extends CommonObject
|
|||||||
|
|
||||||
$result = 0;
|
$result = 0;
|
||||||
|
|
||||||
dol_syslog("BonPrelevement::Generate build file ".$this->filename);
|
dol_syslog(get_class($this)."::Generate build file ".$this->filename);
|
||||||
|
|
||||||
$this->file = fopen($this->filename,"w");
|
$this->file = fopen($this->filename,"w");
|
||||||
|
|
||||||
//Build file for Spain
|
// Build file for Spain
|
||||||
if ($mysoc->country_code=='ES')
|
if ($mysoc->country_code=='ES')
|
||||||
{
|
{
|
||||||
if ($conf->esaeb->enabled)
|
if ($conf->esaeb->enabled)
|
||||||
@ -1210,14 +1209,14 @@ class BonPrelevement extends CommonObject
|
|||||||
|
|
||||||
$esaeb19->agregaRecibo(
|
$esaeb19->agregaRecibo(
|
||||||
$idOrdenante,
|
$idOrdenante,
|
||||||
"idcliente".$i+1,
|
"idcliente".$i+1,
|
||||||
$obj->client_nom,
|
$obj->client_nom,
|
||||||
$obj->code_banque,
|
$obj->code_banque,
|
||||||
$obj->code_guichet,
|
$obj->code_guichet,
|
||||||
$obj->cle_rib,
|
$obj->cle_rib,
|
||||||
$obj->number,
|
$obj->number,
|
||||||
$obj->amount,
|
$obj->amount,
|
||||||
"Fra.".$obj->facnumber." ".$obj->amount
|
"Fra.".$obj->facnumber." ".$obj->amount
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->total = $this->total + $obj->amount;
|
$this->total = $this->total + $obj->amount;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user