27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
"""核心应用 URL(聚合各业务 app 的 URL)。"""
|
|
|
|
from django.urls import path, include
|
|
|
|
from .audit_views import audit_log_list, audit_log_summary, audit_log_for_target
|
|
|
|
core_urlpatterns = [
|
|
# 审计日志(只读,迭代第 4 轮)
|
|
path("core/audit-logs/", audit_log_list, name="audit-log-list"),
|
|
path("core/audit-logs/summary/", audit_log_summary, name="audit-log-summary"),
|
|
path("core/audit-logs/timeline/", audit_log_for_target, name="audit-log-timeline"),
|
|
path("catalog/", include("apps.catalog.urls")),
|
|
path("partner/", include("apps.partner.urls")),
|
|
path("inventory/", include("apps.inventory.urls")),
|
|
path("finance/", include("apps.finance.urls")),
|
|
path("purchase/", include("apps.purchase.urls")),
|
|
path("sales/", include("apps.sales.urls")),
|
|
path("report/", include("apps.report.urls")),
|
|
path("channel/", include("apps.channel.urls")),
|
|
path("notify/", include("apps.notify.urls")),
|
|
path("openapi/", include("apps.openapi.urls")),
|
|
path("printing/", include("apps.printing.urls")),
|
|
path("ai/", include("apps.ai.urls")),
|
|
path("billing/", include("apps.billing.urls")),
|
|
path("storefront/", include("apps.storefront.urls")),
|
|
]
|