Fix stile
This commit is contained in:
parent
a88065237c
commit
a89786ec80
|
@ -13,7 +13,7 @@ trait MorphTrait
|
|||
|
||||
public function getOriginal()
|
||||
{
|
||||
if(!isset($this->original_model) && !empty($this->original_type)) {
|
||||
if (!isset($this->original_model) && !empty($this->original_type)) {
|
||||
$class = $this->original_type;
|
||||
|
||||
$this->original_model = $class::find($this->original_id);
|
||||
|
|
|
@ -118,31 +118,31 @@ switch (post('op')) {
|
|||
if ($stato_fe && empty($checks)) {
|
||||
try {
|
||||
$fattura_pa = new FatturaElettronica($id_record);
|
||||
$file = $fattura_pa->save(DOCROOT . '/' . FatturaElettronica::getDirectory());
|
||||
$file = $fattura_pa->save(DOCROOT.'/'.FatturaElettronica::getDirectory());
|
||||
|
||||
flash()->info(tr('Fattura elettronica generata correttamente!'));
|
||||
|
||||
if (!$fattura_pa->isValid()) {
|
||||
$errors = $fattura_pa->getErrors();
|
||||
|
||||
flash()->warning(tr('La fattura elettronica potrebbe avere delle irregolarità!') . ' ' . tr('Controllare i seguenti campi: _LIST_', [
|
||||
flash()->warning(tr('La fattura elettronica potrebbe avere delle irregolarità!').' '.tr('Controllare i seguenti campi: _LIST_', [
|
||||
'_LIST_' => implode(', ', $errors),
|
||||
]) . '.');
|
||||
]).'.');
|
||||
}
|
||||
} catch (UnexpectedValueException $e) {
|
||||
}
|
||||
} elseif (!empty($checks)) {
|
||||
$message = tr('La fattura elettronica non è stata generata a causa di alcune informazioni mancanti') . ':';
|
||||
$message = tr('La fattura elettronica non è stata generata a causa di alcune informazioni mancanti').':';
|
||||
|
||||
foreach ($checks as $check) {
|
||||
$message .= '
|
||||
<p><b>' . $check['name'] . ' ' . $check['link'] . '</b></p>
|
||||
<p><b>'.$check['name'].' '.$check['link'].'</b></p>
|
||||
<ul>';
|
||||
|
||||
foreach ($check['errors'] as $error) {
|
||||
if (!empty($error)) {
|
||||
$message .= '
|
||||
<li>' . $error . '</li>';
|
||||
<li>'.$error.'</li>';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -154,7 +154,6 @@ switch (post('op')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
aggiorna_sedi_movimenti('documenti', $id_record);
|
||||
|
||||
flash()->info(tr('Fattura modificata correttamente!'));
|
||||
|
|
Loading…
Reference in New Issue