BOD-6 #comment Work In Progress for all JSON subfields for My Shop Management. Outstanding items to resolve.
This commit is contained in:
@@ -1,14 +1,21 @@
|
||||
import React from "react";
|
||||
import { Form, Input, Button } from "antd";
|
||||
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";
|
||||
|
||||
export default function ShopInfoComponent() {
|
||||
export default function ShopInfoComponent({ form }) {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<div>
|
||||
<Button type="primary" htmlType="submit">
|
||||
{t("general.actions.save")}
|
||||
</Button>
|
||||
|
||||
<ShopInfoROStatusComponent form={form} />
|
||||
<ShopInfoOrderStatusComponent form={form} />
|
||||
<ShopInfoResponsibilityCenterComponent form={form} />
|
||||
<Form.Item label={t("bodyshop.fields.shopname")} name="shopname">
|
||||
<Input />
|
||||
</Form.Item>
|
||||
|
||||
Reference in New Issue
Block a user