openstamanager/modules/emails/actions.php

78 lines
2.7 KiB
PHP
Raw Normal View History

<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'add':
2019-08-26 18:02:05 +02:00
$dbo->insert('em_templates', [
2018-07-19 15:33:32 +02:00
'name' => post('name'),
'id_module' => post('module'),
2019-08-29 10:25:14 +02:00
'id_account' => post('smtp'),
2018-07-19 15:33:32 +02:00
'subject' => post('subject'),
]);
$id_record = $dbo->lastInsertedID();
2018-07-19 17:29:21 +02:00
flash()->info(tr('Aggiunto nuovo template per le email!'));
break;
case 'update':
2019-08-26 18:02:05 +02:00
$dbo->update('em_templates', [
2018-07-19 15:33:32 +02:00
'name' => post('name'),
2019-08-29 10:25:14 +02:00
'id_account' => post('smtp'),
2018-07-19 15:33:32 +02:00
'icon' => post('icon'),
'subject' => post('subject'),
'reply_to' => post('reply_to'),
'cc' => post('cc'),
'bcc' => post('bcc'),
'body' => $_POST['body'], // post('body'),
'read_notify' => post('read_notify'),
2021-12-03 10:39:57 +01:00
'note_aggiuntive' => post('note_aggiuntive'),
], ['id' => $id_record]);
2019-08-29 10:25:14 +02:00
$dbo->sync('em_print_template', ['id_template' => $id_record], ['id_print' => (array) post('prints')]);
$dbo->sync('em_mansioni_template', ['id_template' => $id_record], ['idmansione' => (array) post('idmansioni')]);
2018-07-19 17:29:21 +02:00
flash()->info(tr('Informazioni salvate correttamente!'));
break;
case 'delete':
2019-08-26 18:02:05 +02:00
$dbo->query('UPDATE em_templates SET deleted_at = NOW() WHERE id='.prepare($id_record));
2018-07-19 17:29:21 +02:00
flash()->info(tr('Template delle email eliminato!'));
2021-04-20 16:25:20 +02:00
break;
case 'copy':
$dbo->query('CREATE TEMPORARY TABLE tmp SELECT * FROM em_templates WHERE id= '.prepare($id_record));
$dbo->query('ALTER TABLE tmp DROP id');
$dbo->query('INSERT INTO em_templates SELECT NULL,tmp. * FROM tmp');
$id_record = $dbo->lastInsertedID();
$dbo->query('DROP TEMPORARY TABLE tmp');
$dbo->query('UPDATE em_templates SET name = CONCAT (name, " (copia)") WHERE id = '.prepare($id_record));
flash()->info(tr('Template duplicato correttamente!'));
break;
}