feature/IO-3499-React-19 Production Table on schedule was missing col headers

This commit is contained in:
Dave
2026-01-22 13:48:43 -05:00
parent 48336b88e0
commit 40e8529eeb
4 changed files with 27 additions and 3 deletions

View File

@@ -22,6 +22,15 @@ export default function ScheduleProductionList() {
{error ? <AlertComponent title={error.message} type="error" /> : null} {error ? <AlertComponent title={error.message} type="error" /> : null}
{data ? ( {data ? (
<table> <table>
<thead>
<tr>
<th> {t("appointments.labels.ro_number")}</th>
<th> {t("appointments.labels.owner")}</th>
<th> {t("appointments.labels.vehicle")}</th>
<th> {t("appointments.labels.bp")}</th>
<th> {t("appointments.labels.scheduled_completion")}</th>
</tr>
</thead>
<tbody> <tbody>
{data?.jobs {data?.jobs
? data.jobs.map((j) => ( ? data.jobs.map((j) => (

View File

@@ -65,7 +65,12 @@
"severalerrorsfound": "Several Jobs have issues which may prevent accurate smart scheduling. Click to expand.", "severalerrorsfound": "Several Jobs have issues which may prevent accurate smart scheduling. Click to expand.",
"smartscheduling": "Smart Scheduling", "smartscheduling": "Smart Scheduling",
"smspaymentreminder": "This is {{shopname}} reminding you about your remaining balance of {{amount}}. To pay for the said balance click the link {{payment_link}}.", "smspaymentreminder": "This is {{shopname}} reminding you about your remaining balance of {{amount}}. To pay for the said balance click the link {{payment_link}}.",
"suggesteddates": "Suggested Dates" "suggesteddates": "Suggested Dates",
"ro_number": "RO #",
"owner": "Owner",
"vehicle": "Vehicle",
"bp": "B/P",
"scheduled_completion": "Scheduled Completion"
}, },
"successes": { "successes": {
"canceled": "Appointment canceled successfully.", "canceled": "Appointment canceled successfully.",

View File

@@ -65,7 +65,12 @@
"severalerrorsfound": "", "severalerrorsfound": "",
"smartscheduling": "", "smartscheduling": "",
"smspaymentreminder": "", "smspaymentreminder": "",
"suggesteddates": "" "suggesteddates": "",
"ro_number": "",
"owner": "",
"vehicle": "",
"bp": "",
"scheduled_completion": ""
}, },
"successes": { "successes": {
"canceled": "Cita cancelada con éxito.", "canceled": "Cita cancelada con éxito.",

View File

@@ -65,7 +65,12 @@
"severalerrorsfound": "", "severalerrorsfound": "",
"smartscheduling": "", "smartscheduling": "",
"smspaymentreminder": "", "smspaymentreminder": "",
"suggesteddates": "" "suggesteddates": "",
"ro_number": "",
"owner": "",
"vehicle": "",
"bp": "",
"scheduled_completion": ""
}, },
"successes": { "successes": {
"canceled": "Rendez-vous annulé avec succès.", "canceled": "Rendez-vous annulé avec succès.",