protected function private_core() { /// ¿El usuario tiene permiso para eliminar en esta página? $this->allow_delete = $this->user->allow_delete_on(__CLASS__); $this->cuenta = FALSE; if (isset($_POST['nsubcuenta'])) { $subc0 = new subcuenta(); $subc0->codcuenta = $_POST['codcuenta']; $subc0->codejercicio = $_POST['ejercicio']; $subc0->codsubcuenta = $_POST['nsubcuenta']; $subc0->descripcion = $_POST['descripcion']; $subc0->idcuenta = $_POST['idcuenta']; $subc0->alias = $_POST['alias']; if ($subc0->save()) { header('Location: ' . $subc0->url()); } else { $this->new_error_msg('Error al crear la subcuenta.'); } $this->cuenta = $subc0->get_cuenta(); } else { if (isset($_GET['deletes'])) { $subc0 = new subcuenta(); $subc1 = $subc0->get($_GET['deletes']); if ($subc1) { $this->cuenta = $subc1->get_cuenta(); if ($subc1->delete()) { $this->new_message('Subcuenta eliminada correctamente.'); } else { $this->new_error_msg('Error al eliminar la subcuenta.'); } } else { $this->new_error_msg('Subcuenta no encontrada.'); } } else { if (isset($_GET['id'])) { $cuenta = new cuenta(); $this->cuenta = $cuenta->get($_GET['id']); if ($this->cuenta and isset($_POST['descripcion'])) { $this->cuenta->descripcion = $_POST['descripcion']; if ($_POST['idcuentaesp'] == '---') { $this->cuenta->idcuentaesp = NULL; } else { $this->cuenta->idcuentaesp = $_POST['idcuentaesp']; } if ($this->cuenta->save()) { $this->new_message('Cuenta modificada correctamente.'); } else { $this->new_error_msg('Error al modificar la cuenta.'); } } } } } if ($this->cuenta) { /// configuramos la página previa $this->ppage = $this->page->get('contabilidad_epigrafes'); if ($this->ppage) { $this->ppage->title = 'Rubro: ' . $this->cuenta->codepigrafe; $this->ppage->extra_url = '&epi=' . $this->cuenta->idepigrafe; } $this->page->title = 'Cuenta: ' . $this->cuenta->codcuenta; $this->ejercicio = $this->cuenta->get_ejercicio(); $this->nuevo_codsubcuenta = sprintf('%-0' . $this->ejercicio->longsubcuenta . 's', $this->cuenta->codcuenta); } else { $this->new_error_msg("Cuenta no encontrada."); $this->ppage = $this->page->get('contabilidad_cuentas'); } }
protected function process() { $this->cuenta = FALSE; if (isset($_POST['nsubcuenta'])) { $subc0 = new subcuenta(); $subc0->codcuenta = $_POST['codcuenta']; $subc0->codejercicio = $_POST['ejercicio']; $subc0->codsubcuenta = $_POST['nsubcuenta']; $subc0->descripcion = $_POST['descripcion']; $subc0->idcuenta = $_POST['idcuenta']; if ($subc0->save()) { header('Location: ' . $subc0->url()); } else { $this->new_error_msg('Error al crear la subcuenta.'); } $this->cuenta = $subc0->get_cuenta(); } else { if (isset($_GET['deletes'])) { $subc0 = new subcuenta(); $subc1 = $subc0->get($_GET['deletes']); if ($subc1) { $this->cuenta = $subc1->get_cuenta(); if ($subc1->delete()) { $this->new_message('Subcuenta eliminada correctamente.'); } else { $this->new_error_msg('Error al eliminar la subcuenta.'); } } else { $this->new_error_msg('Subcuenta no encontrada.'); } } else { if (isset($_GET['id'])) { $cuenta = new cuenta(); $this->cuenta = $cuenta->get($_GET['id']); if ($this->cuenta and isset($_POST['descripcion'])) { $this->cuenta->descripcion = $_POST['descripcion']; if ($_POST['idcuentaesp'] == '---') { $this->cuenta->idcuentaesp = NULL; } else { $this->cuenta->idcuentaesp = $_POST['idcuentaesp']; } if ($this->cuenta->save()) { $this->new_message('Cuenta modificada correctamente.'); } else { $this->new_error_msg('Error al modificar la cuenta.'); } } } } } if ($this->cuenta) { /// configuramos la página previa $this->ppage = $this->page->get('contabilidad_epigrafes'); if ($this->ppage) { $this->ppage->title = 'Epígrafe: ' . $this->cuenta->codepigrafe; $this->ppage->extra_url = '&epi=' . $this->cuenta->idepigrafe; } $this->page->title = 'Cuenta: ' . $this->cuenta->codcuenta; $this->ejercicio = $this->cuenta->get_ejercicio(); $this->buttons[] = new fs_button_img('b_eliminar', 'Eliminar', 'trash.png', '#', TRUE); } else { $this->new_error_msg("Cuenta no encontrada."); $this->ppage = $this->page->get('contabilidad_cuentas'); } }