HimoolERP/apps/statistic/views.py

24 lines
408 B
Python
Raw Normal View History

2021-12-16 17:54:31 +08:00
from extensions.common.schema import *
from extensions.common.base import *
2021-11-04 23:49:56 +08:00
from extensions.permissions import *
from extensions.exceptions import *
from extensions.viewsets import *
2021-11-04 17:35:34 +08:00
2021-11-04 23:49:56 +08:00
2021-12-26 14:27:13 +08:00
class PurchaseReportViewSet(FunctionViewSet):
"""采购报表"""
def statistic():
"""统计"""
def detial():
"""明细"""
def group_by_goods():
"""商品汇总"""
2021-11-04 23:49:56 +08:00
__all__ = [
]