Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
amazon_reports
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
common
amazon_reports
Commits
f946003c
Commit
f946003c
authored
Feb 12, 2025
by
邱阿朋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(src): 更新店铺编码相关提示信息
- 在多个脚本中更新了店铺编码的默认值和提示信息 - 移除了 payment_erp.py 中的 payee
parent
39188878
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
7 deletions
+5
-7
advertise_erp.py
src/advertise_erp.py
+1
-1
payment.py
src/payment.py
+1
-1
payment_erp.py
src/payment_erp.py
+1
-3
return_goods.py
src/return_goods.py
+1
-1
spa_search.py
src/spa_search.py
+1
-1
No files found.
src/advertise_erp.py
View file @
f946003c
...
...
@@ -56,7 +56,7 @@ def main():
if
__name__
==
'__main__'
:
try
:
country
=
helper
.
get_input_with_default
(
"国家(目前支持[DE,FR,JP,CA,UK,US])"
,
"US"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
"
,
"US-VC
"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
(DE-VC,FR-VC,JP-VC,CA-VC,UK-VC,VECELO])"
,
"VECELO
"
)
main
()
except
KeyboardInterrupt
:
pass
...
...
src/payment.py
View file @
f946003c
...
...
@@ -440,7 +440,7 @@ if __name__ == '__main__':
try
:
country
=
helper
.
get_input_with_default
(
"国家(目前支持[DE,FR,JP,CA,UK,US])"
,
"US"
)
payeeCode
=
helper
.
get_input_with_default
(
"payeeCode"
,
"VECET"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
"
,
"US-VC
"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
(DE-VC,FR-VC,JP-VC,CA-VC,UK-VC,VECELO])"
,
"VECELO
"
)
domain
.
domain_page
(
page
,
country
)
main
()
page
.
close
()
...
...
src/payment_erp.py
View file @
f946003c
...
...
@@ -11,7 +11,6 @@ from dotenv import load_dotenv
from
helper
import
helper
,
file
,
domain
,
logger
,
redisx
,
rabbitmq
country
=
None
payeeCode
=
None
shop_code
=
None
load_dotenv
()
...
...
@@ -121,8 +120,7 @@ def main():
if
__name__
==
'__main__'
:
try
:
country
=
helper
.
get_input_with_default
(
"国家(目前支持[DE,FR,JP,CA,UK,US])"
,
"US"
)
payeeCode
=
helper
.
get_input_with_default
(
"payeeCode"
,
"VECET"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码"
,
"US-VC"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码(DE-VC,FR-VC,JP-VC,CA-VC,UK-VC,VECELO])"
,
"VECELO"
)
domain
.
domain_page
(
page
,
country
)
main
()
page
.
close
()
...
...
src/return_goods.py
View file @
f946003c
...
...
@@ -145,7 +145,7 @@ def push_data_queue(file_name):
if
__name__
==
'__main__'
:
try
:
country
=
helper
.
get_input_with_default
(
"国家(目前支持[DE,FR,JP,CA,UK,US])"
,
"US"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
"
,
"US-VC
"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
(DE-VC,FR-VC,JP-VC,CA-VC,UK-VC,VECELO])"
,
"VECELO
"
)
domain
.
domain_page
(
page
,
country
)
main
()
page
.
close
()
...
...
src/spa_search.py
View file @
f946003c
...
...
@@ -348,7 +348,7 @@ def push_data_queue(file_name):
if
__name__
==
'__main__'
:
try
:
country
=
helper
.
get_input_with_default
(
"国家(目前支持[DE,FR,JP,CA,UK,US])"
,
"US"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
"
,
"US-VC
"
)
shop_code
=
helper
.
get_input_with_default
(
"店铺编码
(DE-VC,FR-VC,JP-VC,CA-VC,UK-VC,VECELO])"
,
"VECELO
"
)
domain
.
domain_page
(
page
,
country
)
main
()
page
.
close
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment