mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-24 04:41:00 +01:00
Bugfix check su FE
This commit is contained in:
parent
066e11cb2b
commit
9bfdf3ee41
@ -370,7 +370,7 @@ class FatturaElettronica
|
||||
$errors = [];
|
||||
|
||||
// Controlli sulla fattura stessa
|
||||
if ($fattura->stato->descrizione != 'Emessa') {
|
||||
if ($fattura->stato->descrizione == 'Bozza') {
|
||||
$missing = [
|
||||
'state' => tr('Stato ("Emessa")'),
|
||||
];
|
||||
@ -451,7 +451,7 @@ class FatturaElettronica
|
||||
$missing = [];
|
||||
if (!empty($data)) {
|
||||
foreach ($fields as $key => $name) {
|
||||
if (empty($data[$key])) {
|
||||
if (empty($data[$key]) && !empty($name)) {
|
||||
$missing[] = $name;
|
||||
}
|
||||
}
|
||||
@ -493,7 +493,7 @@ class FatturaElettronica
|
||||
$missing = [];
|
||||
if (!empty($data)) {
|
||||
foreach ($fields as $key => $name) {
|
||||
if (empty($data[$key])) {
|
||||
if (empty($data[$key]) && !empty($name)) {
|
||||
$missing[] = $name;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user