protected function execute(InputInterface $input, OutputInterface $output)
 {
     // n. ordinazioni (si intende quante persone non quanti piatti) medie per ciascun mese
     // prezzo medio ordinazione
     // importo totale di ciascun mese
     // piatti più acquistati, magari nei diversi periodi dell'anno (gen-mar) (apr-oggi)
     $start = $input->getArgument('start');
     $start = !empty($start) ? Carbon::parse($start) : Carbon::parse('2016-01-01');
     $end = $input->getArgument('end');
     $end = !empty($end) ? Carbon::parse($end) : Carbon::now()->addDay();
     // $end = $input->getOption('view');
     // $end = ! empty($end) ? Carbon::parse($end) : Carbon::now()->addDay();
     $orders = Order::whereBetween('delivery_time', [$start, $end])->orderBy('delivery_time', 'asc')->get();
     //
     $ordersCollection = collect(getTransformedCollection($orders, new \Jambon\Transformers\OrdersTransformer()))->groupBy('date');
     //trasforma ogni elemento giorno con statistiche per giorno
     $ordersCollection = $ordersCollection->transform(function ($orders, $dayStr) {
         $day = Carbon::parse($dayStr);
         // --------------------------------------------------------------------
         // somma dei cucinati
         $sumCucinato = 0;
         $countCucinato = 0;
         $catCucinati = ['Primi Piatti', 'Secondi di Pesce', 'Secondi di carne', 'Verdure, ortaggi e contorni', 'Piatti Vegetariani'];
         $orders->each(function ($order) use(&$sumCucinato, &$countCucinato, $catCucinati) {
             $isCoockedOrder = false;
             foreach ($order['products'] as $prod) {
                 if (in_array($prod['product']['category'], $catCucinati)) {
                     $sumCucinato += $prod['qta'] * $prod['price'];
                     $isCoockedOrder = true;
                 }
             }
             if ($isCoockedOrder) {
                 $countCucinato++;
             }
         });
         //dd($sumCucinato);
         // --------------------------------------------------------------------
         return collect(['date' => $day->toRfc850String(), 'orders' => $orders->toArray(), 'ordersCount' => $orders->count(), 'ordersPriceAvg' => $orders->avg('total'), 'ordersPriceTotal' => $orders->sum('total'), 'ordiniCucinatoCount' => $countCucinato, 'priceCucinatoTotal' => $sumCucinato, 'priceCucinatoAvg' => $sumCucinato / $countCucinato]);
     });
     dump(['MediaNumeroOrdinazioni' => (int) ceil($ordersCollection->avg('ordersCount')), 'MediaPrezzoPerPersona' => $ordersCollection->avg('ordersPriceAvg'), 'ImportoTotale' => $ordersCollection->sum('ordersPriceTotal'), 'MediaPrezzoCucinatoPerPersona' => $ordersCollection->max('priceCucinatoAvg')]);
 }
 /**
  * Turn this item object into a generic array
  *
  * @return array
  */
 public function transform(Order $order)
 {
     $agency = $order->agency()->first();
     return ['date' => $this->formatDate($order->getDate()), 'agency' => !empty($agency) ? $agency->getName() : null, 'user' => $this->processItem($order->user()->first(), new UsersTransformer()), 'products' => $this->processCollection($order->menuOrderProducts()->get(), new MenuOrderProductsTransformer()), 'total' => $order->getTotal()];
 }
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $gmail = new \Jambon\GmailClient\GmailClient();
     $emails = $gmail->readEmails(['maxResults' => $input->getArgument('entries'), 'labelIds' => 'INBOX', 'includeSpamTrash' => true, 'q' => 'from:serviziomensa@mosaicoon.com invio ordine ' . $input->getArgument('extraString')], function (array $email) use($output) {
         $content = $email['body']['html'][0];
         // --------------------------------------------------------------------
         preg_match("/[0-9]{1,2}\\/[0-9]{1,2}\\/[0-9]{4}/", $content, $matched);
         list($d, $m, $y) = explode('/', $matched[0]);
         $menuDate = Carbon::parse("{$y}-{$m}-{$d} 00:00:00");
         //$menuDate = "{$y}-{$m}-{$d} 00:00:00";
         $output->writeLn("Importando Ordini del " . $matched[0]);
         // --------------------------------------------------------------------
         $agency = Agency::firstOrCreate(['name' => 'Mosaicoon']);
         $c = Order::where(['delivery_time' => $menuDate->copy()->addHours(13), 'agency_id' => $agency->id])->count();
         if ($c !== 0) {
             //ordine già registrato
             $output->writeLn("Ordine del " . $matched[0] . " GIA SALVATO");
             return;
         }
         //prendi menu del giorno
         try {
             $menu = Menu::where(['start_date' => $menuDate, 'type' => Menu::TYPE_PRANZO])->firstOrFail();
         } catch (\Exception $e) {
             $output->writeLn("Menu del " . $matched[0] . " NON PRESENTE");
             return;
         }
         $crawler = new \Symfony\Component\DomCrawler\Crawler();
         $crawler->addHTMLContent($content, 'UTF-8');
         $crawler->filter('table')->eq(1)->filter('tr')->each(function ($tr, $i) use($menu, $agency, $menuDate) {
             if ($i === 0) {
                 return;
             }
             $ordData = [];
             $tr->filter('td')->each(function ($td, $i) use(&$ordData) {
                 if ($i == 0) {
                     $ordData['user'] = $td->text();
                 } elseif ($i == 2) {
                     $ordData['product-name'] = trim(str_replace(['[NUOVO]', '(NUOVO)', '(Nuovo)'], null, $td->text()));
                 } elseif ($i == 3) {
                     $ordData['qta'] = (int) $td->text();
                 } elseif ($i == 1) {
                     $ordData['category'] = trim($td->text());
                 }
             });
             if ($ordData['user'] === 'TOTALE') {
                 return;
             }
             //prevent insert injection code
             if (in_array($ordData['category'], ['', null, 'code', 'c'])) {
                 return;
             }
             try {
                 $pid = $menu->menuProducts()->get()->lists('product_id');
                 $product = Product::whereIn('id', $pid)->where('description', '=', $ordData['product-name'])->firstOrFail();
             } catch (\Exception $e) {
                 //Prodotto Mancante
                 echo 'P';
                 return;
             }
             //dd($product);
             //da rivedere...
             $user = User::firstOrCreate(['agency_id' => $agency->id, 'display_name' => $ordData['user'], 'role' => User::ROLE_USER]);
             $order = Order::firstOrCreate(['user_id' => $user->id, 'agency_id' => $agency->id, 'delivery_time' => $menuDate->copy()->addHours(13)]);
             try {
                 $order->addMenuProduct($menu, $product, $ordData['qta']);
             } catch (\Exception $e) {
                 //Associazione NON TROVATA
                 echo 'X';
                 return;
             }
             echo '.';
         });
         $output->writeLn(" ");
     });
 }