terminado

This commit is contained in:
2025-04-24 12:01:06 +02:00
parent 616c12002e
commit 3838bcb536
5 changed files with 204 additions and 73 deletions

View File

@ -787,6 +787,32 @@ class Facturas extends \App\Controllers\BaseResourceController
}
}
public function deleteLineaPago()
{
if ($this->request->isAJAX()) {
$postData = $this->request->getPost();
$factura_id = $postData['factura_id'] ?? 0;
$pago_id = $postData['pago_id'] ?? 0;
$model_factura_pago = model('\App\Models\Facturas\FacturaPagoModel');
$model_factura_pago->update($pago_id, [
'deleted_at' => date('Y-m-d H:i:s'),
'user_updated_id' => auth()->user()->id,
]);
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$data = [
$csrfTokenName => $newTokenHash
];
return $this->respond($data);
} else {
return $this->failUnauthorized('Invalid request', 403);
}
}
public function validar($factura_id)
{