diff --git a/app/services/pricing.py b/app/services/pricing.py index 3fdc1d3..58136b4 100644 --- a/app/services/pricing.py +++ b/app/services/pricing.py @@ -13,8 +13,8 @@ import logging logger = logging.getLogger(__name__) -ACTIVE_PRICING_ALGORITHIM = 'tcgplayer_recommended_algo' # 'default_pricing_algo' or 'tcgplayer_recommended_algo' -FREE_SHIPPING = True +ACTIVE_PRICING_ALGORITHIM = 'default_pricing_algo' # 'default_pricing_algo' or 'tcgplayer_recommended_algo' +FREE_SHIPPING = False class PricingService: diff --git a/requests.md b/requests.md index ea487e3..0c186db 100644 --- a/requests.md +++ b/requests.md @@ -6,15 +6,15 @@ curl -J -X POST http://192.168.1.41:8000/api/tcgplayer/inventory/add \ --remote-name curl -X POST http://192.168.1.41:8000/api/boxes \ --F "type=collector" \ +-F "type=play" \ -F "set_code=TDM" \ -F "sku=1234" \ --F "num_cards_expected=123" +-F "num_cards_expected=420" -curl -X POST "http://192.168.1.41:8000/api/boxes/d95d26a8-1f82-47f2-89fa-3f88a4636823/open" \ - -F "product_id=d95d26a8-1f82-47f2-89fa-3f88a4636823" \ - -F "file_ids=0f29efd2-448c-4a05-ba49-1420fd3d524b" \ - -F "date_opened=2025-04-04" +curl -X POST "http://192.168.1.41:8000/api/boxes/a77194be-8bd6-41cc-89a0-820e92ef9c04/open" \ + -F "product_id=a77194be-8bd6-41cc-89a0-820e92ef9c04" \ + -F "file_ids=b11a0292-bfdc-43de-90a8-6eb383332201" \ + -F "date_opened=2025-04-14" curl -X POST "http://192.168.1.41:8000/api/processOrders" \ -H "Content-Type: application/json" \