forked from erp-dev/erp
9 lines
211 B
Python
9 lines
211 B
Python
"""
|
|
Shipment API 模块
|
|
|
|
提供出货单和销售品相关的 API 接口
|
|
"""
|
|
from .views import SalesItemByPrintingOrderView, ShipmentCreateView
|
|
|
|
__all__ = ['SalesItemByPrintingOrderView', 'ShipmentCreateView']
|