施肥散布実績機能を実装し運搬・作業記録・在庫連携を追加

This commit is contained in:
Akira
2026-03-17 19:28:52 +09:00
parent 865d53ed9a
commit 140d5e5a4d
31 changed files with 2053 additions and 248 deletions

View File

@@ -45,6 +45,7 @@ INSTALLED_APPS = [
'apps.weather',
'apps.fertilizer',
'apps.materials',
'apps.workrecords',
]
MIDDLEWARE = [

View File

@@ -59,4 +59,5 @@ urlpatterns = [
path('api/weather/', include('apps.weather.urls')),
path('api/fertilizer/', include('apps.fertilizer.urls')),
path('api/materials/', include('apps.materials.urls')),
path('api/workrecords/', include('apps.workrecords.urls')),
]