mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-10 06:35:54 +01:00
fix: utilizzo modulo ordini se modulo Fatture è disabilitato
This commit is contained in:
parent
bea5fef2db
commit
b79eb67513
@ -210,7 +210,8 @@ switch (post('op')) {
|
||||
break;
|
||||
}
|
||||
if ($module->getTranslation('title') == 'Ordini cliente') {
|
||||
$module_fatture = Module::find($id_modulo_fatture)->getTranslation('title');
|
||||
// Fix per modulo Fatture di vendita disabilitato
|
||||
$module_fatture = $id_modulo_fatture ? Module::find($id_modulo_fatture)->getTranslation('title') : '';
|
||||
$module_fatture ? strtolower((string) $module_fatture) : '';
|
||||
$operations['crea_fattura'] = [
|
||||
'text' => '<span><i class="fa fa-file-code-o"></i> '.tr('Fattura _TYPE_', ['_TYPE_' => strtolower((string) $module->getTranslation('title'))]),
|
||||
|
Loading…
Reference in New Issue
Block a user