本文整理汇总了Python中tests.worker_accounting.class_accounting.AccountingMethods.get_PaginationDto方法的典型用法代码示例。如果您正苦于以下问题:Python AccountingMethods.get_PaginationDto方法的具体用法?Python AccountingMethods.get_PaginationDto怎么用?Python AccountingMethods.get_PaginationDto使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tests.worker_accounting.class_accounting.AccountingMethods
的用法示例。
在下文中一共展示了AccountingMethods.get_PaginationDto方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: created_req
# 需要导入模块: from tests.worker_accounting.class_accounting import AccountingMethods [as 别名]
# 或者: from tests.worker_accounting.class_accounting.AccountingMethods import get_PaginationDto [as 别名]
def created_req(limit_n=1, offset_n=0):
""" Формируем запрос для условий выборки товара.
:param limit_n: лимит
:param offset_n: смещение
:return: запрос
"""
pag = AccountingMethods.get_PaginationDto(limit=limit_n, offset=offset_n)
search_req = WarehouseMethods.get_SearchRequestDto(search_category=index.categoryId, pagination=pag,
stock_states=[1, 2, 3, 4, 5],
moderation_states=[1, 2, 3, 4])
p = services.warehouse_index.root.tframed.search(search_req)
return p