mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-25 06:55:05 +01:00
Aggiunta colonna Codice in Anagrafiche
Fix messaggi / link presentazioni bancarie
This commit is contained in:
parent
3c499123cb
commit
e94495b3e7
@ -8,6 +8,16 @@ if (!empty($records)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($banca_azienda)) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i>
|
||||
'.tr("La banca dell'azienda non è definita o non ha impostati i campi Codice IBAN e BIC").'.
|
||||
'.Modules::link('Banche', $azienda->id, tr('Imposta'), null, null).'
|
||||
</div>';
|
||||
}
|
||||
|
||||
|
||||
echo '
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
@ -21,7 +31,7 @@ echo '
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-right">
|
||||
<button type="button" class="btn btn-warning" onclick="esporta(this)">
|
||||
<button type="button" class="btn btn-primary '.(!empty($banca_azienda) ? '' : 'disabled').'" onclick="esporta(this)">
|
||||
<i class="fa fa-download"></i> '.tr('Esporta').'
|
||||
</button>
|
||||
</div>
|
||||
@ -38,7 +48,7 @@ function getRecords() {
|
||||
function esporta(button) {
|
||||
let records = getRecords();
|
||||
if (!records.length) {
|
||||
swal("'.tr('Errore').'", "'.tr('Selezione assente!').'", "error");
|
||||
swal("'.tr('Errore').'", "'.tr('Selezionare almeno una scadenza.').'", "error");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ $(document).ready(function () {
|
||||
$("#pulsanti .pull-right").hide();
|
||||
})
|
||||
</script>
|
||||
<p>'.tr('Riepilogo di esportazione per i pagamenti ai fornitori').'.</p>';
|
||||
<p>'.tr('Riepilogo di esportazione dei pagamenti').'.</p>';
|
||||
|
||||
// Azienda predefinita
|
||||
$azienda = Anagrafica::find(setting('Azienda predefinita'));
|
||||
@ -35,10 +35,8 @@ if (empty($banca_azienda)) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i>
|
||||
'.tr("L'anagrafica Azienda non ha impostati i campi Codice IBAN e BIC per l'esecuzione dei pagamenti").'.
|
||||
|
||||
'.Modules::link('Anagrafiche', $azienda->id, tr('Imposta'), null, 'class="btn btn-warning pull-right"').'
|
||||
<div class="clearfix"></div>
|
||||
'.tr("La banca dell'azienda non è definita o non ha impostati i campi Codice IBAN e BIC").'.
|
||||
'.Modules::link('Banche', $azienda->id, tr('Imposta'), null, null).'
|
||||
</div>';
|
||||
}
|
||||
|
||||
|
@ -22,3 +22,7 @@ INSERT INTO `zz_settings` (`id`, `nome`, `valore`, `tipo`, `editable`, `sezione`
|
||||
|
||||
-- Aggiunta impostazione per riportare nei documenti tutti i riferimenti collegati
|
||||
INSERT INTO `zz_settings` (`id`, `nome`, `valore`, `tipo`, `editable`, `sezione`, `order`, `help`) VALUES (NULL, 'Mantieni riferimenti tra tutti i documenti collegati', '1', 'boolean', '1', 'Generali', '19', 'Permette l''aggiunta dei riferimenti di tutti i documenti collegati');
|
||||
|
||||
-- Aggiunta colonna Codice in Anagrafiche
|
||||
INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Anagrafiche'), 'Codice', 'an_anagrafiche.codice', 1, 1, 0, 0, '', '', 0, 0, 1);
|
Loading…
Reference in New Issue
Block a user