diff --git a/app/GrupoDeCompra.php b/app/GrupoDeCompra.php index 31cdfb0..fd5de50 100644 --- a/app/GrupoDeCompra.php +++ b/app/GrupoDeCompra.php @@ -224,22 +224,6 @@ class GrupoDeCompra extends Model return array($records, $i, $cantidad); } - public static function exportarTodosLosPedidosEnCSV(){ - $gdcs = GrupoDeCompra::all()->filter(function ($grupoDeCompra) { - return !$grupoDeCompra->pedidosAprobados()->isEmpty(); - }); - $planilla = GrupoDeCompra::obtenerTemplateDeFilasVacias($gdcs->count()); - $planilla = self::getPlanilla($gdcs, $planilla); - - // Guardar en un archivo .csv - try { - $writer = Writer::createFromPath(resource_path('csv/exports/total-pedidos.csv'), 'w'); - $writer->insertAll($planilla); - } catch (CannotInsertRecord $e) { - var_export($e->getRecords()); - } - } - public static function exportarProductosConNotasEnCSV() { $gdcs = GrupoDeCompra::all(); foreach ($gdcs as $i => $gdc) {