Fix logica creazione fattura e ddt da ordine
This commit is contained in:
parent
08f9d4792b
commit
74c0109175
|
@ -2,7 +2,7 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
if (!in_array($records[0]['stato'], ['Bozza', 'Evaso', 'Fatturato'])) {
|
||||
if (!in_array($records[0]['stato'], ['Evaso', 'Fatturato'])) {
|
||||
echo '
|
||||
<div class="dropdown">
|
||||
<button class="btn btn-info dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
|
||||
|
@ -11,7 +11,7 @@ if (!in_array($records[0]['stato'], ['Bozza', 'Evaso', 'Fatturato'])) {
|
|||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-right">';
|
||||
|
||||
if (in_array($records[0]['stato'], ['Parzialmente evaso'])){
|
||||
if (in_array($records[0]['stato'], ['Bozza', 'Parzialmente evaso'])){
|
||||
echo '
|
||||
<li>
|
||||
<a data-href="'.$rootdir.'/modules/fatture/crea_documento.php?id_module='.$id_module.'&id_record='.$id_record.'&documento=ddt" data-toggle="modal" data-title="'.tr('Crea ddt').'" data-target="#bs-popup"><i class="fa fa-file-o"></i> '.tr('ddt').'
|
||||
|
@ -19,7 +19,7 @@ if (!in_array($records[0]['stato'], ['Bozza', 'Evaso', 'Fatturato'])) {
|
|||
</li>';
|
||||
}
|
||||
|
||||
if (in_array($records[0]['stato'], ['Parzialmente fatturato'])){
|
||||
if (in_array($records[0]['stato'], ['Bozza', 'Parzialmente fatturato'])){
|
||||
echo '
|
||||
<li>
|
||||
<a data-href="'.$rootdir.'/modules/fatture/crea_documento.php?id_module='.$id_module.'&id_record='.$id_record.'&documento=fattura" data-toggle="modal" data-title="'.tr('Crea fattura').'" data-target="#bs-popup"><i class="fa fa-file"></i> '.tr('fattura').'
|
||||
|
|
Loading…
Reference in New Issue