terminado

This commit is contained in:
2025-05-05 18:52:16 +02:00
parent 24fc4ff1c1
commit 514905ff47
5 changed files with 24 additions and 24 deletions

View File

@ -166,7 +166,7 @@ class EtiquetasTitulosController extends BaseController
$impresoras = $modelImpresora->select('id, name')
->where('deleted_at', null)
->where('tipo', 1)
->orderBy('name', 'asc')
->orderBy('name', 'desc')
->findAll();
$etiquetaEntity->impresoras = $impresoras;

View File

@ -345,7 +345,7 @@ class LogisticaController extends BaseController
$impresoras = $modelImpresora->select('id, name')
->where('deleted_at', null)
->where('tipo', 1)
->orderBy('name', 'asc')
->orderBy('name', 'desc')
->findAll();
$envioEntity->impresoras = $impresoras;

View File

@ -2272,7 +2272,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController
return $return_data;
}
$cantidad_total = intval($datosPedido->tirada) + intval($datosPedido->merma);
$cantidad_total = intval($datosPedido->tirada);// + intval($datosPedido->merma);
// Acabado Cubierta
if (intval($datos_entrada['cubierta']['acabado']) != 0) {