2020-04-07 16:10:00 +02:00
|
|
|
<?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/>.
|
|
|
|
*/
|
2020-04-07 16:10:00 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
|
|
|
|
// Trovo id_print della stampa
|
2024-03-12 12:31:49 +01:00
|
|
|
$id_print = $dbo->fetchOne('SELECT
|
|
|
|
`zz_prints`.`id`
|
|
|
|
FROM
|
|
|
|
`zz_prints`
|
2024-03-22 15:52:24 +01:00
|
|
|
LEFT JOIN `zz_prints_lang` ON (`zz_prints`.`id` = `zz_prints_lang`.`id_record` AND `zz_prints_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).')
|
2024-03-12 12:31:49 +01:00
|
|
|
INNER JOIN `zz_modules` ON `zz_prints`.`id_module`=`zz_modules`.`id`
|
2024-03-22 15:52:24 +01:00
|
|
|
LEFT JOIN `zz_modules_lang` ON (`zz_modules`.`id` = `zz_modules_lang`.`id_record` AND `zz_modules_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).')
|
2024-03-12 12:31:49 +01:00
|
|
|
WHERE
|
2024-04-18 17:44:05 +02:00
|
|
|
`zz_modules_lang`.`title`="Articoli" AND `zz_prints_lang`.`title`="Inventario magazzino"')['id'];
|
2020-04-07 16:10:00 +02:00
|
|
|
|
|
|
|
echo '
|
2020-09-23 17:53:19 +02:00
|
|
|
<form action="'.base_path().'/pdfgen.php?id_print='.$id_print.'" method="post" target="_blank">
|
2020-04-07 16:10:00 +02:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
2021-10-22 17:14:13 +02:00
|
|
|
<div class="col-md-4">
|
2022-03-01 20:06:46 +01:00
|
|
|
{[ "type": "select", "label": "'.tr('Articoli da stampare').'", "name": "tipo", "required": "1", "values": "list=\"full\": \"'.tr('Tutti').'\", \"nozero\": \"'.tr('Solo esistenti').'\"", "value": "nozero", "help": "'.tr("''Solo esistenti'' indica articoli (attivi o disattivi) con quantità totale maggiore di 0").'." ]}
|
2020-04-07 16:10:00 +02:00
|
|
|
</div>
|
|
|
|
|
2021-10-22 17:14:13 +02:00
|
|
|
<div class="col-md-4">
|
|
|
|
{[ "type": "select", "label": "'.tr('Prezzo di acquisto').'", "name": "acquisto", "required": "1", "values": "list=\"standard\": \"'.tr('Scheda articolo').'\", \"first\": \"'.tr('Primo acquisto').'\", \"last\": \"'.tr('Ultimo acquisto').'\", \"media\": \"'.tr('Media ponderata').'\"", "value": "standard" ]}
|
|
|
|
</div>
|
|
|
|
|
2020-04-07 16:10:00 +02:00
|
|
|
<div class="col-md-2">
|
|
|
|
<p style="line-height:14px;"> </p>
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2020-04-07 16:10:00 +02:00
|
|
|
<button type="submit" class="btn btn-primary btn-block">
|
|
|
|
<i class="fa fa-print"></i> '.tr('Stampa').'
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<script>$(document).ready(init)</script>';
|