mirror of
https://github.com/himool/HimoolERP.git
synced 2026-01-15 22:04:27 +08:00
13 lines
312 B
Python
13 lines
312 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class PurchaseReportPagination(PageNumberPagination):
|
|
page_size = 20
|
|
page_query_param = 'page'
|
|
max_page_size = 20
|
|
|
|
|
|
class SalesReportPagination(PageNumberPagination):
|
|
page_size = 20
|
|
page_query_param = 'page'
|
|
max_page_size = 20
|