nes-num lines-num-old"> 60
+
61
+    <main class="col-md-12 ms-sm-auto col-lg-12 px-md-4 py-3">
62
+      {% include "_messages.html" %}
63
+      {% block content %}
64
+        <h1>Content is Here</h1>
65
+      {% endblock %}
66
+    </main>
67
+  </div>
68
+</div>
69
+
70
+
71
+    <script src="{% static "bootstrap/dist/js/bootstrap.bundle.min.js" %}"></script>
72
+
73
+      <script src="https://cdn.jsdelivr.net/npm/feather-icons@4.28.0/dist/feather.min.js" integrity="sha384-uO3SXW5IuS1ZpFPKugNNWqTZRRglnUJK6UAZ/gxOX80nxEkN9NcGZTftn6RzhGWE" crossorigin="anonymous"></script>
74
+      <script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.4/dist/Chart.min.js" integrity="sha384-zNy6FEbO50N+Cg5wap8IKA4M/ZnLJgzc6w2NqACZaK0u0FXfOWRRJOnQtpZun8ha" crossorigin="anonymous"></script>
75
+      <script src="{% static "alpinejs/dist/cdn.js" %}"></script>
76
+      <script src="{% static "js/dashboard.js" %}"></script>
77
+  </body>
78
+</html>

File diff suppressed because it is too large
+ 74 - 22856
network-result.ipynb


+ 1 - 0
requirements.txt

@@ -91,3 +91,4 @@ django-autotranslate
91 91
 pymongo
92 92
 dnspython
93 93
 ttp
94
+humanize

BIN
sample_1705327996.xlsx


tum/ecoloop - Gogs: Simplico Git Service

Nessuna descrizione

project_scopes 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Ecoloop – Project Scopes (Summary)
  2. 1) Core Operations
  3. - Customer onboarding, sites/locations, service agreements, materials catalog and units.
  4. - Pickup lifecycle: request → schedule/assign → collection → facility intake → weigh ticket → completion.
  5. - Inventory touchpoints via weigh lines; optional sorting/shipment later.
  6. 2) Pricing, Billing, and Payouts
  7. - Org/customer price lists with buy/sell directions and effective pricing per unit.
  8. - Automatic invoice generation from weigh tickets; payments tracking.
  9. - Payouts to customers for buy-priced materials.
  10. 3) Bidding Marketplace
  11. - Factories post scrap listings with estimated quantities and auction rules (open/sealed-ready).
  12. - Recyclers place bids; min-increment and reserve enforced; invite-only or public.
  13. - Award flow selects winner and creates a pickup order.
  14. 4) Users, Roles, and Portal
  15. - Roles: owner, manager, driver, customer, auditor across organizations.
  16. - Customer/driver portal endpoints for assignments, status changes, proofs.
  17. - JWT auth (Djoser), Allauth for social sign-in (optional).
  18. 5) Compliance & Documents
  19. - Upload and attach documents/photos/certificates to core records.
  20. - Audit logs on key actions and state transitions.
  21. 6) Reporting & Analytics
  22. - Leaderboards (benefit events), volume and revenue summaries (monthly/periodic).
  23. - Filters by org, date range, status.
  24. 7) Multi-Org, Locale, and Config
  25. - Multi-organization tenancy, currency codes (THB/USD, etc.), kg/lb units.
  26. - ENV-based settings, Postgres database, media/static management.
  27. 8) Developer Experience
  28. - Docker-compose for local dev; Tailwind for UI apps.
  29. - Management commands: seed_ecoloop, ecoloop_auto_close_award.
  30. - DRF viewsets + schema via drf-spectacular; router under /api.