mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 03:47:42 +08:00
23 lines
408 B
Python
23 lines
408 B
Python
from extensions.common.schema import *
|
|
from extensions.common.base import *
|
|
from extensions.permissions import *
|
|
from extensions.exceptions import *
|
|
from extensions.viewsets import *
|
|
|
|
|
|
class PurchaseReportViewSet(FunctionViewSet):
|
|
"""采购报表"""
|
|
|
|
def statistic():
|
|
"""统计"""
|
|
|
|
def detial():
|
|
"""明细"""
|
|
|
|
def group_by_goods():
|
|
"""商品汇总"""
|
|
|
|
|
|
__all__ = [
|
|
|
|
]
|