This commit is contained in:
zman 2025-03-18 12:38:30 -04:00
parent 86498d54b4
commit d76258eb55
3 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@ -175,3 +175,4 @@ temp/
*.db-journal *.db-journal
cookies/ cookies/
alembic/versions/* alembic/versions/*
*.csv

View File

@ -215,6 +215,8 @@ class PricingService:
# Set marketplace price # Set marketplace price
df['TCG Marketplace Price'] = df['new_price'] df['TCG Marketplace Price'] = df['new_price']
df['Title'] = ''
column_mapping = { column_mapping = {
'tcgplayer_id': 'TCGplayer Id', 'tcgplayer_id': 'TCGplayer Id',
'product_line': 'Product Line', 'product_line': 'Product Line',

View File

@ -2,7 +2,7 @@ curl -J http://192.168.1.41:8000/api/tcgplayer/inventory/update --remote-name
curl -J -X POST http://192.168.1.41:8000/api/tcgplayer/inventory/add \ curl -J -X POST http://192.168.1.41:8000/api/tcgplayer/inventory/add \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d '{"open_box_ids": ["1d646fd3-05a9-46c6-8bfb-2e1162ff6f65"]}' \ -d '{"open_box_ids": ["cdb7a1c1-8367-48b7-8f6f-04a404965f2f","0573ae22-c03a-4bd0-a69b-d4411b1eeda8","b7a67043-b8ca-4617-b98f-590368911fa9","ba6774c8-4c2c-4153-9d3e-8d96898d56cf","15f413ee-6e5d-4830-9ffa-c36061131f4c","7cd43f97-db1b-4c59-80ab-23300a6211ab","0e340709-76a3-4747-b874-3d0c56485402","38647632-58e9-40c0-93af-79343041c9fc","e8368373-c607-404d-8058-6a1b4d6eec57","1d646fd3-05a9-46c6-8bfb-2e1162ff6f65","7f776181-0eca-4ccd-85a6-d248218f5c65","e915644b-a2ef-4bf6-ac9e-a5afa73e279d"]}' \
--remote-name --remote-name
curl -X POST http://192.168.1.41:8000/api/boxes \ curl -X POST http://192.168.1.41:8000/api/boxes \