Guardar factura
This commit is contained in:
@ -21,12 +21,13 @@ class Facturas extends Controller
|
||||
'success' => false
|
||||
];
|
||||
try {
|
||||
foreach (['cliente', 'unidades', 'detalle', 'total', 'uf'] as $key) {
|
||||
/*foreach (['cliente', 'unidades', 'detalle', 'total', 'uf'] as $key) {
|
||||
if (!isset($data[$key]) or empty($data[$key])) {
|
||||
continue;
|
||||
}
|
||||
$data[$key] = json_decode($data[$key], true);
|
||||
}
|
||||
}*/
|
||||
$data['cliente'] = json_decode($data['cliente'], true);
|
||||
$output['factura'] = $facturaService->add($data);
|
||||
$output['success'] = true;
|
||||
} catch (Implement\Exception\EmptyResult) {
|
||||
|
Reference in New Issue
Block a user