2018-12-14 12:50:44 +01:00
INSERT INTO ` zz_plugins ` ( ` id ` , ` name ` , ` title ` , ` idmodule_from ` , ` idmodule_to ` , ` position ` , ` directory ` , ` options ` ) VALUES
2018-12-14 14:52:30 +01:00
( NULL , ' Ricevute FE ' , ' Ricevute FE ' , ( SELECT ` id ` FROM ` zz_modules ` WHERE ` name ` = ' Fatture di vendita ' ) , ( SELECT ` id ` FROM ` zz_modules ` WHERE ` name ` = ' Fatture di vendita ' ) , ' tab_main ' , ' receiptFE ' , ' custom ' ) ;
2018-12-14 12:58:40 +01:00
UPDATE ` fe_stati_documento ` SET ` icon ` = ' fa fa-check text-success ' WHERE ` codice ` = ' ACK ' ;
2018-12-19 23:08:54 +01:00
-- Introduzione del flag split payment
2018-12-23 16:16:59 +01:00
ALTER TABLE ` an_anagrafiche ` ADD ` split_payment ` BOOLEAN NOT NULL DEFAULT FALSE AFTER ` codice_destinatario ` ;
-- Prezzo di acquisto in Fatture di vendita e Preventivi
ALTER TABLE ` co_righe_documenti ` ADD ` prezzo_unitario_acquisto ` DECIMAL ( 12 , 4 ) NOT NULL AFTER ` descrizione ` ;
ALTER TABLE ` co_righe_preventivi ` ADD ` prezzo_unitario_acquisto ` DECIMAL ( 12 , 4 ) NOT NULL AFTER ` descrizione ` ;
2018-12-27 16:22:20 +01:00
2018-12-27 19:20:30 +01:00
-- Uniformati codici con standard SDI e aggiunta 2 stati mancanti
UPDATE ` fe_stati_documento ` SET ` codice ` = ' EC01 ' WHERE ` codice ` = ' ACK ' ;
UPDATE ` fe_stati_documento ` SET ` codice ` = ' EC02 ' , ` descrizione ` = ' Rifiutata ' WHERE ` codice ` = ' REF ' ;
UPDATE ` fe_stati_documento ` SET ` codice ` = ' RC ' , ` descrizione ` = ' Consegnata ' WHERE ` codice ` = ' SENT ' ;
INSERT INTO ` fe_stati_documento ` ( ` codice ` , ` descrizione ` , ` icon ` ) VALUES
( ' MC ' , ' Mancata consegna ' , ' fa fa-exclamation-circle text-danger ' ) ,
( ' DT ' , ' Decorrenza termini ' , ' fa fa-calendar-times-o text-danger ' ) ,
( ' NS ' , ' Scartata ' , ' fa fa-times text-danger ' ) ;
2018-12-27 23:07:19 +01:00
-- ssl_no_verify
2018-12-28 18:03:38 +01:00
ALTER TABLE ` zz_smtps ` ADD ` ssl_no_verify ` BOOLEAN NOT NULL DEFAULT FALSE AFTER ` encryption ` ;
-- Introduzione del flag split payment per documenti
ALTER TABLE ` co_documenti ` ADD ` split_payment ` BOOLEAN NOT NULL DEFAULT FALSE AFTER ` bollo ` ;