Added labor adjustments to allocations table. IO-570
This commit is contained in:
@@ -21,6 +21,7 @@ export function JobsDetailLaborContainer({
|
||||
refetch,
|
||||
loading,
|
||||
techConsole,
|
||||
adjustments,
|
||||
}) {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
@@ -35,8 +36,10 @@ export function JobsDetailLaborContainer({
|
||||
</TimeTicketEnterButton>
|
||||
)}
|
||||
<LaborAllocationsTableComponent
|
||||
jobId={jobId}
|
||||
joblines={joblines}
|
||||
timetickets={timetickets}
|
||||
adjustments={adjustments}
|
||||
/>
|
||||
<TimeTicketList
|
||||
loading={loading}
|
||||
|
||||
@@ -20,6 +20,7 @@ export default function JobsDetailLaborContainer({ jobId, techConsole }) {
|
||||
joblines={data ? data.joblines : []}
|
||||
refetch={refetch}
|
||||
techConsole={techConsole}
|
||||
adjustments={data ? data.jobs_by_pk.lbr_adjustments : []}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user