ScripPython

SyncUpdate2IONOS
Luis Angel Rendon Arrazola 2 years ago
commit 09b1b5b945
  1. 147
      SyncReferences2IONOS.py
  2. 22
      config/config.json
  3. 1
      log/Referencias.txt
  4. 1
      log/fechayHora.txt

@ -0,0 +1,147 @@
import pyodbc as po
import json
import shutil
import os
import datetime
import zipfile
import requests
import urllib3
import os.path
import sys
import datetime as dt
CurrentPath = os.path.dirname(os.path.realpath(__file__))
log_file = "./log/Referencias.txt"
if not os.path.isfile(CurrentPath + log_file):
with open(CurrentPath + log_file, 'w') as f:
f.write("")
CurrentPath = os.path.dirname(os.path.realpath(__file__))
log_file1 = "./log/fechayHora.txt"
if not os.path.isfile(CurrentPath + log_file1):
with open(CurrentPath + log_file1, 'w') as f:
f.write("")
urllib3.disable_warnings()
CurrentPath = os.path.dirname(os.path.realpath(__file__))
with open(CurrentPath+"/config/config.json") as json_data_file:
config = json.load(json_data_file)
ServerSIR = config['ServerSIR']
DatabaseSIR = config['DatabaseSIR']
UsernameSIR = config['DBUserSIR']
PasswordSIR = config['DBPasswordSIR']
RepositoryArchivoElectronicoOficial = config['RepositoryArchivoElectronicoOficial']
'''RepositoryArchivoElectronicoOficial = 'c:/data/temp/'''
TempFolder= 'c:/tmp/'
today = datetime.date.today()
YEAR = today.year
def ZipReference(foldername, TempFolder, Cliente):
zipobj = zipfile.ZipFile(TempFolder+ '_____'+ Cliente + '.zip', 'w', zipfile.ZIP_DEFLATED)
rootlen = len(TempFolder) + 1
for base, dirs, files in os.walk(TempFolder):
for file in files:
fn = os.path.join(base, file)
zipobj.write(fn, fn[rootlen:])
def WriteToLogDate(log_file, referencia):
fecha = dt.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
with open(log_file, 'a') as f:
f.write(f"{fecha} - {referencia}\n")
f.flush()
def WriteToLog(referencia):
processed_files = []
with open('./log/Referencias.txt', 'r') as f:
for line in f:
processed_files.append(line.strip())
referencia = referencia.replace('[', '')
referencia = referencia.replace(']', '')
if referencia in processed_files:
print(f"El archivo {referencia} ya ha sido procesado.")
return False
with open('./log/Referencias.txt', 'a') as f:
f.write(f"{referencia}\n")
f.flush()
log_file = "./log/fechayHora.txt"
WriteToLogDate(log_file, referencia)
print(f"El archivo {referencia} ha sido registrado.")
return True
def CreateFolderContent():
try:
# Leer archivo de registro y obtener lista de referencias procesadas
processed_references = []
with open('./log/Referencias.txt', 'r') as f:
for line in f:
reference = line.strip()
processed_references.append(reference)
# Obtener archivos a procesar
files2process = []
cnxn = po.connect(
"DRIVER={ODBC Driver 17 for SQL Server};SERVER=" + ServerSIR
+ ";DATABASE=" + DatabaseSIR
+ ";UID=" + UsernameSIR
+ ";PWD=" + PasswordSIR
)
cursor = cnxn.cursor()
cursor.execute("""SELECT P.sReferencia, p.Archivo, P.Aduana, P.Patente, P.Pedimento, P.[Pedimento Fecha Pago], Peds.nTipoCambio,
P.Clave, P.Cliente FROM SIR.Admin.SIR_VT_PedimPagados P
INNER JOIN SIR.SIR.SIR_149_PEDIMENTO AS Peds ON Peds.nIdPedimento149=ID
WHERE P.ClienteClave=2096 and p.[Pedimento FechaPago]>=CAST( GETDATE()-2 AS Date )""")
for row in cursor:
referencia = row[0]
archivoM = row[1]
cliente = row[8]
referenceFolder = TempFolder + referencia
if os.path.exists(referenceFolder):
shutil.rmtree(referenceFolder)
shutil.copytree(RepositoryArchivoElectronicoOficial + str(YEAR) + '/' + referencia, referenceFolder)
zip_file = referenceFolder+'_____'+cliente+'.zip'
if os.path.exists(zip_file):
# Verificar si la referencia ya ha sido procesada
if referencia in processed_references:
print(f"La referencia {referencia} ya ha sido procesada.")
else:
files2process.append(zip_file)
else:
ZipReference(referencia, referenceFolder, cliente)
files2process.append(zip_file)
for file in files2process:
# Obtener referencia del archivo
filename = os.path.basename(file)
reference = filename.split('_____')[0]
# Procesar archivo
if WriteToLog(reference):
processed_references.append(reference)
URL = 'http://localhost:5000/api/AmazonInvoice/UploadSIRReference?ArchivoM='+archivoM
multiple_files = []
multiple_files.append(('files', (file.replace(TempFolder,''), open(file, 'rb'), 'application/zip')))
data = {
"ArchivoM": archivoM
}
r = requests.post(url=URL,files=multiple_files, verify=False, timeout=30)
except Exception as e:
print("Error: %s" % e)
''' contents = [os.path.join(TempFolder, i) for i in os.listdir(TempFolder)]
[shutil.rmtree(i) if os.path.isdir(i) and not os.path.islink(i) else os.remove(i) for i in contents] '''
CreateFolderContent()

@ -0,0 +1,22 @@
{
"server": ".",
"database": "GEMCO",
"username": "sa",
"password": "Chispa10",
"smtp_server": "smtp.ionos.com",
"smtp_port": 587,
"smtp_username": "noreply@gemcousa.mx",
"smtp_password": "Mx77lf%02",
"sender": "noreply@gemcousa.mx",
"recipient": "lrendon@gemcousa.com",
"ServerSIR": "192.168.100.11",
"DatabaseSIR": "SIR",
"DBUserSIR": "usersir",
"DBPasswordSIR": "S1r22$Us",
"RepositoryArchivoElectronicoOficial": "Z:/Recursos/ControlDocumentos/IMPORTADORA AMAZON MEXICO S DE RL DE CV/"
}

@ -0,0 +1 @@
23-00401I

@ -0,0 +1 @@
2023-03-30 14:15:40 - 23-00401I
Loading…
Cancel
Save