Missed in last commits.
This commit is contained in:
@@ -295,12 +295,14 @@ export function JobsCreateJobsInfo({ bodyshop, form, selected }) {
|
|||||||
<Form.Item label={t("jobs.fields.rate_ma3s")} name="rate_ma3s">
|
<Form.Item label={t("jobs.fields.rate_ma3s")} name="rate_ma3s">
|
||||||
<CurrencyInput />
|
<CurrencyInput />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label={t("jobs.fields.rate_mabl")} name="rate_mabl">
|
{
|
||||||
<CurrencyInput />
|
// <Form.Item label={t("jobs.fields.rate_mabl")} name="rate_mabl">
|
||||||
</Form.Item>
|
// <CurrencyInput />
|
||||||
<Form.Item label={t("jobs.fields.rate_macs")} name="rate_macs">
|
// </Form.Item>
|
||||||
<CurrencyInput />
|
// <Form.Item label={t("jobs.fields.rate_macs")} name="rate_macs">
|
||||||
</Form.Item>
|
// <CurrencyInput />
|
||||||
|
// </Form.Item>
|
||||||
|
}
|
||||||
<Form.Item label={t("jobs.fields.rate_matd")} name="rate_matd">
|
<Form.Item label={t("jobs.fields.rate_matd")} name="rate_matd">
|
||||||
<CurrencyInput />
|
<CurrencyInput />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|||||||
@@ -165,12 +165,14 @@ export function JobsDetailRates({ jobRO, form, job }) {
|
|||||||
<Form.Item label={t("jobs.fields.rate_ma3s")} name="rate_ma3s">
|
<Form.Item label={t("jobs.fields.rate_ma3s")} name="rate_ma3s">
|
||||||
<CurrencyInput disabled={jobRO} />
|
<CurrencyInput disabled={jobRO} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label={t("jobs.fields.rate_mabl")} name="rate_mabl">
|
{
|
||||||
<CurrencyInput disabled={jobRO} />
|
// <Form.Item label={t("jobs.fields.rate_mabl")} name="rate_mabl">
|
||||||
</Form.Item>
|
// <CurrencyInput disabled={jobRO} />
|
||||||
<Form.Item label={t("jobs.fields.rate_macs")} name="rate_macs">
|
// </Form.Item>
|
||||||
<CurrencyInput disabled={jobRO} />
|
// <Form.Item label={t("jobs.fields.rate_macs")} name="rate_macs">
|
||||||
</Form.Item>
|
// <CurrencyInput disabled={jobRO} />
|
||||||
|
// </Form.Item>
|
||||||
|
}
|
||||||
<Form.Item label={t("jobs.fields.rate_matd")} name="rate_matd">
|
<Form.Item label={t("jobs.fields.rate_matd")} name="rate_matd">
|
||||||
<CurrencyInput disabled={jobRO} />
|
<CurrencyInput disabled={jobRO} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|||||||
@@ -102,7 +102,13 @@ export function JobsDocumentsGalleryReassign({ bodyshop, galleryImages }) {
|
|||||||
const currentKeys = i.key.split("/");
|
const currentKeys = i.key.split("/");
|
||||||
currentKeys[1] = jobid;
|
currentKeys[1] = jobid;
|
||||||
currentKeys.join("/");
|
currentKeys.join("/");
|
||||||
return { id: i.id, from: i.key, to: currentKeys.join("/") };
|
return {
|
||||||
|
id: i.id,
|
||||||
|
from: i.key,
|
||||||
|
to: currentKeys.join("/"),
|
||||||
|
extension: i.extension,
|
||||||
|
type: i.type,
|
||||||
|
};
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user