IO-1674 Resolve new bill lines issues.

This commit is contained in:
Patrick Fic
2022-01-27 15:07:00 -08:00
parent cd071500cf
commit 8d1988d4ad
3 changed files with 59 additions and 42 deletions

View File

@@ -58,7 +58,7 @@ export function BillEnterModalLinesComponent({
],
};
},
formInput: (record, index) => (
wrapper: (props) => (
<Form.Item
noStyle
shouldUpdate={(prev, cur) =>
@@ -66,7 +66,11 @@ export function BillEnterModalLinesComponent({
}
>
{() => {
return (
return props.children;
}}
</Form.Item>
),
formInput: (record, index) => (
<BillLineSearchSelect
disabled={disabled}
options={lineData}
@@ -83,8 +87,7 @@ export function BillEnterModalLinesComponent({
quantity: opt.part_qty || 1,
actual_price: opt.cost,
cost_center: opt.part_type
? bodyshop.pbs_serialnumber ||
bodyshop.cdk_dealerid
? bodyshop.pbs_serialnumber || bodyshop.cdk_dealerid
? opt.part_type !== "PAE"
? opt.part_type
: null
@@ -102,9 +105,6 @@ export function BillEnterModalLinesComponent({
});
}}
/>
);
}}
</Form.Item>
),
},
{
@@ -537,6 +537,7 @@ const EditableCell = ({
formInput,
formItemProps,
additional,
wrapper,
...restProps
}) => {
if (additional)
@@ -554,7 +555,20 @@ const EditableCell = ({
</Space>
</td>
);
if (wrapper)
return (
<wrapper>
<td {...restProps}>
<Form.Item
labelCol={{ span: 0 }}
name={dataIndex}
{...(formItemProps && formItemProps(record))}
>
{(formInput && formInput(record, record.name)) || children}
</Form.Item>
</td>
</wrapper>
);
return (
<td {...restProps}>
<Form.Item

View File

@@ -9,7 +9,7 @@ const BillLineSearchSelect = (
ref
) => {
const { t } = useTranslation();
console.log(allowRemoved);
return (
<Select
disabled={disabled}
@@ -56,7 +56,7 @@ const BillLineSearchSelect = (
<span>{`${item.removed ? `(REMOVED) ` : ""}${item.line_desc}${
item.oem_partno ? ` - ${item.oem_partno}` : ""
}`}</span>
<span style={{ float: "right" }}>
<span style={{ float: "right", paddingleft: "1rem" }}>
{item.act_price
? `$${item.act_price && item.act_price.toFixed(2)}`
: ``}

View File

@@ -181,7 +181,10 @@ export const UPDATE_JOB_LINE = gql`
export const GET_JOB_LINES_TO_ENTER_BILL = gql`
query GET_JOB_LINES_TO_ENTER_BILL($id: uuid!) {
joblines(where: { jobid: { _eq: $id } }, order_by: { act_price: desc }) {
joblines(
where: { jobid: { _eq: $id } }
order_by: { act_price: desc_nulls_last }
) {
removed
id
line_desc