Auto allocate MAPA, MASH, ATS. IO-442
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
import { Button } from "antd";
|
import { Button } from "antd";
|
||||||
|
import _ from "lodash";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
import { createStructuredSelector } from "reselect";
|
import { createStructuredSelector } from "reselect";
|
||||||
import { logImEXEvent } from "../../firebase/firebase.utils";
|
import { logImEXEvent } from "../../firebase/firebase.utils";
|
||||||
import { selectBodyshop } from "../../redux/user/user.selectors";
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
||||||
import _ from "lodash";
|
|
||||||
const mapStateToProps = createStructuredSelector({
|
const mapStateToProps = createStructuredSelector({
|
||||||
bodyshop: selectBodyshop,
|
bodyshop: selectBodyshop,
|
||||||
});
|
});
|
||||||
@@ -23,7 +23,17 @@ export function JobsCloseAutoAllocate({ bodyshop, joblines, form, disabled }) {
|
|||||||
if (jl.part_type) {
|
if (jl.part_type) {
|
||||||
ret.profitcenter_part = defaults.profits[jl.part_type.toUpperCase()];
|
ret.profitcenter_part = defaults.profits[jl.part_type.toUpperCase()];
|
||||||
} else {
|
} else {
|
||||||
ret.profitcenter_part = null;
|
console.log("Jobline Didnt matchMedia.", jl);
|
||||||
|
const lineDesc = jl.line_desc.toLowerCase();
|
||||||
|
if (lineDesc.includes("shop materials")) {
|
||||||
|
ret.profitcenter_part = defaults.profits["MASH"];
|
||||||
|
} else if (lineDesc.includes("paint/materials")) {
|
||||||
|
ret.profitcenter_part = defaults.profits["MAPA"];
|
||||||
|
} else if (lineDesc.includes("ats amount")) {
|
||||||
|
ret.profitcenter_part = defaults.profits["ATS"];
|
||||||
|
} else {
|
||||||
|
ret.profitcenter_part = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (jl.mod_lbr_ty) {
|
if (jl.mod_lbr_ty) {
|
||||||
ret.profitcenter_labor =
|
ret.profitcenter_labor =
|
||||||
|
|||||||
Reference in New Issue
Block a user