/** * Execute the console command. * * @return mixed */ public function handle() { $count = 0; $pdo = DB::connection()->getPdo(); $query = "SELECT * FROM archivos_sat;"; $stmt = $pdo->prepare($query); $stmt->execute(); while ($row = $stmt->fetchObject()) { $count++; if ($count % 100 == 0) { $this->comment("arch sat: " . $count); } $archivo = ArchivoSat::find($row->id); $parser = new ParserCFID($archivo->file); $parser->parser(); $archivo->fecha = $parser->getFecha(); $archivo->save(); } $count = 0; $pdo = DB::connection()->getPdo(); $query = "SELECT * FROM archivos_empresa;"; $stmt = $pdo->prepare($query); $stmt->execute(); while ($row = $stmt->fetchObject()) { $count++; if ($count % 100 == 0) { $this->comment("arch emp: " . $count); } $archivo = ArchivoEmpresa::find($row->id); $parser = new ParserCFID($archivo->file); $parser->parser(); $archivo->fecha = $parser->getFecha(); $archivo->save(); } }
function empresaFiles($text, $isZip = true) { $id = Auth::user()->id; $carga = Cargas::where('user_id', '=', $id)->where('procesado', '=', false)->first(); $error = "No se ha seleccionado ningun contribuyente, regresa al paso 1"; if ($carga->rfc == null) { throw new \ErrorException($error); } $parser = new ParserCFID($text); $parser->parser(); $fecha = $parser->getFecha(); $rfcEmisor = $parser->getRfcEmisor(); $rfcReceptor = $parser->getRfcReceptor(); $uuid = $parser->getUUID(); $total = $parser->getTotal(); $subtotal = $parser->getSubTotal(); $error = "No ha seleccionado una fecha regrese al paso 1 para seleccionarla."; if (!$carga->anio || !$carga->mes) { if ($carga->mes != 0) { throw new \ErrorException($error); } } if ($carga->mes == 0) { $error = "Esta factura no corresponde al año seleccionado."; if ($carga->anio != $fecha->year) { if (!$isZip) { throw new \ErrorException($error); } else { return "no"; } } } elseif ($carga->mes <= 12) { $error = "Esta factura no corresponde a la fecha seleccionada."; if ($carga->mes != $fecha->month || $carga->anio != $fecha->year) { if (!$isZip) { throw new \ErrorException($error); } else { return "no"; } } } else { $error = "Hubo un error en la selección de fecha regrese al paso uno y verifíquelo."; throw new \ErrorException($error); } $rfc = $carga->rfc; $error = "Este rfc no pertence al contribuyente seleccionado"; if ($rfcEmisor != $rfc && $rfcReceptor != $rfc) { if (!$isZip) { throw new \ErrorException($error); } else { return $error; } } $error = "Ya existe el UUID: {$uuid}"; $sat = ArchivoEmpresa::where('uuid', '=', $uuid)->first(); if ($sat) { if (!$isZip) { throw new \ErrorException($error); } else { return $error; } } $tipoEmisor = $parser->getTipoEmisor(); $tipoReceptor = $parser->getTipoReceptor(); ArchivoEmpresa::create(['tipo_id' => 2, 'carga_id' => $carga->id, 'fecha' => $fecha, 'rfc_emisor' => $rfcEmisor, 'rfc_receptor' => $rfcReceptor, 'uuid' => $uuid, 'file' => $text, 'tipo_emisor' => $tipoEmisor, 'tipo_receptor' => $tipoReceptor, 'total' => $total, 'subtotal' => $subtotal]); $archivo = Archivos::where('uuid', '=', $uuid)->first(); if (!$archivo) { Archivos::create(['uuid' => $uuid]); } return "yes"; }