Atualizando
This commit is contained in:
parent
38c466eee1
commit
81209ea3b6
2 changed files with 2 additions and 2 deletions
|
|
@ -88,7 +88,7 @@ try{
|
|||
$next = $FinancialEntriesValidate->getDescription() . ' - '.($i).'/'.$FinancialEntriesValidate->getDuration();
|
||||
|
||||
/** Gera a referência da movimentação para gravar no boleto */
|
||||
$reference = $Result->financial_movements_id.$Result->reference_client.'-';
|
||||
$reference = $Result->financial_movements_id.((int)$Result->reference_client).'-';
|
||||
|
||||
/** Atualiza a movimentação */
|
||||
$FinancialMovements->SaveMovementBudgets($Result->financial_movements_id,
|
||||
|
|
|
|||
2
vendor/model/FinancialEntries.class.php
vendored
2
vendor/model/FinancialEntries.class.php
vendored
|
|
@ -494,7 +494,7 @@ class FinancialEntries
|
|||
$this->clientBudgetsResult = $this->GetBudgets($this->companiesBudgetsId);
|
||||
|
||||
/** Gera a referência da movimentação para gravar no boleto */
|
||||
$this->reference = $this->lastid.$this->clientBudgetsResult->reference_client.'-'.($i+1);
|
||||
$this->reference = $this->lastid.((int)$this->clientBudgetsResult->reference_client).'-'.($i+1);
|
||||
|
||||
|
||||
/** Consulta SQL */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue