public function __construct()
 {
     parent::__construct();
     $this->facturas = new FacturasPorCobrar();
     $this->clientes = new Clientes();
     $this->acciones = new AccionCobrar();
     parent::set_actions($this->acciones);
 }
 public function __construct()
 {
     parent::__construct('ventas', 'listado_pedidos');
     $this->pedidos = new Pedidos();
     $this->clientes = new Clientes();
     $this->acciones = new AccionBorrarProcesar();
     parent::set_actions($this->acciones);
 }
 public function __construct()
 {
     parent::__construct();
     parent::set_actions(new AccionBorrarActivar());
     $this->pendientes = new ClientesPendientes();
     $this->provincias = new Provincias();
     $this->localidades = new Localidades(0);
 }
 public function __construct()
 {
     parent::__construct();
     $this->facturas = new FacturasPorPagar();
     $this->proveedores = new Proveedores();
     $this->acciones = new AccionPagar();
     parent::set_actions($this->acciones);
 }
 public function __construct()
 {
     parent::__construct('compras', 'listado_compras');
     $this->compras = new Compras();
     $this->proveedores = new Proveedores();
     $this->fondos = new Fondos();
     $this->condiciones = new CondicionesVenta();
     $this->acciones = new AccionBorrar();
     parent::set_actions($this->acciones);
 }
 public function __construct()
 {
     parent::__construct('ventas', 'listado_ventas');
     $this->ventas = new Ventas();
     $this->clientes = new Clientes();
     $this->fondos = new Fondos();
     $this->condiciones = new CondicionesVenta();
     $this->acciones = new AccionBorrar();
     parent::set_actions($this->acciones);
 }
 public function __construct()
 {
     parent::__construct();
     $this->facturas = new AgendaPagos();
     parent::set_actions(new AccionPagarCuota());
 }