Commit f201ad3da9fcbea47db8ab7fb7022545f390329e
1 parent
d13768aa
添加备注
Showing
11 changed files
with
44 additions
and
0 deletions
testcase/FeedbackCustomerController/test_fc_add.py
@@ -8,6 +8,10 @@ import commons.ConfigDB as db | @@ -8,6 +8,10 @@ import commons.ConfigDB as db | ||
8 | fc=fc_add() | 8 | fc=fc_add() |
9 | ra = random_data() | 9 | ra = random_data() |
10 | 10 | ||
11 | +""" | ||
12 | +进门收费——返点管理——返还人管理——新增返还人 | ||
13 | +""" | ||
14 | + | ||
11 | class test_fc_add(unittest.TestCase): | 15 | class test_fc_add(unittest.TestCase): |
12 | "返还人管理——新增返还人" | 16 | "返还人管理——新增返还人" |
13 | @classmethod | 17 | @classmethod |
testcase/FeedbackCustomerController/test_fc_edit.py
@@ -9,6 +9,10 @@ ra = random_data() | @@ -9,6 +9,10 @@ ra = random_data() | ||
9 | fca = fc_add() | 9 | fca = fc_add() |
10 | import commons.ConfigDB as db | 10 | import commons.ConfigDB as db |
11 | 11 | ||
12 | +""" | ||
13 | +进门收费——返点管理——返还人管理——修改返还人 | ||
14 | +""" | ||
15 | + | ||
12 | fc=fc_edit() | 16 | fc=fc_edit() |
13 | class test_fc_edit(unittest.TestCase): | 17 | class test_fc_edit(unittest.TestCase): |
14 | "返还人管理——修改返还人" | 18 | "返还人管理——修改返还人" |
testcase/FeedbackCustomerController/test_fc_view.py
@@ -8,6 +8,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | @@ -8,6 +8,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | ||
8 | ad = fc_add() | 8 | ad = fc_add() |
9 | vi = fc_view() | 9 | vi = fc_view() |
10 | 10 | ||
11 | +""" | ||
12 | +进门收费——返点管理——返还人管理——查看返还人 | ||
13 | +""" | ||
14 | + | ||
11 | class test_fc_view(unittest.TestCase): | 15 | class test_fc_view(unittest.TestCase): |
12 | "返还人管理——查看返还人" | 16 | "返还人管理——查看返还人" |
13 | 17 |
testcase/FeedbackCustomerController/test_feedback_customer_disable.py
@@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | @@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | ||
6 | fcd = feedback_customer_disable() | 6 | fcd = feedback_customer_disable() |
7 | import commons.ConfigDB as db | 7 | import commons.ConfigDB as db |
8 | 8 | ||
9 | +""" | ||
10 | +进门收费——返点管理——返还人管理——禁用返还人 | ||
11 | +""" | ||
12 | + | ||
9 | class test_feedback_customer_disable(unittest.TestCase): | 13 | class test_feedback_customer_disable(unittest.TestCase): |
10 | "返还人管理——返还人禁用" | 14 | "返还人管理——返还人禁用" |
11 | @classmethod | 15 | @classmethod |
testcase/FeedbackCustomerController/test_feedback_customer_enable.py
@@ -8,6 +8,10 @@ fce = feedback_customer_enable() | @@ -8,6 +8,10 @@ fce = feedback_customer_enable() | ||
8 | fcd = feedback_customer_disable | 8 | fcd = feedback_customer_disable |
9 | import commons.ConfigDB as db | 9 | import commons.ConfigDB as db |
10 | 10 | ||
11 | +""" | ||
12 | +进门收费——返点管理——返还人管理——启用返还人 | ||
13 | +""" | ||
14 | + | ||
11 | class test_feedback_customer_enable(unittest.TestCase): | 15 | class test_feedback_customer_enable(unittest.TestCase): |
12 | "返还人管理——返还人启用" | 16 | "返还人管理——返还人启用" |
13 | @classmethod | 17 | @classmethod |
testcase/FeedbackCustomerController/test_feedback_customer_query.py
@@ -7,6 +7,10 @@ import datetime | @@ -7,6 +7,10 @@ import datetime | ||
7 | import commons.ConfigDB as db | 7 | import commons.ConfigDB as db |
8 | fcq = feedback_customer_query() | 8 | fcq = feedback_customer_query() |
9 | 9 | ||
10 | +""" | ||
11 | +进门收费——返点管理——返还人管理——返还人列表查询 | ||
12 | +""" | ||
13 | + | ||
10 | class test_feedback_customer_query(unittest.TestCase): | 14 | class test_feedback_customer_query(unittest.TestCase): |
11 | "返还人管理——返还人列表查询" | 15 | "返还人管理——返还人列表查询" |
12 | @classmethod | 16 | @classmethod |
testcase/FeedbackOrderController/test_feedback_order_settlement.py
@@ -9,6 +9,10 @@ fosq = feedback_order_settlement_query() | @@ -9,6 +9,10 @@ fosq = feedback_order_settlement_query() | ||
9 | import datetime | 9 | import datetime |
10 | fos = feedback_order_settlement() | 10 | fos = feedback_order_settlement() |
11 | 11 | ||
12 | +""" | ||
13 | +进门收费——返点管理——结账管理——选择需要返点的订单进行结账 | ||
14 | +""" | ||
15 | + | ||
12 | class test_feedback_order_settlement(unittest.TestCase): | 16 | class test_feedback_order_settlement(unittest.TestCase): |
13 | "结账管理——选择需要返点的订单进行结账" | 17 | "结账管理——选择需要返点的订单进行结账" |
14 | @classmethod | 18 | @classmethod |
testcase/FeedbackOrderController/test_feedback_order_settlement_query.py
@@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | @@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | ||
6 | fosq = feedback_order_settlement_query() | 6 | fosq = feedback_order_settlement_query() |
7 | import datetime | 7 | import datetime |
8 | 8 | ||
9 | +""" | ||
10 | +进门收费——返点管理——结账管理——根据返还人和缴费时间进行查询 | ||
11 | +""" | ||
12 | + | ||
9 | class test_feedback_order_settlement_query(unittest.TestCase): | 13 | class test_feedback_order_settlement_query(unittest.TestCase): |
10 | "结账管理列表查询——根据返还人和缴费时间进行查询" | 14 | "结账管理列表查询——根据返还人和缴费时间进行查询" |
11 | @classmethod | 15 | @classmethod |
testcase/feedbackAccounrecordController_list/test_feedbackAccounrecordController_list.py
@@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | @@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | ||
6 | import commons.ConfigDB as db | 6 | import commons.ConfigDB as db |
7 | farcl = feedbackAccounrecordController_list() | 7 | farcl = feedbackAccounrecordController_list() |
8 | 8 | ||
9 | +""" | ||
10 | +进门收费——返点管理——交易明细——根据交易时间和交易流水号查询 | ||
11 | +""" | ||
12 | + | ||
9 | class test_feedbackAccounrecordController_list(unittest.TestCase): | 13 | class test_feedbackAccounrecordController_list(unittest.TestCase): |
10 | "交易明细——根据交易时间和交易流水号查询" | 14 | "交易明细——根据交易时间和交易流水号查询" |
11 | @classmethod | 15 | @classmethod |
testcase/feedbackOrderController_settlementlist/feedbackOrderController_querySumAmount.py
@@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | @@ -6,6 +6,10 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | ||
6 | import datetime | 6 | import datetime |
7 | qsa = querySumAmount() | 7 | qsa = querySumAmount() |
8 | 8 | ||
9 | +""" | ||
10 | +进门收费——返点管理——已结账明细——已结账笔数已结账金额查询 | ||
11 | +""" | ||
12 | + | ||
9 | class test_feedbackOrderController_querySumAmount(unittest.TestCase): | 13 | class test_feedbackOrderController_querySumAmount(unittest.TestCase): |
10 | "已结账明细——查询已结账笔数和已结账金额" | 14 | "已结账明细——查询已结账笔数和已结账金额" |
11 | @classmethod | 15 | @classmethod |
testcase/feedbackOrderController_settlementlist/test_feedbackOrderController_settlementlist.py
@@ -7,6 +7,10 @@ import commons.ConfigDB as db | @@ -7,6 +7,10 @@ import commons.ConfigDB as db | ||
7 | import datetime | 7 | import datetime |
8 | focsl = feedbackOrderController_settlementlist() | 8 | focsl = feedbackOrderController_settlementlist() |
9 | 9 | ||
10 | +""" | ||
11 | +进门收费——返点管理——已结账明细——返还笔数结账时间金额查询 | ||
12 | +""" | ||
13 | + | ||
10 | class test_feedbackOrderController_settlementlist(unittest.TestCase): | 14 | class test_feedbackOrderController_settlementlist(unittest.TestCase): |
11 | "已结账明细——根据返还人和结算时间进行查询" | 15 | "已结账明细——根据返还人和结算时间进行查询" |
12 | @classmethod | 16 | @classmethod |