mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-26 15:54:17 +01:00
Bugfix minori
This commit is contained in:
parent
5c8081878c
commit
c711bcec2b
@ -95,7 +95,7 @@ switch (post('op')) {
|
||||
'rivalsainps' => 0,
|
||||
'ritenutaacconto' => 0,
|
||||
'iva_rivalsainps' => 0,
|
||||
'codice_stato_fe' => post('codice_stato_fe'),
|
||||
'codice_stato_fe' => post('codice_stato_fe') ?: null,
|
||||
], $data), ['id' => $id_record]);
|
||||
|
||||
$query = 'SELECT descrizione FROM co_statidocumento WHERE id='.prepare($idstatodocumento);
|
||||
|
@ -35,7 +35,7 @@ class Connection
|
||||
return !empty(setting('OSMCloud Services API Token'));
|
||||
}
|
||||
|
||||
protected function request($type, $resource, $data = [], $options = [])
|
||||
public static function request($type, $resource, $data = [], $options = [])
|
||||
{
|
||||
$client = static::getClient();
|
||||
|
||||
@ -62,7 +62,7 @@ class Connection
|
||||
return $client->request($type, '', $options);
|
||||
}
|
||||
|
||||
protected function responseBody($response)
|
||||
public static function responseBody($response)
|
||||
{
|
||||
$body = $response->getBody();
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
INSERT INTO `zz_plugins` (`id`, `name`, `title`, `idmodule_from`, `idmodule_to`, `position`, `directory`, `options`) VALUES
|
||||
(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'),
|
||||
(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');
|
||||
|
||||
UPDATE `fe_stati_documento` SET `icon` = 'fa fa-check text-success' WHERE `codice` = 'ACK';
|
||||
|
Loading…
Reference in New Issue
Block a user