Commit f201ad3da9fcbea47db8ab7fb7022545f390329e

Authored by wenleiming
1 parent d13768aa

添加备注

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