Files
hossein-por-shop/backend/product/cron.py
T
2025-03-09 01:13:21 +03:30

5 lines
167 B
Python

from product.models import ProductVariant
def update_product_prices():
print('calling the update product prices from cron')
ProductVariant.update_all_prices()