Compare commits
6 Commits
1dbe9557ad
...
019cb3bf10
Author | SHA1 | Date |
---|---|---|
Matteo | 019cb3bf10 | |
Dasc3er | a4ab015a2a | |
Dasc3er | 7957c6f3c7 | |
Dasc3er | 9a9b9e8df2 | |
Dasc3er | bd0c4db667 | |
Dasc3er | 96ccc3b959 |
|
@ -40,7 +40,7 @@ echo '
|
|||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Valore').'</th>
|
||||
<th width="10%">#</th>
|
||||
<th width="10%" class="text-center">#</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ include_once __DIR__.'/../../core.php';
|
|||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
{[ "type": "select", "label": "<?php echo tr('Conto predefinito'); ?>", "name": "id_pianodeiconti3", "value": "$id_pianodeiconti3$", "values": "query=SELECT id, descrizione FROM co_pianodeiconti3 WHERE idpianodeiconti2 = 1" ]}
|
||||
{[ "type": "select", "label": "<?php echo tr('Conto predefinito'); ?>", "name": "id_pianodeiconti3", "value": "$id_pianodeiconti3$", "ajax-source": "conti" ]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -32,11 +32,18 @@ use Plugins\PianificazioneInterventi\Promemoria;
|
|||
switch (post('op')) {
|
||||
case 'add':
|
||||
$idanagrafica = post('idanagrafica');
|
||||
$nome = post('nome');
|
||||
|
||||
$anagrafica = Anagrafica::find($idanagrafica);
|
||||
|
||||
$contratto = Contratto::build($anagrafica, $nome);
|
||||
// Generazione Contratto
|
||||
$contratto = Contratto::build($anagrafica, post('nome'));
|
||||
|
||||
// Salvataggio informazioni sul rinnovo
|
||||
$contratto->rinnovabile = post('rinnovabile');
|
||||
$contratto->rinnovo_automatico = post('rinnovo_automatico');
|
||||
$contratto->giorni_preavviso_rinnovo = post('giorni_preavviso_rinnovo');
|
||||
$contratto->ore_preavviso_rinnovo = post('ore_preavviso_rinnovo');
|
||||
$contratto->save();
|
||||
|
||||
$id_record = $contratto->id;
|
||||
|
||||
flash()->info(tr('Aggiunto contratto numero _NUM_!', [
|
||||
|
|
|
@ -21,7 +21,8 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
$id_anagrafica = !empty(get('idanagrafica')) ? get('idanagrafica') : $user['idanagrafica'];
|
||||
|
||||
?><form action="" method="post" id="add-form">
|
||||
echo '
|
||||
<form action="" method="post" id="add-form">
|
||||
<input type="hidden" name="op" value="add">
|
||||
<input type="hidden" name="backto" value="record-edit">
|
||||
|
||||
|
@ -30,18 +31,57 @@ $id_anagrafica = !empty(get('idanagrafica')) ? get('idanagrafica') : $user['idan
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "nome", "required": 1 ]}
|
||||
{[ "type": "text", "label": "'.tr('Nome').'", "name": "nome", "required": 1 ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
{[ "type": "select", "label": "<?php echo tr('Cliente'); ?>", "name": "idanagrafica", "required": 1, "value": "<?php echo $id_anagrafica; ?>", "ajax-source": "clienti", "icon-after": "add|<?php echo Modules::get('Anagrafiche')['id']; ?>|tipoanagrafica=Cliente&readonly_tipo=1" ]}
|
||||
{[ "type": "select", "label": "'.tr('Cliente').'", "name": "idanagrafica", "required": 1, "value": "'.$id_anagrafica.'", "ajax-source": "clienti", "icon-after": "add|'.Modules::get('Anagrafiche')['id'].'|tipoanagrafica=Cliente&readonly_tipo=1" ]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Informazioni rinnovo -->
|
||||
<div class="box box-primary">
|
||||
<div class="box-header">
|
||||
<h3 class="box-title">'.tr('Informazioni per rinnovo').'</h3>
|
||||
</div>
|
||||
|
||||
<div class="box-body">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
{[ "type": "checkbox", "label": "'.tr('Rinnovabile').'", "name": "rinnovabile", "id": "rinnovabile_add", "help": "'.tr('Il contratto è rinnovabile?').'" ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
{[ "type": "checkbox", "label": "'.tr('Rinnovo automatico').'", "name": "rinnovo_automatico", "id": "rinnovo_automatico_add", "help": "'.tr('Il contratto è da rinnovare automaticamente alla scadenza').'", "disabled": 1 ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
{[ "type": "number", "label": "'.tr('Preavviso per rinnovo').'", "name": "giorni_preavviso_rinnovo", "id": "giorni_preavviso_rinnovo_add", "decimals": "2", "icon-after": "giorni", "disabled": 1 ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
{[ "type": "number", "label": "'.tr('Ore rimanenti rinnovo').'", "name": "ore_preavviso_rinnovo", "id": "ore_preavviso_rinnovo_add", "decimals": "2", "icon-after": "ore", "disabled": 1, "help": "'.tr('Ore residue nel contratto prima di visualizzare una avviso per un eventuale rinnovo anticipato.').'" ]}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- PULSANTI -->
|
||||
<div class="row">
|
||||
<div class="col-md-12 text-right">
|
||||
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
|
||||
<button type="submit" class="btn btn-primary">
|
||||
<i class="fa fa-plus"></i> '.tr('Aggiungi').'
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
input("rinnovabile").on("change", function() {
|
||||
const disabled = parseInt($(this).val()) === 0;
|
||||
|
||||
input("giorni_preavviso_rinnovo").setDisabled(disabled);
|
||||
input("ore_preavviso_rinnovo").setDisabled(disabled);
|
||||
input("rinnovo_automatico").setDisabled(disabled);
|
||||
});
|
||||
</script>';
|
||||
|
|
|
@ -104,6 +104,8 @@ switch (post('op')) {
|
|||
if ($copia->isArticolo()) {
|
||||
$copia->serials = $riga->serials;
|
||||
}
|
||||
|
||||
$copia->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -493,17 +493,6 @@ if (!empty($elementi)) {
|
|||
echo '
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#rinnovabile").click(function() {
|
||||
if ($(this).is(":checked")){
|
||||
input("giorni_preavviso_rinnovo").enable();
|
||||
input("rinnovo_automatico").enable();
|
||||
|
||||
}else{
|
||||
input("giorni_preavviso_rinnovo").disable();
|
||||
input("rinnovo_automatico").disable();
|
||||
}
|
||||
});
|
||||
|
||||
$("#data_conclusione").on("dp.change", function (e) {
|
||||
let data_accettazione = $("#data_accettazione");
|
||||
data_accettazione.data("DateTimePicker").maxDate(e.date);
|
||||
|
@ -514,4 +503,3 @@ $(document).ready(function() {
|
|||
});
|
||||
});
|
||||
</script>';
|
||||
?>
|
||||
|
|
|
@ -36,6 +36,11 @@ switch ($resource) {
|
|||
LEFT JOIN co_banche banca_acquisti ON co_pagamenti.idconto_acquisti = banca_acquisti.id_pianodeiconti3
|
||||
|where| GROUP BY co_pagamenti.descrizione ORDER BY co_pagamenti.descrizione ASC";
|
||||
|
||||
// Filtri per banche dell'Azienda
|
||||
$id_azienda = setting('Azienda predefinita');
|
||||
$where[] = 'banca_vendite.id_anagrafica = '.prepare($id_azienda);
|
||||
$where[] = 'banca_acquisti.id_anagrafica = '.prepare($id_azienda);
|
||||
|
||||
foreach ($elements as $element) {
|
||||
$filter[] = 'co_pagamenti.id = '.prepare($element);
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
{[ "type": "select", "label": "<?php echo tr('Conto predefinito per le vendite'); ?>", "name": "idconto_vendite", "value": "$idconto_vendite$", "ajax-source": "conti" ]}
|
||||
{[ "type": "select", "label": "<?php echo tr('Conto predefinito per le vendite'); ?>", "name": "idconto_vendite", "value": "$idconto_vendite$", "ajax-source": "conti" ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
|
|
|
@ -27,14 +27,13 @@ echo '
|
|||
<input type="hidden" name="backto" value="record-edit">
|
||||
<input type="hidden" name="op" value="update_rinnovo">
|
||||
<input type="hidden" name="id_record" value="'.$id_record.'">
|
||||
|
||||
|
||||
<div class="panel panel-primary">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">'.tr('Informazioni per rinnovo').'</h3>
|
||||
</div>
|
||||
|
||||
<div class="panel-body">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
{[ "type": "checkbox", "label": "'.tr('Rinnovabile').'", "name": "rinnovabile", "help": "'.tr('Il contratto è rinnovabile?').'", "value": "$rinnovabile$" ]}
|
||||
|
@ -44,7 +43,7 @@ echo '
|
|||
{[ "type": "checkbox", "label": "'.tr('Rinnovo automatico').'", "name": "rinnovo_automatico", "help": "'.tr('Il contratto è da rinnovare automaticamente alla scadenza').'", "value": "$rinnovo_automatico$", "disabled": '.($record['rinnovabile'] ? 0 : 1).' ]}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="col-md-3">
|
||||
{[ "type": "number", "label": "'.tr('Preavviso per rinnovo').'", "name": "giorni_preavviso_rinnovo", "decimals": "2", "value": "$giorni_preavviso_rinnovo$", "icon-after": "giorni", "disabled": '.($record['rinnovabile'] ? 0 : 1).' ]}
|
||||
</div>
|
||||
|
@ -62,13 +61,17 @@ echo '
|
|||
</form>';
|
||||
|
||||
echo '
|
||||
<table class="table table-hover table-condensed table-bordered table-striped">
|
||||
<table class="table table-hover table-condensed table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
<th width="100">'.tr('Totale').'</th>
|
||||
<th width="150">'.tr('Data inizio').'</th>
|
||||
<th width="150">'.tr('Data conclusione').'</th>
|
||||
</tr>';
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>';
|
||||
|
||||
while (!empty($id_contratto_precedente)) {
|
||||
$rs = $dbo->fetchArray('SELECT nome, numero, data_accettazione, data_conclusione, budget, idcontratto_prev FROM co_contratti WHERE id='.prepare($id_contratto_precedente));
|
||||
|
@ -89,4 +92,15 @@ while (!empty($id_contratto_precedente)) {
|
|||
}
|
||||
|
||||
echo '
|
||||
</table>';
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<script type="text/javascript">
|
||||
input("rinnovabile").on("change", function() {
|
||||
const disabled = parseInt($(this).val()) === 0;
|
||||
|
||||
input("giorni_preavviso_rinnovo").setDisabled(disabled);
|
||||
input("ore_preavviso_rinnovo").setDisabled(disabled);
|
||||
input("rinnovo_automatico").setDisabled(disabled);
|
||||
});
|
||||
</script>';
|
||||
|
|
|
@ -63,79 +63,3 @@ ALTER TABLE `my_componenti` ADD FOREIGN KEY (`id_intervento`) REFERENCES `in_int
|
|||
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'), 'Referenti', '(SELECT GROUP_CONCAT(nome SEPARATOR '', '') FROM an_referenti WHERE an_referenti .idanagrafica = an_anagrafiche.idanagrafica)', 11, 0, 0, 0, '', '', 1, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE name = 'Anagrafiche'), 'Sedi', '(SELECT GROUP_CONCAT(nomesede SEPARATOR '', '') FROM an_sedi WHERE an_sedi.idanagrafica = an_anagrafiche.idanagrafica)', 10, 0, 0, 0, '', '', 1, 0, 1);
|
||||
|
||||
-- Miglioramento supporto autenticazione OAuth 2
|
||||
ALTER TABLE `em_accounts` ADD `oauth2_config` TEXT;
|
||||
|
||||
-- Aggiunto sistema di gestione Combinazioni Articoli
|
||||
CREATE TABLE IF NOT EXISTS `mg_attributi` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`nome` varchar(255) NOT NULL,
|
||||
`titolo` varchar(255) NOT NULL,
|
||||
`ordine` int(11) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_valori_attributi` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`id_attributo` int(11) NOT NULL,
|
||||
`nome` varchar(255) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY(`id`),
|
||||
FOREIGN KEY (`id_attributo`) REFERENCES `mg_attributi`(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_combinazioni` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`codice` varchar(255) NOT NULL,
|
||||
`nome` varchar(255) NOT NULL,
|
||||
`id_categoria` int(11),
|
||||
`id_sottocategoria` int(11),
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY(`id`),
|
||||
FOREIGN KEY (`id_categoria`) REFERENCES `mg_categorie`(`id`) ON DELETE SET NULL,
|
||||
FOREIGN KEY (`id_sottocategoria`) REFERENCES `mg_categorie`(`id`) ON DELETE SET NULL
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_attributo_combinazione` (
|
||||
`id_combinazione` int(11) NOT NULL,
|
||||
`id_attributo` int(11) NOT NULL,
|
||||
`order` int(11) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY(`id_attributo`, `id_combinazione`),
|
||||
FOREIGN KEY (`id_attributo`) REFERENCES `mg_attributi`(`id`),
|
||||
FOREIGN KEY (`id_combinazione`) REFERENCES `mg_combinazioni`(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_articolo_attributo` (
|
||||
`id_articolo` int(11) NOT NULL,
|
||||
`id_valore` int(11) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (`id_articolo`) REFERENCES `mg_articoli`(`id`),
|
||||
FOREIGN KEY (`id_valore`) REFERENCES `mg_valori_attributi`(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
ALTER TABLE mg_articoli ADD `id_combinazione` int(11), ADD FOREIGN KEY (`id_combinazione`) REFERENCES `mg_combinazioni`(`id`);
|
||||
|
||||
INSERT INTO `zz_modules` (`id`, `name`, `title`, `directory`, `options`, `options2`, `icon`, `version`, `compatibility`, `order`, `parent`, `default`, `enabled`) VALUES
|
||||
(NULL, 'Attributi Combinazioni', 'Attributi Combinazioni', 'attributi_combinazioni', 'SELECT |select| FROM mg_attributi WHERE mg_attributi.deleted_at IS NULL AND 1=1 HAVING 2=2', NULL, 'fa fa-angle-right', '1.0', '2.*', '100', '20', '1', '1'),
|
||||
(NULL, 'Combinazioni', 'Combinazioni', 'combinazioni_articoli', 'SELECT |select| FROM mg_combinazioni WHERE mg_combinazioni.deleted_at IS NULL AND 1=1 HAVING 2=2', NULL, 'fa fa-angle-right', '1.0', '2.*', '100', '20', '1', '1');
|
||||
|
||||
INSERT INTO `zz_plugins` (`id`, `name`, `title`, `idmodule_from`, `idmodule_to`, `position`, `directory`, `options`) VALUES
|
||||
(NULL, 'Varianti Articolo', 'Varianti Articolo', (SELECT `id` FROM `zz_modules` WHERE `name`='Articoli'), (SELECT `id` FROM `zz_modules` WHERE `name`='Articoli'), 'tab', 'varianti_articolo', 'custom');
|
||||
|
||||
-- Aggiunta colonne per il nuovo modulo Attributi Combinazioni
|
||||
INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `visible`, `format`, `default`) VALUES
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Attributi Combinazioni'), 'id', 'mg_attributi.id', 1, 0, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Attributi Combinazioni'), 'Nome', 'mg_attributi.nome', 2, 1, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Combinazioni'), 'id', 'mg_combinazioni.id', 1, 0, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Combinazioni'), 'Nome', 'mg_combinazioni.nome', 2, 1, 0, 1);
|
||||
|
|
|
@ -0,0 +1,81 @@
|
|||
-- Miglioramento supporto autenticazione OAuth 2
|
||||
ALTER TABLE `em_accounts` ADD `oauth2_config` TEXT;
|
||||
|
||||
-- Aggiunto sistema di gestione Combinazioni Articoli
|
||||
CREATE TABLE IF NOT EXISTS `mg_attributi` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`nome` varchar(255) NOT NULL,
|
||||
`titolo` varchar(255) NOT NULL,
|
||||
`ordine` int(11) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_valori_attributi` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`id_attributo` int(11) NOT NULL,
|
||||
`nome` varchar(255) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY(`id`),
|
||||
FOREIGN KEY (`id_attributo`) REFERENCES `mg_attributi`(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_combinazioni` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`codice` varchar(255) NOT NULL,
|
||||
`nome` varchar(255) NOT NULL,
|
||||
`id_categoria` int(11),
|
||||
`id_sottocategoria` int(11),
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY(`id`),
|
||||
FOREIGN KEY (`id_categoria`) REFERENCES `mg_categorie`(`id`) ON DELETE SET NULL,
|
||||
FOREIGN KEY (`id_sottocategoria`) REFERENCES `mg_categorie`(`id`) ON DELETE SET NULL
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_attributo_combinazione` (
|
||||
`id_combinazione` int(11) NOT NULL,
|
||||
`id_attributo` int(11) NOT NULL,
|
||||
`order` int(11) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY(`id_attributo`, `id_combinazione`),
|
||||
FOREIGN KEY (`id_attributo`) REFERENCES `mg_attributi`(`id`),
|
||||
FOREIGN KEY (`id_combinazione`) REFERENCES `mg_combinazioni`(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `mg_articolo_attributo` (
|
||||
`id_articolo` int(11) NOT NULL,
|
||||
`id_valore` int(11) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (`id_articolo`) REFERENCES `mg_articoli`(`id`),
|
||||
FOREIGN KEY (`id_valore`) REFERENCES `mg_valori_attributi`(`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
ALTER TABLE mg_articoli ADD `id_combinazione` int(11), ADD FOREIGN KEY (`id_combinazione`) REFERENCES `mg_combinazioni`(`id`);
|
||||
|
||||
INSERT INTO `zz_modules` (`id`, `name`, `title`, `directory`, `options`, `options2`, `icon`, `version`, `compatibility`, `order`, `parent`, `default`, `enabled`) VALUES
|
||||
(NULL, 'Attributi Combinazioni', 'Attributi Combinazioni', 'attributi_combinazioni', 'SELECT |select| FROM mg_attributi WHERE mg_attributi.deleted_at IS NULL AND 1=1 HAVING 2=2', NULL, 'fa fa-angle-right', '1.0', '2.*', '100', '20', '1', '1'),
|
||||
(NULL, 'Combinazioni', 'Combinazioni', 'combinazioni_articoli', 'SELECT |select| FROM mg_combinazioni WHERE mg_combinazioni.deleted_at IS NULL AND 1=1 HAVING 2=2', NULL, 'fa fa-angle-right', '1.0', '2.*', '100', '20', '1', '1');
|
||||
|
||||
INSERT INTO `zz_plugins` (`id`, `name`, `title`, `idmodule_from`, `idmodule_to`, `position`, `directory`, `options`) VALUES
|
||||
(NULL, 'Varianti Articolo', 'Varianti Articolo', (SELECT `id` FROM `zz_modules` WHERE `name`='Articoli'), (SELECT `id` FROM `zz_modules` WHERE `name`='Articoli'), 'tab', 'varianti_articolo', 'custom');
|
||||
|
||||
-- Aggiunta colonne per il nuovo modulo Attributi Combinazioni
|
||||
INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `visible`, `format`, `default`) VALUES
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Attributi Combinazioni'), 'id', 'mg_attributi.id', 1, 0, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Attributi Combinazioni'), 'Nome', 'mg_attributi.nome', 2, 1, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Combinazioni'), 'id', 'mg_combinazioni.id', 1, 0, 0, 1),
|
||||
(NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Combinazioni'), 'Nome', 'mg_combinazioni.nome', 2, 1, 0, 1);
|
||||
|
||||
-- Introduzione della Banca nelle tabelle Fatture
|
||||
INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, `default`) VALUES
|
||||
((SELECT `id` FROM `zz_modules` WHERE `name` = 'Fatture di vendita'), 'Banca', '(SELECT CONCAT(co_banche.nome, '' - '' , co_banche.iban) AS descrizione FROM co_banche WHERE co_banche.id = id_banca_azienda)', 6, 1, 0, 1),
|
||||
((SELECT `id` FROM `zz_modules` WHERE `name` = 'Fatture di acquisto'), 'Banca',
|
||||
'(SELECT CONCAT(co_banche.nome, '' - '' , co_banche.iban) FROM co_banche WHERE co_banche.id = id_banca_azienda)', 6, 1, 0, 1);
|
Loading…
Reference in New Issue