se añade la opción de guardas al papel impresion

This commit is contained in:
2024-02-08 15:32:49 +01:00
parent 2bf9e271a7
commit aa851469af
7 changed files with 39 additions and 8 deletions

View File

@ -196,12 +196,15 @@ class Papelesimpresion extends \App\Controllers\GoBaseResourceController
if ($this->request->getPost('color') == null) {
$sanitizedData['color'] = false;
}
if ($this->request->getPost('portada') == null) {
$sanitizedData['portada'] = false;
}
if ($this->request->getPost('cubierta') == null) {
$sanitizedData['cubierta'] = false;
}
if ($this->request->getPost('sobrecubierta') == null) {
$sanitizedData['sobrecubierta'] = false;
}
if ($this->request->getPost('guardas') == null) {
$sanitizedData['guardas'] = false;
}
if ($this->request->getPost('rotativa') == null) {
$sanitizedData['rotativa'] = false;
}