This commit is contained in:
Alex55 2026-03-24 18:22:23 +02:00
parent 4d72175bca
commit ea8fda702b
8 changed files with 9 additions and 9 deletions

Binary file not shown.

View File

@ -13,10 +13,10 @@ sys.path.insert(0, project_root)
# print(db_price) # print(db_price)
download_products() # download_products()
download_prices() download_prices()
decrypt_and_unpack("prices") decrypt_and_unpack("prices")
decrypt_and_unpack("products") # decrypt_and_unpack("products")
add_product() # add_product()
update_prices() update_prices()

View File

@ -189,7 +189,7 @@ def get_order_content(order_id):
return content return content
# content = get_order_content(5388351) # content = get_order_content(5388720)
# print(content) # print(content)
# orders = get_orders() # orders = get_orders()

View File

@ -173,7 +173,7 @@ def update_prices():
data = [] data = []
for item in prices: for item in prices:
sku = item["sku"] sku = item["sku"]
price = item.get("basePrice") price = item.get("price")
price_gg = item.get("baseSuggestedRetailPrice") price_gg = item.get("baseSuggestedRetailPrice")
price_sales =item.get("discountPercentage") price_sales =item.get("discountPercentage")
is_sale = item.get("isSale") is_sale = item.get("isSale")

View File

@ -4,7 +4,7 @@ import os
import sqlite3 import sqlite3
import json import json
# from services.rokky import ones # from services.rokky import ones
from API.rok import create_order from API.rok import create_order, get_order_content
from API.TG import send_telegram from API.TG import send_telegram
from services.orders import get_sku from services.orders import get_sku
from services.gg import get_product, create_messagea from services.gg import get_product, create_messagea
@ -68,7 +68,7 @@ def index1():
return jsonify({"error": str(e)}), 500 return jsonify({"error": str(e)}), 500
conn.close() conn.close()
create_order(sku_rokky, price_rokky, id_i) send_telegram(create_order(sku_rokky, price_rokky, id_i))
return jsonify({"success": True}), 200 return jsonify({"success": True}), 200

View File

@ -69,7 +69,7 @@ def send_html_flow(ids):
"year": 2026 "year": 2026
} }
to_addr = row[5] to_addr = row[5]
# send_html_email(to_addr, data) send_html_email(to_addr, data)
message = ( message = (
f"🔹Спасибо за покупку в WST Keys (West Store Trusted Keys)\n\n" f"🔹Спасибо за покупку в WST Keys (West Store Trusted Keys)\n\n"
f"🔑 Ваш ключ: {row[13]}\n\n" f"🔑 Ваш ключ: {row[13]}\n\n"
@ -77,7 +77,7 @@ def send_html_flow(ids):
"💬 Если у вас возникнут вопросы — напишите нам.\n" "💬 Если у вас возникнут вопросы — напишите нам.\n"
"⭐️ Нам очень важно ваше мнение, пожалуйста, оставьте отзыв." "⭐️ Нам очень важно ваше мнение, пожалуйста, оставьте отзыв."
) )
create_messagea(row[0], message ) create_messagea(row[1], message )