add excel

This commit is contained in:
2026-01-26 15:25:19 +03:30
parent 5fde0a680f
commit 2c2e060f6a
80 changed files with 285 additions and 5 deletions

View File

@@ -2,7 +2,8 @@ from django.urls import include, path
from rest_framework.routers import DefaultRouter
from app import views as app_views
from app.excel_processing import transporting_detail_excel, total_killhouse_excel, hatching_excel, all_hatching_excel, \
all_send_different_bar_excel, transport_carcass_detail_excel, guilds_transport_carcass_detail_excel
all_send_different_bar_excel, transport_carcass_detail_excel, guilds_transport_carcass_detail_excel, \
all_products_transport_excel
from app.helper import get_bar_info, test_city, api_get_hatching_permit_code
from app.scripts import update_poultry_city_province
from app.views import get_transport_to_kill, add_kill_house, update_hatching, get_breeds, dashboard_total_kill_house, \
@@ -234,6 +235,7 @@ urlpatterns = [
path('get-all-products-transport-dashboard-by-code/', get_all_products_transport_dashboard_by_code),
path('get-all-products-transport-products-by-code/', get_all_products_transport_products_by_code),
path('get-all-products-transport-provinces-by-code/', get_all_products_transport_provinces_by_code),
path('all_products_transport_excel/', all_products_transport_excel),
]