Commit Graph

3 Commits

Author SHA1 Message Date
Quality App Developer
d5b043c762 Fix Docker build and add labels test data
- Fix Docker build issues:
  * Add missing system dependencies (build-essential, python3-dev, libpq-dev)
  * Fix requirements.txt formatting (separate Flask-Session and openpyxl)
  * Update openpyxl version to 3.1.5 (3.10.0 was invalid)
- Set proper folder permissions for Docker write access (app/ and data/)
- Add comprehensive test data for labels module:
  * 8 sample orders (TEST-ORD-001 through TEST-ORD-008)
  * Mix of printed/unprinted orders for testing
  * Various product types, customers, and delivery dates
  * Ready for QZ Tray printing functionality testing
- Include test data generation scripts for future use
- Application now fully containerized and ready for labels/printing testing
2026-02-15 12:05:20 +02:00
Quality App Developer
aa9882c3b1 feat: Add order_for_labels table to database initialization
- Added order_for_labels table to initialize_db.py with columns:
  * comanda_productie: Production order code (indexed)
  * cod_articol: Article code
  * descr_com_prod: Production order description
  * cantitate: Quantity
  * com_achiz_client: Client purchase order
  * nr_linie_com_client: Client order line number
  * customer_name: Customer name
  * customer_article_number: Customer's article reference
  * open_for_order: Open for order flag
  * line_number: Line number reference
  * printed_labels: Print status (indexed, default 0)
  * data_livrara: Delivery date
  * dimensiune: Dimensions
  * Indexes on: comanda_productie, printed_labels, created_at
- Added order_for_labels schema verification to db_schema_verifier.py
- Table supports labels printing module with proper indexing for queries
- Timestamps: created_at, updated_at for audit trail
2026-02-02 01:24:38 +02:00
Quality App Developer
8de85ca87f feat: Implement warehouse module roles with auto-schema repair and remove module access section
- Add SchemaVerifier class for automatic database schema verification and repair
- Implement warehouse_manager (Level 75) and warehouse_worker (Level 35) roles
- Add zone-based access control for warehouse workers
- Implement worker-manager binding system with zone filtering
- Add comprehensive database auto-repair on Docker initialization
- Remove Module Access section from user form (role-based access only)
- Add autocomplete attributes to password fields for better UX
- Include detailed documentation for warehouse implementation
- Update initialize_db.py with schema verification as Step 0
2026-01-28 00:46:59 +02:00