""" Shipment API 模块 提供出货单和销售品相关的 API 接口 """ from .views import ( SalesItemDetailView, SalesItemByCustomerView, SalesItemByPrintingOrderView, SalesItemCreateView, ShipmentStatusUpdateView, ShipmentDeliveryBindShipmentsView, ShipmentDeliveryDetailView, ShipmentDeliveryListCreateView, ShipmentDeliveryCancelView, ShipmentDeliveryStatusUpdateView, ShipmentSalesItemCustomerListView, ShipmentListCreateView, ShipmentDetailView, ShipmentExternalCreateView, ) __all__ = [ 'SalesItemDetailView', 'SalesItemByCustomerView', 'SalesItemByPrintingOrderView', 'SalesItemCreateView', 'ShipmentStatusUpdateView', 'ShipmentDeliveryBindShipmentsView', 'ShipmentDeliveryDetailView', 'ShipmentDeliveryListCreateView', 'ShipmentDeliveryCancelView', 'ShipmentDeliveryStatusUpdateView', 'ShipmentSalesItemCustomerListView', 'ShipmentListCreateView', 'ShipmentDetailView', 'ShipmentExternalCreateView', ]