Added bucket config to shop screen BOD-174

This commit is contained in:
Patrick Fic
2020-06-24 11:39:46 -07:00
parent 997ea6cbcf
commit dab34aef49
9 changed files with 396 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import { useTranslation } from "react-i18next";
import ShopInfoROStatusComponent from "./shop-info.rostatus.component";
import ShopInfoOrderStatusComponent from "./shop-info.orderstatus.component";
import ShopInfoResponsibilityCenterComponent from "./shop-info.responsibilitycenters.component";
import ShopInfoSchedulingComponent from "./shop-info.scheduling.component";
export default function ShopInfoComponent({ form }) {
const { t } = useTranslation();
@@ -146,6 +147,12 @@ export default function ShopInfoComponent({ form }) {
>
<ShopInfoROStatusComponent form={form} />
</Collapse.Panel>
<Collapse.Panel
key="scheduling"
header={t("bodyshop.labels.scheduling")}
>
<ShopInfoSchedulingComponent form={form} />
</Collapse.Panel>
<Collapse.Panel
key="orderStatus"
header={t("bodyshop.labels.orderstatuses")}