IO-3286 Additional Product Fruit IDs

Signed-off-by: Allan Carr <allan@imexsystems.ca>
This commit is contained in:
Allan Carr
2025-07-04 13:35:32 -07:00
parent 57ad89747f
commit 414897bba0

View File

@@ -13,7 +13,7 @@ import { ColorPicker } from "./shop-info.rostatus.component";
const mapStateToProps = createStructuredSelector({ const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop bodyshop: selectBodyshop
}); });
const mapDispatchToProps = (dispatch) => ({ const mapDispatchToProps = () => ({
//setUserLanguage: language => dispatch(setUserLanguage(language)) //setUserLanguage: language => dispatch(setUserLanguage(language))
}); });
@@ -22,7 +22,7 @@ export function ShopInfoSchedulingComponent({ form, bodyshop }) {
return ( return (
<div> <div>
<LayoutFormRow> <LayoutFormRow id="shopinfo-scheduling">
<Form.Item <Form.Item
label={t("bodyshop.fields.appt_length")} label={t("bodyshop.fields.appt_length")}
name={"appt_length"} name={"appt_length"}
@@ -44,6 +44,7 @@ export function ShopInfoSchedulingComponent({ form, bodyshop }) {
//message: t("general.validation.required"), //message: t("general.validation.required"),
} }
]} ]}
id="schedule_start_time"
> >
<TimePicker disableSeconds={true} format="HH:mm" /> <TimePicker disableSeconds={true} format="HH:mm" />
</Form.Item> </Form.Item>
@@ -56,6 +57,7 @@ export function ShopInfoSchedulingComponent({ form, bodyshop }) {
//message: t("general.validation.required"), //message: t("general.validation.required"),
} }
]} ]}
id="schedule_end_time"
> >
<TimePicker disableSeconds={true} format="HH:mm" /> <TimePicker disableSeconds={true} format="HH:mm" />
</Form.Item> </Form.Item>