mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-23 05:54:03 +01:00
Supporto url API remota OSMCloud
This commit is contained in:
parent
7e99578ae0
commit
038c406716
@ -50,8 +50,10 @@ class Connection
|
||||
protected static function getClient()
|
||||
{
|
||||
if (!isset(self::$client)) {
|
||||
$url = setting('OSMCloud Services API URL');
|
||||
|
||||
self::$client = new Client([
|
||||
'base_uri' => 'https://services.osmcloud.it/api/',
|
||||
'base_uri' => $url,
|
||||
'verify' => false,
|
||||
]);
|
||||
}
|
||||
|
@ -237,3 +237,7 @@ UPDATE `fe_stati_documento` SET `icon`='fa fa-file-code-o text-info' WHERE `codi
|
||||
-- Impostazioni per i riferimenti ai documenti
|
||||
INSERT INTO `zz_settings` (`id`, `nome`, `valore`, `tipo`, `editable`, `sezione`, `order`) VALUES (NULL, 'Riferimento dei documenti nelle stampe', '1', 'boolean', 1, 'Generali', 13);
|
||||
INSERT INTO `zz_settings` (`id`, `nome`, `valore`, `tipo`, `editable`, `sezione`, `order`) VALUES (NULL, 'Riferimento dei documenti in Fattura Elettronica', '1', 'boolean', 1, 'Generali', 14);
|
||||
|
||||
-- Supporto alla personalizzazione dell'API remota OSMCloud
|
||||
INSERT INTO `zz_settings` (`id`, `nome`, `valore`, `tipo`, `editable`, `sezione`, `order`) VALUES
|
||||
(NULL, 'OSMCloud Services API URL', 'https://services.osmcloud.it/api/', 'string', 0, 'Fatturazione Elettronica', 11);
|
||||
|
Loading…
Reference in New Issue
Block a user