public function getDesactive($nota_venta_id)
 {
     $country = NotaVenta::find($nota_venta_id);
     $country->status = 'Inactivo';
     $country->save();
     return Redirect::back();
 }
 public function getIndex()
 {
     $facturas_compra = FacturaCompra::whereStatus('Activo')->orderBy('fecha_emision')->get();
     $notas_venta = NotaVenta::whereStatus('Activo')->orderBy('id', 'DESC')->lists('id', 'id');
     $estados = Estado::whereStatus('Activo')->orderBy('id', 'DESC')->lists('nombre', 'id');
     $vendedores = Vendedor::whereStatus('Activo')->orderBy('rut')->lists('rut', 'id');
     $proveedores = Cliente::whereStatus('Activo')->orderBy('rut')->lists('rut', 'id');
     return View::make('sgrm.facturas_compra.index')->with('notas_venta', $notas_venta)->with('facturas_compra', $facturas_compra)->with('estados', $estados)->with('vendedores', $vendedores)->with('proveedores', $proveedores)->with('facturas_compra', $facturas_compra);
 }