Fix aggiunta articolo

This commit is contained in:
MatteoPistorello 2021-04-13 17:30:42 +02:00
parent b6153fff53
commit f28ebabb0d
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ switch (post('op')) {
if (isAjaxRequest()) {
echo json_encode([
'id' => $id_record,
'text' => post('descrizione'),
'text' => post('codice').' - '.post('descrizione'),
'data' => [
'descrizione' => post('descrizione'),
'prezzo_acquisto' => post('prezzo_acquisto'),

View File

@ -35,7 +35,7 @@ include_once __DIR__.'/../../core.php';
<div class="row">
<div class="col-md-12">
{[ "type": "text", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1, "value": "<?php echo htmlentities(filter('descrizione')) ?: ''; ?>" ]}
{[ "type": "textarea", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1, "value": "<?php echo htmlentities(filter('descrizione')) ?: ''; ?>" ]}
</div>
<div class="col-md-6">