- 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
15 lines
516 B
HTML
Executable File
15 lines
516 B
HTML
Executable File
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div style="padding: 20px; text-align: center;">
|
|
<h2>Redirecting to Print Labels Module...</h2>
|
|
<p>You will be redirected to the full-featured print labels interface.</p>
|
|
<p><a href="{{ url_for('labels.print_labels') }}" class="btn btn-primary">Click here if not automatically redirected</a></p>
|
|
</div>
|
|
|
|
<script>
|
|
// Redirect to the complete print_labels module
|
|
window.location.href = "{{ url_for('labels.print_labels') }}";
|
|
</script>
|
|
{% endblock %}
|