| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860 |
- <?php
- /*
- Desarrollador: Ing. Jean Jairo Benitez Meza
- Ultima Modificación: 10/10/2023
- Módulo: Gestión de Adquisiciones
- */
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use Illuminate\Support\Carbon;
- use Illuminate\Support\Facades\DB;
- use App\Http\Controllers\Controller;
- use Illuminate\Support\Facades\Validator;
- use App\Http\Controllers\ResponseController;
- use App\Http\Controllers\ResourcesController;
- use App\Http\Controllers\EncryptionController;
- use App\Http\Controllers\DocumentManagementController;
- use App\Http\Controllers\FunctionsController;
- class ArtitleController extends Controller {
- private $responseController;
- private $encController;
- private $resourcesController;
- private $documentManagementController;
- private $functionsController;
- public function __construct() {
- $this->responseController = new ResponseController();
- $this->encController = new EncryptionController();
- $this->resourcesController = new ResourcesController();
- $this->documentManagementController = new DocumentManagementController();
- $this->functionsController = new FunctionsController();
- }
- // Función para obtener las familias y las subfamilias activas
- public function getFamiliesAndSubfamilies ($user, $line) {
- try {
- $arrFamilias = DB::table('S002V01TFAMI')
- ->where('FAMI_ESTA', '=', 'Activo')
- ->where('FAMI_NULI', '=', $line)
- ->get([
- 'FAMI_COFA AS ID_FAMILIA',
- 'FAMI_NOFA AS FAMILIA',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETFAMILYS000: No se pudo realizar la consulta de las familias en la base.",
- $th->getMessage(),
- 500
- );
- }
-
- try {
- $arrSubfamilias = DB::table('S002V01TSUBF')
- ->where('SUBF_ESTA', '=', 'Activo')
- ->where('SUBF_NULI', '=', $line)
- ->get([
- 'SUBF_COSU AS ID_SUBFAMILIA',
- 'SUBF_NOSU AS SUBFAMILIA',
- 'SUBF_COFA AS ID_FAMILIA',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETFAMILYS001: No se pudo realizar la consulta de las subfamilias en la base.",
- $th->getMessage(),
- 500
- );
- }
- try {
- foreach ($arrFamilias as $keyFamilias => $familias) {
- $familias->SUBFAMILIAS = array();
- foreach ($arrSubfamilias as $keySubfamilias => $subfamilias) {
- if ($familias->ID_FAMILIA == $subfamilias->ID_FAMILIA) {
- $familias->SUBFAMILIAS[] = array(
- "ID_SUBFAMILIA" => $subfamilias->ID_SUBFAMILIA,
- "SUBFAMILIA" => $subfamilias->SUBFAMILIA,
- );
- }
- }
- }
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETFAMILYS002: Ocurrió un error al generar la respuesta de la consulta.",
- $th->getMessage(),
- 500
- );
- }
-
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $arrFamilias);
- }
- public function registerFamily(Request $request){
- $valitador = Validator::make($request->all(), [
- 'FAMILIA' => 'required|string|max:50',
- 'LINE' => 'required|integer',
- 'USER' => 'required|string'
- ]);
- if ($valitador->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_FAMILY_REG000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($valitador->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction();
- $responseData = $request->all();
-
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($responseData['USER'], $responseData['LINE']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, $arrResponseCheckUser['msg'], [], 401);
- }
- $usuario = $arrResponseCheckUser['response'];
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $validateInsert = DB::table('S002V01TFAMI')->insert([
- "FAMI_NOFA" => trim($responseData['FAMILIA']),
- "FAMI_USRE" => $usuario,
- "FAMI_NULI" => $responseData['LINE'],
- "FAMI_FERE" => $currentDate,
- "FAMI_FEAR" => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "Ocurrió un error al ingresar los registros.", $th->getMessage(), 401);
- }
- if (!$validateInsert) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "No se pudo ingresar los datos a la base de datos.", [], 401);
- }
- DB::commit();
- return $this->responseController->makeResponse(false, "ÉXITO: Registro Exitoso");
- }
- public function getUnits($user, $line) {
- try {
- $arrFamilias = DB::table('S002V01TUNID')
- ->where('UNID_NULI', '=', $line)
- ->get([
- 'UNID_IDUN AS ID_UNIDAD',
- 'UNID_NOMB AS UNIDAD',
- 'UNID_ESTA AS ESTADO',
- 'UNID_USRE AS USUARIO_REGISTRA',
- 'UNID_FERE AS FECHA_REGISTRA',
- 'UNID_USMO AS USUARIO_MODIFICA',
- 'UNID_FEMO AS FECHA_MODIFICA',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETUNITS000: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta exitosa", $arrFamilias);
- }
- public function getUnitsActives($user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_UNITS_GETACTIVES000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- try {
- $arrFamilias = DB::table('S002V01TUNID')
- ->where('UNID_NULI', '=', $line)
- ->where('UNID_ESTA', '=', 'Activo')
- ->get([
- 'UNID_IDUN AS ID_UNIDAD',
- 'UNID_NOMB AS UNIDAD',
- 'UNID_USRE AS USUARIO_REGISTRA',
- 'UNID_FERE AS FECHA_REGISTRA',
- 'UNID_USMO AS USUARIO_MODIFICA',
- 'UNID_FEMO AS FECHA_MODIFICA',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_UNITS_GETACTIVES001: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $arrFamilias);
- }
- public function registerUnit(Request $request){
- $valitador = Validator::make($request->all(), [
- 'UNIDAD' => 'required|string|max:50',
- 'LINE' => 'required|integer',
- 'USER' => 'required|string'
- ]);
- if ($valitador->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_UNITS_REG000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($valitador->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction();
- $responseData = $request->all();
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($responseData['USER'], $responseData['LINE']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_UNITS_REG001:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $usuario = $arrResponseCheckUser['response'];
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $validateInsert = DB::table('S002V01TUNID')->insert([
- "UNID_NOMB" => trim($responseData['UNIDAD']),
- "UNID_USRE" => $usuario,
- "UNID_NULI" => $responseData['LINE'],
- "UNID_FERE" => $currentDate,
- "UNID_FEAR" => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(
- true,
- "ERR_UNITS_REG002: Ocurrió un error al ingresar los registros.",
- $th->getMessage(),
- 401
- );
- }
- if (!$validateInsert) {
- DB::rollBack();
- return $this->responseController->makeResponse(
- true,
- "ERR_UNITS_REG003: No se pudo ingresar los datos a la base de datos.",
- [],
- 401
- );
- }
- DB::commit();
- return $this->responseController->makeResponse(false, "ÉXITO: Registro Exitoso");
- }
- public function registerSubfamily(Request $request){
- $valitador = Validator::make($request->all(), [
- 'ID_FAMILIA' => 'required|integer',
- 'SUBFAMILIA' => 'required|string|max:50',
- 'LINE' => 'required|integer',
- 'USER' => 'required|string'
- ]);
- if ($valitador->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_SUBFAMILY_REG000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($valitador->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction();
- $responseData = $request->all();
- try {
- $validateExists = DB::table('S002V01TFAMI')
- ->where('FAMI_COFA', '=', trim($responseData['ID_FAMILIA']))
- ->where('FAMI_ESTA', '=', 'Activo')
- ->where('FAMI_NULI', '=', $responseData['LINE'])
- ->exists();
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(
- true,
- "ERR_SUBFAMILY_REG001: Ocurrió al verificar la Familia.",
- $th->getMessage(),
- 401
- );
- }
-
- if (!$validateExists) {
- return $this->responseController->makeResponse(
- true,
- "ERR_SUBFAMILY_REG002: La Familia seleccionada no existe.",
- [],
- 401
- );
- }
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($responseData['USER'], $responseData['LINE']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_SUBFAMILY_REG003:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $user = $arrResponseCheckUser['response'];
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $validateInsert = DB::table('S002V01TSUBF')->insert([
- "SUBF_COFA" => $responseData['ID_FAMILIA'],
- "SUBF_NOSU" => $responseData['SUBFAMILIA'],
- "SUBF_USRE" => $user,
- "SUBF_NULI" => $responseData['LINE'],
- "SUBF_FERE" => $currentDate,
- "SUBF_FEAR" => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(
- true,
- "ERR_SUBFAMILY_REG004: Ocurrió un error al ingresar los registros.",
- $th->getMessage(),
- 401
- );
- }
- if (!$validateInsert) {
- DB::rollBack();
- return $this->responseController->makeResponse(
- true,
- "ERR_SUBFAMILY_REG005: No se pudo ingresar los datos a la base de datos.",
- [],
- 401
- );
- }
- DB::commit();
- return $this->responseController->makeResponse(false, "ÉXITO: Registro Exitoso");
- }
- public function getArtitles($user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_GET000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- try {
- $getArtitle = DB::table('S002V01TARTI')
- ->where("ARTI_NULI", "=", $line)
- ->where("FAMI_NULI", "=", $line)
- ->where("SUBF_NULI", "=", $line)
- ->where("DEAR_NULI", "=", $line)
- ->where("PROV_NULI", "=", $line)
- ->where("UNID_NULI", "=", $line)
- ->where("ARTI_ESTA", "=", "Activo")
- ->where("FAMI_ESTA", "=", "Activo")
- ->where("SUBF_ESTA", "=", "Activo")
- ->where("DEAR_ESTA", "=", "Activo")
- ->where("PROV_ESTA", "=", "Activo")
- ->where("UNID_ESTA", "=", "Activo")
- ->join("S002V01TFAMI", "ARTI_COFA", "=", "FAMI_COFA")
- ->join("S002V01TSUBF", "ARTI_COSU", "=", "SUBF_COSU")
- ->join("S002V01TDEAR", "ARTI_IDAR", "=", "DEAR_IDAR")
- ->join("S002V01TPROV", "DEAR_NUPR", "=", "PROV_NUPR")
- ->join("S002V01TUNID", "DEAR_IDUN", "=", "UNID_IDUN")
- ->get([
- "DEAR_IDDE AS ID_DESC_ARTI",
- "ARTI_IDAR AS ID_ARTICULO",
- "ARTI_NOMB AS MODELO",
- "FAMI_COFA AS ID_FAMILIA",
- "FAMI_NOFA AS FAMILIA",
- "SUBF_COSU AS ID_SUBFAMILIA",
- "SUBF_NOSU AS SUBFAMILIA",
- "DEAR_DESC AS DESCRIPCION",
- "DEAR_CARA AS CARACTERISTICAS",
- "DEAR_COWE AS COMPRA_WEB",
- "DEAR_IDUN AS TIPO_UNIDAD",
- "DEAR_IMAG AS URL_IMAGEN",
- "PROV_NUPR AS ID_PROVEEDOR",
- "PROV_NOCO AS PROVEEDOR",
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GET001: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- try {
- foreach ($getArtitle as $artitle) {
- $arrImagen = json_decode($artitle->URL_IMAGEN);
- $arrUrlImage = array();
- foreach ($arrImagen as $key => $imagen) {
- $responseDocument = $this->documentManagementController->privateGetPublicDocumentURL($imagen, $user, $line);
- if ($responseDocument['error']) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GET002: Ocurrió un error al obtener la URL de la imágen.", [], 500);
- }
- $arrUrlImage[] = $responseDocument['response']['public_uri'];
- }
- $artitle->URL_IMAGEN = $arrUrlImage;
-
- }
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GET003: Ocurrió un error al obtener las imangenes de los artículos.",
- $th->getMessage(),
- 500
- );
- }
- $getArtitle = json_decode(json_encode($getArtitle), true);
-
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $getArtitle);
- }
- public function getArtitlesByProvider($artitle, $provider, $user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_GETBYPROVIDER000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- try {
- $idArtitle = $this->encController->decrypt($artitle);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYPROVIDER001: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- try {
- $idProvider = $this->encController->decrypt($provider);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYPROVIDER002: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
-
- try {
- $objArtitle = (array) DB::table('S002V01TDEAR')
- ->where("ARTI_NULI", "=", $line)
- ->where("DEAR_IDDE", "=", $idArtitle)
- ->where("DEAR_NUPR", "=", $idProvider)
- ->join("S002V01TARTI", "ARTI_IDAR", "=", "DEAR_IDAR")
- ->join("S002V01TFAMI", "ARTI_COFA", "=", "FAMI_COFA")
- ->join("S002V01TSUBF", "ARTI_COSU", "=", "SUBF_COSU")
- ->join("S002V01TPROV", "DEAR_NUPR", "=", "PROV_NUPR")
- ->join("S002V01TUNID", "DEAR_IDUN", "=", "UNID_IDUN")
- ->first([
- "DEAR_IDDE AS ID_DESC_ARTI",
- "ARTI_IDAR AS ID_ARTICULO",
- "ARTI_NOMB AS MODELO",
- "FAMI_COFA AS ID_FAMILIA",
- "FAMI_NOFA AS FAMILIA",
- "SUBF_COSU AS ID_SUBFAMILIA",
- "SUBF_NOSU AS SUBFAMILIA",
- "DEAR_DESC AS DESCRIPCION",
- "DEAR_CARA AS CARACTERISTICAS",
- "DEAR_COWE AS COMPRA_WEB",
- "UNID_IDUN AS ID_UNIDAD",
- "UNID_NOMB AS UNIDAD",
- "DEAR_IMAG AS URL_IMAGEN",
- "PROV_NUPR AS ID_PROVEEDOR",
- "PROV_NOCO AS PROVEEDOR",
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYPROVIDER003: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- if ( empty($objArtitle) ) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYPROVIDER004: No se encontró el resultado deseado.", [], 500);
- }
-
- try {
- $objArtitle['URL_IMAGEN'] = json_decode($objArtitle['URL_IMAGEN']);
- $arrUrlImage = array();
- foreach ($objArtitle['URL_IMAGEN'] as $key => $encImage) {
- $responseDocument = $this->documentManagementController->privateGetPublicDocumentURL($encImage, $user, $line);
- if ($responseDocument['error']) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYPROVIDER005: Ocurrió un error al obtener la URL de la imágen.", [], 500);
- }
- $arrUrlImage[] = $responseDocument['response']['public_uri'];
- }
- $objArtitle['URL_IMAGEN'] = $arrUrlImage;
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYPROVIDER006: Ocurrió un error al obtner las imagenes de los artículos",
- $th->getMessage(),
- 500
- );
- }
- try {
- $arrInformation = DB::table('S002V01TINAR')
- ->where('INAR_ESTA', '=', 'Activo')
- ->where('INAR_NULI', '=', $line)
- ->where('INAR_IDDE', '=', $objArtitle['ID_DESC_ARTI'])
- ->join('S002V01TCAMO', 'CAMO_COMO', '=', 'INAR_COMO')
- ->get([
- 'INAR_IDIN AS NUMERO_INFORMACION',
- 'INAR_CODI AS CODIGO',
- 'INAR_MODE AS MODELO',
- 'CAMO_COMO AS MONEDA',
- 'CAMO_DESC AS MONEDA_DESCRIPCION',
- 'INAR_PREC AS PRECIO',
- 'INAR_MOMI AS MONTO_MINIMO',
- 'INAR_CARA AS CARACTERISTICAS',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYPROVIDER007: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- $objArtitle['INFO_PRODUCTO'] = json_encode($arrInformation);
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $objArtitle);
- }
- public function getArtitleById($encIdArtitle, $user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_GETBYID000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- try {
- $idArtitle = $this->encController->decrypt($encIdArtitle);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYID001: Ocurrió un error al obtener el artículo.",
- $th->getMessage(),
- 500
- );
- }
-
- try {
- $arrArtitle = DB::table('S002V01TARTI')
- ->where('ARTI_IDAR', '=', $idArtitle)
- ->where('ARTI_ESTA', '=', 'Activo')
- ->where('ARTI_NULI', '=', $line)
- ->join("S002V01TFAMI", "ARTI_COFA", "=", "FAMI_COFA")
- ->join("S002V01TSUBF", "ARTI_COSU", "=", "SUBF_COSU")
- ->first([
- 'ARTI_IDAR AS NUMERO_ARTICULO',
- 'ARTI_CODI AS CODIGO',
- "FAMI_COFA AS ID_FAMILIA",
- "FAMI_NOFA AS FAMILIA",
- "SUBF_COSU AS ID_SUBFAMILIA",
- "SUBF_NOSU AS SUBFAMILIA",
- 'ARTI_NOMB AS ARTICULO',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYID002: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- try {
- $arrDescription = DB::table('S002V01TDEAR')
- ->where('DEAR_IDAR', '=', $idArtitle)
- ->where('DEAR_ESTA', '=', 'Activo')
- ->where('DEAR_NULI', '=', $line)
- ->join("S002V01TUNID", "DEAR_IDUN", "=", "UNID_IDUN")
- ->get([
- 'DEAR_IDDE AS ID_DESCRIPCION',
- 'DEAR_DESC AS DESCRIPCION',
- 'DEAR_CARA AS CARACTERISTICAS',
- 'DEAR_COWE AS COMPRA_WEB',
- 'DEAR_IDUN AS TIPO_UNIDAD',
- 'DEAR_IMAG AS IMAGEN',
- 'DEAR_NUPR AS PROVEEDOR',
- 'DEAR_ESTA AS ESTADO',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYID003: No se pudo realizar la consulta a la base.",
- $th->getMessage(),
- 500
- );
- }
- if ( empty($arrDescription) ) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYID004: No se encontró ninguna descripción.",
- [],
- 500
- );
- }
- // Se obtienen las URL de las imagenes de los artículos
- try {
- foreach ($arrDescription as $description) {
- $arrImagen = json_decode($description->IMAGEN);
- $arrUrlImage = array();
- foreach ($arrImagen as $key => $imagen) {
- $responseDocument = $this->documentManagementController->privateGetPublicDocumentURL($imagen, $user, $line);
- if ($responseDocument['error']) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYID005: Ocurrió un error al obtener la URL de la imágen.", [], 500);
- }
- $arrUrlImage[] = $responseDocument['response']['public_uri'];
- }
- $description->IMAGEN = $arrUrlImage;
- }
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_GETBYID006: Ocurrió un error al obtener las imágenes de los artículos.",
- [],
- 500
- );
- }
-
- foreach ($arrDescription as $description) {
- try {
- $arrDetails = DB::table('S002V01TINAR')
- ->where('INAR_IDDE', '=', $description->ID_DESCRIPCION)
- ->where('INAR_ESTA', '=', 'Activo')
- ->where('INAR_NULI', '=', $line)
- ->join('S002V01TCAMO', 'CAMO_COMO', '=', 'INAR_COMO')
- ->get([
- 'INAR_IDIN AS NUMERO_DETALLE',
- 'INAR_CODI AS CODIGO',
- 'INAR_MODE AS MODELO',
- DB::raw('CONCAT("(", CAMO_COMO, ") ", CAMO_DESC) AS MONEDA'),
- 'INAR_PREC AS PRECIO',
- 'INAR_MOMI AS MONTO_MINIMO',
- // 'INAR_CANT AS CANTIDAD',
- 'INAR_CARA AS CARACTERISTICAS',
- 'INAR_ESTA AS ESTADO',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYID007: No se pudo realizar la consulta a la base.", $th->getMessage(), 500);
- }
- $description->DETALLES = $arrDetails;
- try {
- $objProdiver = DB::table('S002V01TPROV')
- ->where('PROV_NUPR', '=', $description->PROVEEDOR)
- ->where('PROV_ESTA', '=', 'Activo')
- ->where('PROV_NULI', '=', $line)
- ->first([
- 'PROV_NUPR',
- 'PROV_NOCO',
- 'PROV_NOMB',
- 'PROV_APPA',
- 'PROV_APMA',
- 'PROV_CORR',
- 'PROV_LAD1',
- 'PROV_TEL1',
- 'PROV_LAD2',
- 'PROV_TEL2',
- 'PROV_XRFC',
- 'PROV_XTAX',
- 'PROV_CRFI',
- 'PROV_TIPO',
- 'PROV_SIWE',
- 'PROV_MEPA',
- 'PROV_USRE',
- 'PROV_FERE',
- 'PROV_USMO',
- 'PROV_FEMO',
- ]);
- $description->PROVEEDOR = $objProdiver;
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYID008: No se pudo realizar la consulta a la base.", $th->getMessage(), 500);
- }
- }
- $arrArtitle->INFORMACION = $arrDescription;
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $arrArtitle);
- }
- public function getAllArtitles($user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_GETALL000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- try {
- $arrArtitle = DB::table('S002V01TARTI')
- ->where("ARTI_NULI", "=", $line)
- ->join("S002V01TFAMI", "ARTI_COFA", "=", "FAMI_COFA")
- ->join("S002V01TSUBF", "ARTI_COSU", "=", "SUBF_COSU")
- ->get([
- "ARTI_IDAR AS ID_ARTICULO",
- "ARTI_NOMB AS MODELO",
- "FAMI_COFA AS ID_FAMILIA",
- "FAMI_NOFA AS FAMILIA",
- "SUBF_COSU AS ID_SUBFAMILIA",
- "SUBF_NOSU AS SUBFAMILIA",
- "ARTI_ESTA AS ESTADO",
- "ARTI_USRE AS USUARIO_REGISTRA",
- "ARTI_FERE AS FECHA_REGISTRA",
- "ARTI_USMO AS USUARIO_MODIFICA",
- "ARTI_FEMO AS FECHA_MODIFICA",
- ]);
- $arrArtitle = json_decode(json_encode($arrArtitle), true);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETALL001: No se pudo realizar la consulta a la base.", $th->getMessage(), 500);
- }
- $responseCheckLatestUpdate = $this->resourcesController->checkLatestUpdate($arrArtitle, $line);
- if ($responseCheckLatestUpdate['error']) {
- return $this->responseController->makeResponse(true, $responseCheckLatestUpdate['msg'], [], 500);
- }
- $arrArtitle = $responseCheckLatestUpdate['response'];
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $arrArtitle);
- }
- public function registerArtitlesOld(Request $request) {
- $validator = Validator::make($request->all(), [
- 'CODIGO' => 'required|string',
- 'ARTICULO' => 'required|string',
- 'FAMILIA' => 'required|string',
- 'SUBFAMILIA' => 'required|string',
- 'INFORMATION' => 'required|array',
- 'USUARIO' => 'required|string',
- 'NUMERO_LINEA' => 'required|integer',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_REG000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction();
- $requestData = $request->all();
- foreach ($requestData['INFORMATION'] as $information) {
- $validator = Validator::make($information, [
- 'NO' => 'required|string',
- 'IMAGEN' => 'required|array',
- 'DESCRIPCION' => 'required|string',
- // 'CARACTERISTICAS' => '|string',
- 'TIPO_UNIDAD' => 'required|integer',
- 'PROVEEDOR' => 'required|string',
- 'COMPRA_WEB' => 'required|boolean',
- 'ESTADO' => 'required|string',
- 'DETAILS' => 'required|array',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_REG001: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- foreach ($information['DETAILS'] as $details) {
- $validator = Validator::make($details, [
- 'NO' => 'required|string',
- 'CODIGO' => 'required|string',
- 'MODELO' => 'required|string',
- 'MONEDA' => 'required|string',
- 'PRECIO' => 'required|string',
- 'MONTO_MINIMO' => 'required|string',
- 'ESTADO' => 'required|string',
- 'CARACTERISTICAS' => 'required|string',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_REG002: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- }
- }
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($requestData['USUARIO'], $requestData['NUMERO_LINEA']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG003:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $usuario = $arrResponseCheckUser['response'];
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $idArtitle = DB::table('S002V01TARTI')->insertGetId([
- 'ARTI_CODI' => $requestData['CODIGO'],
- 'ARTI_COFA' => $requestData['FAMILIA'],
- 'ARTI_COSU' => $requestData['SUBFAMILIA'],
- 'ARTI_NOMB' => $requestData['ARTICULO'],
- 'ARTI_NULI' => $requestData['NUMERO_LINEA'],
- 'ARTI_USRE' => $usuario,
- 'ARTI_FERE' => $currentDate,
- 'ARTI_FEAR' => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_REG004: No se pudo realizar la consulta a la base.", $th->getMessage(), 500);
- }
- foreach ($requestData['INFORMATION'] as $keyInformation => $information) {
- try {
- $arrCodeImages = array();
- foreach ($information['IMAGEN'] as $key => $encIdFile) {
- $idFile = $this->encController->decrypt($encIdFile);
- $tempFile = DB::table('S002V01TARTE')->where([
- ['ARTE_NULI', '=', $requestData['NUMERO_LINEA']],
- ['ARTE_IDAR', '=', $idFile],
- ])->first();
- if(is_null($tempFile)){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG005: El archivo consultado no está registrado', [], 404);
- }else if($tempFile->ARTE_ESTA == 'Eliminado'){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG006: El archivo consultado está eliminado', [], 404);
- }
- $fileResponse = $this->documentManagementController->moveFinalFile(
- intval($requestData['NUMERO_LINEA']),
- 'GEAD',
- 'FO',
- $tempFile,
- $usuario,
- );
- if(!$fileResponse[0]){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG007: '.$fileResponse[1], [], 400);
- }
- $arrCodeImages[] = $this->encController->encrypt($fileResponse[1]);
- }
- $jsonImages = json_encode($arrCodeImages);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_REG008: Ocurrió un error al obtener la URL pública de las imágenes.", $th->getMessage(), 500);
- }
-
- try {
- $idDescription = DB::table('S002V01TDEAR')->insertGetId([
- 'DEAR_DESC' => $information['DESCRIPCION'],
- 'DEAR_CARA' => $information['CARACTERISTICAS'],
- 'DEAR_COWE' => $information['COMPRA_WEB'],
- 'DEAR_IDUN' => $information['TIPO_UNIDAD'],
- 'DEAR_IMAG' => $jsonImages,
- 'DEAR_NUPR' => $information['PROVEEDOR'],
- 'DEAR_IDAR' => $idArtitle,
- 'DEAR_NULI' => $requestData['NUMERO_LINEA'],
- 'DEAR_USRE' => $usuario,
- 'DEAR_FERE' => $currentDate,
- 'DEAR_FEAR' => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_REG009: Ocurrió un error al insertar los datos de la información del artículo.", $th->getMessage(), 500);
- }
- $arrDetails = $information['DETAILS'];
- foreach ($arrDetails as $keyDetails => $details) {
- $insertDetails = [
- 'INAR_IDDE' => $idDescription,
- 'INAR_CODI' => $details['CODIGO'],
- 'INAR_MODE' => $details['MODELO'],
- 'INAR_COMO' => $details['MONEDA'],
- 'INAR_PREC' => $details['PRECIO'],
- 'INAR_MOMI' => $details['MONTO_MINIMO'],
- 'INAR_CARA' => $details['CARACTERISTICAS'],
- 'INAR_NULI' => $requestData['NUMERO_LINEA'],
- 'INAR_USRE' => $usuario,
- 'INAR_FERE' => $currentDate,
- 'INAR_FEAR' => DB::raw('CURRENT_TIMESTAMP')
- ];
- try {
- $validateDetails = DB::table('S002V01TINAR')->insert($insertDetails);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_REG010: Ocurrió un error al insertar los datos de los detalles del artículo.", $th->getMessage(), 500);
- }
- if (!$validateDetails) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_REG011: No se pudo insertar los datos de los detalles.", [], 500);
- }
- }
- }
- DB::commit();
- return $this->responseController->makeResponse(false, "ÉXITO: Registro Exitoso");
- }
- public function registerArticle (Request $request) {
- $validator = Validator::make($request->all(), [
- 'CODIGO' => 'required|string',
- 'ARTICULO' => 'required|string',
- 'FAMILIA' => 'required|string',
- 'SUBFAMILIA' => 'required|string',
- 'DESCRIPCION_ARTICULO' => 'required|array',
- 'USUARIO' => 'required|string',
- 'NUMERO_LINEA' => 'required|integer',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction();
- $requestData = $request->all();
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($requestData['USUARIO'], $requestData['NUMERO_LINEA']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, $arrResponseCheckUser['msg'], [], 401);
- }
- $user = $arrResponseCheckUser['response'];
- try {
- $validateExists = DB::table("S002V01TFAMI")->where([
- ['FAMI_COFA', '=', $requestData['FAMILIA']],
- ['FAMI_NULI', '=', $requestData['NUMERO_LINEA']],
- ])->exists();
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "Ocurrió un error verificar la existencia de la familia.", $th->getMessage(), 500);
- }
- if ($validateExists === false) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "La familia no existe.", [], 500);
- }
- unset($validateExists);
- try {
- $validateExists = DB::table('S002V01TSUBF')
- ->where([
- ['SUBF_NULI', '=', $requestData['NUMERO_LINEA']],
- ['SUBF_COFA', '=', $requestData['FAMILIA']],
- ['SUBF_COSU', '=', $requestData['SUBFAMILIA']],
- ])->exists();
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "Ocurrió un error verificar la existencia de la subfamilia.", $th->getMessage(), 500);
- }
- if ($validateExists === false) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "La subfamilia no existe.", [], 500);
- }
- unset($validateExists);
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $idArticle = DB::table('S002V01TARTI')
- ->insertGetId([
- 'ARTI_NULI' => $requestData['NUMERO_LINEA'],
- 'ARTI_COFA' => $requestData['FAMILIA'],
- 'ARTI_COSU' => $requestData['SUBFAMILIA'],
- 'ARTI_CODI' => $requestData['CODIGO'],
- 'ARTI_NOMB' => $requestData['ARTICULO'],
- 'ARTI_USRE' => $user,
- 'ARTI_FERE' => $currentDate,
- 'ARTI_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "Ocurrió un error al registrar el artículo.", $th->getMessage(), 500);
- }
- if ($idArticle <= 0) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "No se pudo registra el artículo.", [], 500);
- }
- foreach ($requestData['DESCRIPCION_ARTICULO'] as $keyDesc => $descriptions) {
- // codeFile
- foreach ($descriptions['ARCHIVOS'] as $files) {
- $idFile = $this->encController->decrypt($files['ID']);
- try {
- $tempFile = DB::table('S002V01TARTE')
- ->where([
- ['ARTE_NULI', '=', $requestData['NUMERO_LINEA']],
- ['ARTE_IDAR', '=', $idFile],
- ])->first();
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "Ocurrió un error al obtener los archivos temporales.", $th->getMessage(), 500);
- }
- }
- ry {
- $arrCodeImages = array();
- foreach ($information['IMAGEN'] as $key => $encIdFile) {
- $idFile = $this->encController->decrypt($encIdFile);
- $tempFile = DB::table('S002V01TARTE')->where([
- ['ARTE_NULI', '=', $requestData['NUMERO_LINEA']],
- ['ARTE_IDAR', '=', $idFile],
- ])->first();
- if(is_null($tempFile)){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG005: El archivo consultado no está registrado', [], 404);
- }else if($tempFile->ARTE_ESTA == 'Eliminado'){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG006: El archivo consultado está eliminado', [], 404);
- }
- $fileResponse = $this->documentManagementController->moveFinalFile(
- intval($requestData['NUMERO_LINEA']),
- 'GEAD',
- 'FO',
- $tempFile,
- $usuario,
- );
- if(!$fileResponse[0]){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_REG007: '.$fileResponse[1], [], 400);
- }
- $arrCodeImages[] = $this->encController->encrypt($fileResponse[1]);
- }
- $jsonImages = json_encode($arrCodeImages);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_REG008: Ocurrió un error al obtener la URL pública de las imágenes.", $th->getMessage(), 500);
- }
-
- try {
- $idDescription = DB::table('S002V01TDEAR')
- ->insertGetId([
- 'DEAR_NULI' => $requestData['NUMERO_LINEA'],
- 'DEAR_IMAG' => $codeFile,
- 'DEAR_DESC' => $descriptions['DESCRIPCION'],
- 'DEAR_CARA' => $descriptions['CARACTERISTICAS'],
- 'DEAR_COWE' => true,
- 'DEAR_IDUN' => $descriptions['ID_UNIDAD'],
- 'DEAR_NUPR' => $descriptions['NUMERO_PROVEEDOR'],
- 'DEAR_IDAR' => $idArticle,
- 'DEAR_USRE' => $user,
- 'DEAR_FERE' => $currentDate,
- 'DEAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- //throw $th;
- }
- }
- }
- public function updateArtitles(Request $request) {
- $validator = Validator::make($request->all(), [
- 'NO' => 'required|string',
- 'CODIGO' => 'required|string',
- 'ARTICULO' => 'required|string',
- 'FAMILIA' => 'required|string',
- 'SUBFAMILIA' => 'required|string',
- 'USUARIO' => 'required|string',
- 'NUMERO_LINEA' => 'required|integer',
- 'INFORMATION' => 'required',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_MOD000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction(); # Para impedir que las actualizaciones queden a incompletas
- $requestData = $request->all();
- foreach ($requestData['INFORMATION'] as $information) {
- $validator = Validator::make($information, [
- 'NO' => 'required|integer',
- 'IMAGEN' => 'required|array',
- 'DESCRIPCION' => 'required|string',
- // 'CARACTERISTICAS' => '|string',
- 'TIPO_UNIDAD' => 'required|integer',
- 'PROVEEDOR' => 'required|string',
- 'COMPRA_WEB' => 'required|boolean',
- 'ESTADO' => 'required|string',
- 'DETAILS' => 'required|array',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_MOD001: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- foreach ($information['DETAILS'] as $details) {
- $validator = Validator::make($details, [
- 'NO' => 'required|string',
- 'CODIGO' => 'required|string',
- 'MODELO' => 'required|string',
- 'MONEDA' => 'required|string',
- 'PRECIO' => 'required|string',
- 'MONTO_MINIMO' => 'required|string',
- 'ESTADO' => 'required|string',
- 'CARACTERISTICAS' => 'required|string',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_MOD002: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- }
- foreach ($information['IMAGEN'] as $key => $imagen) {
- if (gettype($imagen) != 'string') {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_MOD003: Se encontraron uno o más errores.",
- "Se se obtuvieron los ID de los archivos.",
- 401
- );
- }
- }
- }
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($requestData['USUARIO'], $requestData['NUMERO_LINEA']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_MOD004:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $usuario = $arrResponseCheckUser['response'];
-
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- $numeroArticulo = $requestData['NO'];
- try {
- $validateUpdate = DB::table('S002V01TARTI')
- ->where('ARTI_IDAR', '=', $numeroArticulo)
- ->where('ARTI_NULI', '=', $requestData['NUMERO_LINEA'])
- ->update([
- 'ARTI_CODI' => $requestData['CODIGO'],
- 'ARTI_COFA' => $requestData['FAMILIA'],
- 'ARTI_COSU' => $requestData['SUBFAMILIA'],
- 'ARTI_NOMB' => $requestData['ARTICULO'],
- 'ARTI_USMO' => $usuario,
- 'ARTI_FEMO' => $currentDate,
- 'ARTI_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
-
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD005: Ocurrió un error al modificar el registro.", $th->getMessage(), 500);
- }
- if (!$validateUpdate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD006: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- $arrInformation = $requestData['INFORMATION'];
- foreach ($arrInformation as $keyInformation => $information) {
- // Número de ID de información
- $numeroInformation = $information['NO'];
- // Se verifica si la información ya está registrado o no
- if ($information['ESTADO'] === 'Modificado' || $information['ESTADO'] === 'Activo') {
- $arrCodeImages = array();
- foreach ($information['IMAGEN'] as $key => $encIdFile) {
- $idFile = $this->encController->decrypt($encIdFile);
- $arrCode = explode('=', $idFile);
-
- if ( count($arrCode) == 3 ) {
-
- $arrStrucuteCode = explode("-", $arrCode[0]);
- $nameCode = explode(".", $arrCode[2]);
- $validateImage = DB::table('S002V01TAFAL')->where([
- ['AFAL_NULI', '=', $requestData['NUMERO_LINEA']],
- ['AFAL_COMO', '=', $arrStrucuteCode['1']],
- ['AFAL_CLDO', '=', $arrStrucuteCode['2']],
- ['AFAL_NOAR', '=', $nameCode[0]],
- ['AFAL_EXTE', '=', $nameCode[1]],
- ])->orderBy('AFAL_NUVE', 'desc')->exists();
- if (!$validateImage) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD007: : La imagen con el código $idFile no existe.", [], 500);
- }
- $arrCodeImages[] = $this->encController->encrypt($idFile);
- } else {
- $tempFile = DB::table('S002V01TARTE')->where([
- ['ARTE_NULI', '=', $requestData['NUMERO_LINEA']],
- ['ARTE_IDAR', '=', $idFile],
- ])->first();
-
- if(is_null($tempFile)){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_MOD008: El archivo consultado no está registrado', $idFile, 404);
- }else if($tempFile->ARTE_ESTA == 'Eliminado'){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_MOD009: El archivo consultado está eliminado', $tempFile, 404);
- }
- $fileResponse = $this->documentManagementController->moveFinalFile(
- intval($requestData['NUMERO_LINEA']),
- 'GEAD',
- 'FO',
- $tempFile,
- $usuario,
- );
-
- if(!$fileResponse[0]){
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD010: ".$fileResponse[1], [], 400);
- }
- $arrCodeImages[] = $this->encController->encrypt($fileResponse[1]);
- // $arrCodeImages[] = $fileResponse[1];
- }
- }
- $jsonImages = json_encode($arrCodeImages);
- try {
- $validate = DB::table('S002V01TDEAR')->where('DEAR_IDDE', '=', $numeroInformation)->update([
- 'DEAR_DESC' => $information['DESCRIPCION'],
- 'DEAR_CARA' => $information['CARACTERISTICAS'],
- 'DEAR_COWE' => $information['COMPRA_WEB'],
- 'DEAR_IDUN' => $information['TIPO_UNIDAD'],
- 'DEAR_IMAG' => $jsonImages,
- 'DEAR_NUPR' => $information['PROVEEDOR'],
- 'DEAR_USMO' => $usuario,
- 'DEAR_FEMO' => $currentDate,
- 'DEAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
-
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD011: Ocurrió un error al obtener el contenido.", $th->getMessage(), 500);
- }
- if (!$validate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD012: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- $arrDetails = $information['DETAILS'];
- foreach ($arrDetails as $keyDetails => $details) {
- $numeroDetails = $details['NO'];
- if ( $details['ESTADO'] === 'Modificado' || $details['ESTADO'] === 'Activo') {
- try {
- $validate = DB::table('S002V01TINAR')->where('INAR_IDIN', '=', $numeroDetails)->update([
- 'INAR_CODI' => $details['CODIGO'],
- 'INAR_MODE' => $details['MODELO'],
- 'INAR_COMO' => $details['MONEDA'],
- 'INAR_PREC' => $details['PRECIO'],
- 'INAR_MOMI' => $details['MONTO_MINIMO'],
- // 'INAR_CANT' => $details['CANTIDAD'],
- 'INAR_CARA' => $details['CARACTERISTICAS'],
- 'INAR_USMO' => $usuario,
- 'INAR_FEMO' => $currentDate,
- 'INAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD013: Ocurrió un error al obtener el contenido.", $th->getMessage(), 500);
- }
- if (!$validate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD014: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- } else if ($details['ESTADO'] === 'Nuevo') {
- try {
- $validate = DB::table('S002V01TINAR')->insertGetId([
- 'INAR_IDDE' => $numeroInformation,
- 'INAR_CODI' => $details['CODIGO'],
- 'INAR_MODE' => $details['MODELO'],
- 'INAR_COMO' => $details['MONEDA'],
- 'INAR_PREC' => $details['PRECIO'],
- 'INAR_MOMI' => $details['MONTO_MINIMO'],
- 'INAR_CARA' => $details['CARACTERISTICAS'],
- 'INAR_NULI' => $requestData['NUMERO_LINEA'],
- 'INAR_USRE' => $usuario,
- 'INAR_FERE' => $currentDate,
- 'INAR_FEAR' => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD015: Ocurrió un error al obtener el contenido.", $th->getMessage(), 500);
- }
- if (!$validate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD016: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- } else if ($details['ESTADO'] === 'Eliminado') {
- try {
- $validate = DB::table('S002V01TINAR')->where('INAR_IDIN', '=', $numeroDetails)->update([
- 'INAR_ESTA' => 'Eliminado',
- 'INAR_USMO' => $usuario,
- 'INAR_FEMO' => $currentDate,
- 'INAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD017: Ocurrió un error al obtener el contenido.", $th->getMessage(), 500);
- }
- if (!$validate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD018: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- }
- }
- } else if ($information['ESTADO'] === 'Nuevo') {
- $arrCodeImages = array();
- foreach ($information['IMAGEN'] as $key => $encIdFile) {
- $idFile = $this->encController->decrypt($encIdFile);
- $arrCode = explode('=', $idFile);
- if ( count($arrCode) == 3 ) {
- $arrStrucuteCode = explode("-", $arrCode[0]);
- $nameCode = explode(".", $arrCode[2]);
- $validateImage = DB::table('S002V01TAFAL')->where([
- ['AFAL_NULI', '=', $requestData['NUMERO_LINEA']],
- ['AFAL_COMO', '=', $arrStrucuteCode['1']],
- ['AFAL_CLDO', '=', $arrStrucuteCode['2']],
- ['AFAL_NOAR', '=', $nameCode[0]],
- ['AFAL_EXTE', '=', $nameCode[1]],
- ])->orderBy('AFAL_NUVE', 'desc')->exists();
- if (!$validateImage) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD019: La imagen con el código $idFile no existe.", [], 500);
- }
- $arrCodeImages[] = $this->encController->encrypt($idFile);
- } else {
- $tempFile = DB::table('S002V01TARTE')->where([
- ['ARTE_NULI', '=', $requestData['NUMERO_LINEA']],
- ['ARTE_IDAR', '=', $idFile],
- ])->first();
-
-
- if(is_null($tempFile)){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_MOD020: El archivo consultado no está registrado', [], 404);
- }else if($tempFile->ARTE_ESTA == 'Eliminado'){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_MOD021: El archivo consultado está eliminado', [], 404);
- }
-
- $fileResponse = $this->documentManagementController->moveFinalFile(
- intval($requestData['NUMERO_LINEA']),
- 'GEAD',
- 'FO',
- $tempFile,
- $usuario,
- );
-
- if(!$fileResponse[0]){
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_MOD022: '.$fileResponse[1], [], 400);
- }
-
- $arrCodeImages[] = $this->encController->encrypt($fileResponse[1]);
- }
- }
- $jsonImages = json_encode($arrCodeImages);
- try {
- $numeroInformation = DB::table('S002V01TDEAR')->insertGetId([
- 'DEAR_DESC' => $information['DESCRIPCION'],
- 'DEAR_CARA' => $information['CARACTERISTICAS'],
- 'DEAR_COWE' => $information['COMPRA_WEB'],
- 'DEAR_IDUN' => $information['TIPO_UNIDAD'],
- 'DEAR_IMAG' => $jsonImages,
- 'DEAR_NUPR' => $information['PROVEEDOR'],
- 'DEAR_IDAR' => $numeroArticulo,
- 'DEAR_NULI' => $requestData['NUMERO_LINEA'],
- 'DEAR_USRE' => $usuario,
- 'DEAR_FERE' => $currentDate,
- 'DEAR_FEAR' => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD023: Ocurrió un error al insertar los datos de la información del artículo.", $th->getMessage(), 500);
- }
- $arrDetails = $information['DETAILS'];
- foreach ($arrDetails as $keyDetails => $details) {
- try {
- DB::table('S002V01TINAR')->insertGetId([
- 'INAR_IDDE' => $numeroInformation,
- 'INAR_CODI' => $details['CODIGO'],
- 'INAR_MODE' => $details['MODELO'],
- 'INAR_COMO' => $details['MONEDA'],
- 'INAR_PREC' => $details['PRECIO'],
- 'INAR_MOMI' => $details['MONTO_MINIMO'],
- 'INAR_CARA' => $details['CARACTERISTICAS'],
- 'INAR_NULI' => $requestData['NUMERO_LINEA'],
- 'INAR_USRE' => $usuario,
- 'INAR_FERE' => $currentDate,
- 'INAR_FEAR' => DB::raw('CURRENT_TIMESTAMP')
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD024: Ocurrió un error al insertar los datos de los detalles del artículo.", $th->getMessage(), 500);
- }
- }
- } else if ($information['ESTADO'] === 'Eliminado') {
- try {
- $validate = DB::table('S002V01TDEAR')->where('DEAR_IDDE', '=', $numeroInformation)->update([
- 'DEAR_ESTA' => 'Eliminado',
- 'DEAR_USMO' => $usuario,
- 'DEAR_FEMO' => $currentDate,
- 'DEAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD025: Ocurrió un error al obtener el contenido.", $th->getMessage(), 500);
- }
- if (!$validate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_MOD026: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- }
- }
- DB::commit(); # Para guardar los cambios en la base de datos
- return $this->responseController->makeResponse(false, "ÉXITO: Modificación Exitosa");
- }
- public function deleteArtitle(Request $request) {
- $validator = Validator::make($request->all(), [
- 'NUMERO_ARTITULO' => 'required|string',
- 'NUMERO_LINEA' => 'required|integer',
- 'USUARIO' => 'required|string',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_DEL000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- DB::beginTransaction();
- $requestData = $request->all();
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($requestData['USUARIO'], $requestData['NUMERO_LINEA']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_ARTITLE_DEL001:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $usuario = $arrResponseCheckUser['response'];
- try {
- $artitleNumber = $this->encController->decrypt($requestData['NUMERO_ARTITULO']);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_DEL002: Ocurrió un error al modificar el registro.",
- $th->getMessage(),
- 500
- );
- }
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $validateUpdate = DB::table('S002V01TARTI')
- ->where('ARTI_IDAR', '=', $artitleNumber)
- ->where('ARTI_NULI', '=', $requestData['NUMERO_LINEA'])
- ->update([
- 'ARTI_ESTA' => 'Eliminado',
- 'ARTI_USMO' => $usuario,
- 'ARTI_FEMO' => $currentDate,
- 'ARTI_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL003: Ocurrió un error al modificar el registro.", $th->getMessage(), 500);
- }
- if (!$validateUpdate) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL004: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- try {
- $arrDescription = DB::table('S002V01TDEAR')
- ->where('DEAR_IDAR', '=', $artitleNumber)
- ->get([ 'DEAR_IDDE AS NUMERO_DESCRIPCION' ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL005: Ocurrió un error al obtener los datos de la descripción del artículo", $th->getMessage(), 500);
- }
- foreach ($arrDescription as $keyDescription => $description) {
- $numeroDescripcion = $description->NUMERO_DESCRIPCION;
- try {
- $validateUpdate = DB::table('S002V01TDEAR')
- ->where('DEAR_IDDE', '=', $numeroDescripcion)
- ->where('DEAR_NULI', '=', $requestData['NUMERO_LINEA'])
- ->update([
- 'DEAR_ESTA' => 'Eliminado',
- 'DEAR_USMO' => $usuario,
- 'DEAR_FEMO' => $currentDate,
- 'DEAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL007: Ocurrió un error al modificar el registro.", $th->getMessage(), 500);
- }
- if (!$validateUpdate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL006: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- try {
- $validateUpdate = DB::table('S002V01TINAR')
- ->where('INAR_IDDE', '=', $numeroDescripcion)
- ->where('INAR_NULI', '=', $requestData['NUMERO_LINEA'])
- ->update([
- 'INAR_ESTA' => 'Eliminado',
- 'INAR_USMO' => $usuario,
- 'INAR_FEMO' => $currentDate,
- 'INAR_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL009: Ocurrió un error al modificar el registro.", $th->getMessage(), 500);
- }
- if (!$validateUpdate) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_DEL008: Ocurrió un error al modificar en la tabla.", [], 500);
- }
- }
- DB::commit(); # Para guardar los cambios en la base de datos
- return $this->responseController->makeResponse(false, "ÉXITO: Eliminación Exitosa");
- }
- public function generateArtitles(Request $request) {
- $validator = Validator::make($request->all(), [
- 'FILE_ZIP' => 'required',
- 'NUMERO_LINEA' => 'required',
- 'USUARIO' => 'required',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "ERR_ARTITLE_MOD000: Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- }
- public function getArtitleByInformation($information, $user, $line) {
- try {
- $objInformation = (array) DB::table('S002V01TINAR')
- ->where('INAR_IDIN', '=', $information)
- ->where('INAR_ESTA', '=', 'Activo')
- ->where('DEAR_ESTA', '=', 'Activo')
- ->where('ARTI_ESTA', '=', 'Activo')
- ->where('FAMI_ESTA', '=', 'Activo')
- ->where('SUBF_ESTA', '=', 'Activo')
- ->where('UNID_ESTA', '=', 'Activo')
- ->where('PROV_ESTA', '=', 'Activo')
- ->join('S002V01TDEAR', 'DEAR_IDDE', '=', 'INAR_IDDE')
- ->join('S002V01TARTI', 'ARTI_IDAR', '=', 'DEAR_IDAR')
- ->join('S002V01TFAMI', 'FAMI_COFA', '=', 'ARTI_COFA')
- ->join('S002V01TSUBF', 'SUBF_COSU', '=', 'ARTI_COSU')
- ->join('S002V01TUNID', 'UNID_IDUN', '=', 'DEAR_IDUN')
- ->join('S002V01TPROV', 'PROV_NUPR', '=', 'DEAR_NUPR')
- ->join('S002V01TCAMO', 'CAMO_COMO', '=', 'INAR_COMO')
- ->first([
- 'INAR_IDIN', // Identificador de Información del artículo
- 'INAR_CODI', // Código del artículo
- 'INAR_MODE', // Modelo del artículo
- DB::raw('CONCAT("(", CAMO_COMO, ") ", CAMO_DESC) AS CAMO_COMO'),
- 'INAR_PREC', // Precio
- 'INAR_CARA', // Características
- 'DEAR_IDDE', // Identificador de la descripción del artículo
- 'DEAR_DESC', // Descripción del artículo
- 'DEAR_CARA', // Características del artículo
- 'DEAR_COWE', // Compra web
- 'DEAR_IMAG', // Imagen
- 'DEAR_IDUN', // Identificador de la unidad
- 'UNID_NOMB', // Nombre de la unidad
- 'UNID_ACRO', // Acrónimo de la familia
- 'DEAR_NUPR', // Número del proveedor
- 'ARTI_IDAR', // Identificador del artículo
- 'ARTI_COFA', // Identificador de la familia
- 'FAMI_NOFA', // Nombre de la familia
- 'ARTI_COSU', // Identificador de la subfamilia
- 'SUBF_NOSU', // Nombre de la subfamilia
- 'ARTI_CODI', // Código del artículo
- 'ARTI_NOMB', // Nombre del artículo
- 'PROV_NOCO', // Nombre comercial
- 'PROV_NOMB', // Nombre del proveedor
- 'PROV_APPA', // Apellido paterno del proveedor
- 'PROV_APMA', // Apellido materno del proveedor
- 'PROV_CORR', // Correo electrónico
- 'PROV_LAD1', // Lada 1
- 'PROV_TEL1', // Teléfono 1
- 'PROV_LAD2', // Lada 2
- 'PROV_TEL2', // Teléfono 2
- 'PROV_XRFC', // R.F.C
- 'PROV_XTAX', // TAX ID
- 'PROV_TIPO', // Tipo
- 'PROV_SIWE', // Sitio Web
- 'PROV_MEPA', // Metodos de pago
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYINFORMATION000: No se pudo realizar la consulta a la base.", $th->getMessage(), 500);
- }
-
- $objInformation['DEAR_IMAG'] = json_decode($objInformation['DEAR_IMAG']);
- $arrUrlImage = array();
- foreach ($objInformation['DEAR_IMAG'] as $key => $imagen) {
- $responseDocument = $this->documentManagementController->privateGetPublicDocumentURL($imagen, $user, $line);
- if ($responseDocument['error']) {
- return $this->responseController->makeResponse(true, "ERR_ARTITLE_GETBYINFORMATION001: Ocurrió un error al obtener la URL de la imágen.", [], 500);
- }
- $arrUrlImage[] = $responseDocument['response']['public_uri'];
- }
- $objInformation['DEAR_IMAG'] = $arrUrlImage;
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $objInformation);
- }
- public function getManagementUnit ($user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- return $this->responseController->makeResponse(true, $arrResponseCheckUser['msg'], [], 401);
- }
- try {
- $arrUnits = DB::table('S002V01TUNID')
- ->where('UNID_NULI', '=', $line)
- ->where('UNID_ESTA', '=', 'Activo')
- ->get([
- 'UNID_IDUN AS ID_UNIDAD',
- 'UNID_NOMB AS UNIDAD',
- 'UNID_ACRO AS ACRONIMO',
- ]);
- $arrUnits = json_decode(json_encode($arrUnits), true);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, 'Ocurrió un error al obtener los datos de la unidad.', [], 500);
- }
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $arrUnits);
- }
- public function createUnit (Request $request) {
- $validator = Validator::make($request->all(), [
- 'UNIDAD' => 'required|string',
- 'ACRONIMO' => 'required|string',
- 'USUARIO' => 'required|string',
- 'NUMERO_LINEA' => 'required|integer',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- $requestData = $request->all();
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($requestData['USUARIO'], $requestData['NUMERO_LINEA']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_WAREHOUSE_GETBY000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $user = $arrResponseCheckUser['response'];
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $validate = DB::table('S002V01TUNID')->insert([
- 'UNID_NULI' => $requestData['NUMERO_LINEA'],
- 'UNID_NOMB' => $requestData['UNIDAD'],
- 'UNID_ACRO' => $requestData['ACRONIMO'],
- 'UNID_USRE' => $user,
- 'UNID_FERE' => $currentDate,
- 'UNID_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "Ocurrió un error al registrar la unidad.", $th->getMessage(), 500);
- }
-
- if (!$validate) {
- return $this->responseController->makeResponse(true, "No se pudo registrar la unidad.", [], 500);
- }
- return $this->responseController->makeResponse(false, "ÉXITO: Registro Exitoso");
- }
- public function updateUnit (Request $request, $idUnit) {
- $validator = Validator::make($request->all(), [
- 'UNIDAD' => 'required|string',
- 'ACRONIMO' => 'required|string',
- 'USUARIO' => 'required|string',
- 'NUMERO_LINEA' => 'required|integer',
- ]);
- if ($validator->fails()) {
- return $this->responseController->makeResponse(
- true,
- "Se encontraron uno o más errores.",
- $this->responseController->makeErrors($validator->errors()->messages()),
- 401
- );
- }
- $requestData = $request->all();
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($requestData['USUARIO'], $requestData['NUMERO_LINEA']);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, $arrResponseCheckUser['msg'], [], 401);
- }
- $user = $arrResponseCheckUser['response'];
- $idUnit = $this->encController->encrypt($idUnit);
- if (is_null($idUnit)) {
- return $this->responseController->makeResponse(true, "Ocurrió un error al obtener el identificador de la unidad.", [], 500);
- }
- try {
- $validateExists = DB::table('S002V01TUNID')
- ->where('UNID_IDUN', '=', $idUnit)
- ->where('UNID_ESTA', '=', 'Activo')
- ->where('UNID_NULI', '=', $requestData['NUMERO_LINEA'])
- ->exists();
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "Ocurrió un error al verificar si la unidad está registrada.", $th->getMessage(), 500);
- }
- if (!$validateExists) {
- return $this->responseController->makeResponse(true, "La unidad no existe.", [], 404);
- }
- $now = $this->functionsController->now();
- $currentDate = $now->toDateTimeString();
- try {
- $validate = DB::table('S002V01TUNID')
- ->where('UNID_IDUN', '=', $idUnit)
- ->where('UNID_ESTA', '=', 'Activo')
- ->where('UNID_NULI', '=', $requestData['NUMERO_LINEA'])
- ->update([
- 'UNID_NOMB' => $requestData['UNIDAD'],
- 'UNID_ACRO' => $requestData['ACRONIMO'],
- 'UNID_USMO' => $user,
- 'UNID_FEMO' => $currentDate,
- 'UNID_FEAR' => DB::raw('CURRENT_TIMESTAMP'),
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "IOcurrió un error al modificar la unidad.", $th->getMessage(), 500);
- }
- if (!$validate) {
- return $this->responseController->makeResponse(true, "No se pudo modificar la unidad.", [], 500);
- }
- return $this->responseController->makeResponse(false, "ÉXITO: Modificación Exitosa");
- }
- public function getUnitById ($idUnit, $user, $line) {
- $arrResponseCheckUser = $this->resourcesController->checkUserEnc($user, $line);
- if ($arrResponseCheckUser['error']) {
- DB::rollBack();
- return $this->responseController->makeResponse(true, 'ERR_WAREHOUSE_GETBY000:'.$arrResponseCheckUser['msg'], [], 401);
- }
- $user = $arrResponseCheckUser['response'];
- $idUnit = $this->encController->decrypt($idUnit);
- if (is_null($idUnit)) {
- return $this->responseController->makeResponse(true, "Ocurrió un error al obtener el identificador de la unidad.", [], 500);
- }
- try {
- $validateExists = DB::table('S002V01TUNID')
- ->where('UNID_IDUN', '=', $idUnit)
- ->where('UNID_ESTA', '=', 'Activo')
- ->where('UNID_NULI', '=', $line)
- ->exists();
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "Ocurrió un error al verificar si la unidad está registrada.", $th->getMessage(), 500);
- }
- if (!$validateExists) {
- return $this->responseController->makeResponse(true, "La unidad no existe.", [], 404);
- }
- try {
- $arrUnit = (array) DB::table('S002V01TUNID')
- ->where('UNID_IDUN', '=', $idUnit)
- ->where('UNID_ESTA', '=', 'Activo')
- ->where('UNID_NULI', '=', $line)
- ->first([
- 'UNID_IDUN AS ID_UNIDAD',
- 'UNID_NOMB AS UNIDAD',
- 'UNID_ACRO AS ACRONIMO',
- ]);
- } catch (\Throwable $th) {
- return $this->responseController->makeResponse(true, "Ocurrió un error al obtener la información de la unidad.", $th->getMessage(), 500);
- }
- return $this->responseController->makeResponse(false, "ÉXITO: Consulta Exitosa", $arrUnit);
- }
- public function deleteUnitById (Request $request, $idUnit) {
- }
- public function registerDescriptionArtitle () {}
- }
|