trabajando en servicios encuadernacion

This commit is contained in:
2023-11-20 21:11:20 +01:00
parent d7fda0e8db
commit 58af5bf90f
12 changed files with 114 additions and 1318 deletions

View File

@ -45,6 +45,21 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
];
public function initPresupuesto($tipoPresupuesto, $solapas){
$model = model('App\Models\Presupuestos\TipoPresupuestoTarifaEncuadernacionModel');
$tarifas_ids = $model->get_tarifas($tipo_presupuesto,$solapas);
}
public function delete($presupuesto_id){
$builder = $this->db
->table($this->table . " t1")
->where('t1.presupuesto_id', $presupuesto_id)
->delete();
}
/**
* Get resource data.
*