diff --git a/client/src/components/allocations-assignment/allocations-assignment.container.jsx b/client/src/components/allocations-assignment/allocations-assignment.container.jsx index 4cfd62fe3..434f71ecb 100644 --- a/client/src/components/allocations-assignment/allocations-assignment.container.jsx +++ b/client/src/components/allocations-assignment/allocations-assignment.container.jsx @@ -24,7 +24,7 @@ export default function AllocationsAssignmentContainer({ notification["success"]({ message: t("employees.successes.save") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? visibilityState[1](false); if (refetch) refetch(); }); diff --git a/client/src/components/jobs-detail-claims/jobs-detail-claims.component.jsx b/client/src/components/jobs-detail-claims/jobs-detail-claims.component.jsx index 9eb24798a..1c8323b4f 100644 --- a/client/src/components/jobs-detail-claims/jobs-detail-claims.component.jsx +++ b/client/src/components/jobs-detail-claims/jobs-detail-claims.component.jsx @@ -20,7 +20,7 @@ export default function JobsDetailClaims({ job }) { initialValue: job.loss_desc })()} - TODO: How to handle different taxes and marking them as exempt? + TODO How to handle different taxes and marking them as exempt? { // // {getFieldDecorator("exempt", { diff --git a/client/src/components/jobs-detail-financial/jobs-detail-financial.component.jsx b/client/src/components/jobs-detail-financial/jobs-detail-financial.component.jsx index 37a2bae9a..0bd919542 100644 --- a/client/src/components/jobs-detail-financial/jobs-detail-financial.component.jsx +++ b/client/src/components/jobs-detail-financial/jobs-detail-financial.component.jsx @@ -25,13 +25,13 @@ export default function JobsDetailFinancials({ job }) { initialValue: job.depreciation_taxes })()} - TODO: This is equivalent of GST payable. + TODO This is equivalent of GST payable. {getFieldDecorator("federal_tax_payable", { initialValue: job.federal_tax_payable })()} - TODO: equivalent of other customer amount + TODO equivalent of other customer amount {getFieldDecorator("other_amount_payable", { initialValue: job.other_amount_payable @@ -99,7 +99,7 @@ export default function JobsDetailFinancials({ job }) { initialValue: job.rate_lag })()} - Note //TODO: Remove ATP rate? + Note //TODO Remove ATP rate? {getFieldDecorator("rate_atp", { initialValue: job.rate_atp diff --git a/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx b/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx index 2c2ca281d..70417434b 100644 --- a/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx +++ b/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx @@ -69,7 +69,7 @@ export default connect( , {event.isintake ? ( diff --git a/client/src/components/schedule-job-modal/schedule-job-modal.component.jsx b/client/src/components/schedule-job-modal/schedule-job-modal.component.jsx index 0cb4633e6..a32e82f30 100644 --- a/client/src/components/schedule-job-modal/schedule-job-modal.component.jsx +++ b/client/src/components/schedule-job-modal/schedule-job-modal.component.jsx @@ -13,7 +13,7 @@ export default function ScheduleJobModalComponent({ ...props }) { const { t } = useTranslation(); - //TODO: Existing appointments list only refreshes sometimes after modal close. May have to do with the container class. + //TODO Existing appointments list only refreshes sometimes after modal close. May have to do with the container class. return ( { - //TODO: Build out notifications. + //TODO Build out notifications. } setscheduleModalVisible(false)} onOk={() => { - //TODO: Customize the amount of minutes it will add. + //TODO Customize the amount of minutes it will add. insertAppointment({ variables: { app: { ...appData, end: moment(appData.start).add(60, "minutes") } @@ -73,7 +73,7 @@ export default connect( }); if (formData.notifyCustomer) { - //TODO: Implement customer reminder on scheduling. + //TODO Implement customer reminder on scheduling. alert("Chosed to notify the customer somehow!"); } setscheduleModalVisible(false); diff --git a/client/src/components/shop-employees/shop-employees.container.jsx b/client/src/components/shop-employees/shop-employees.container.jsx index 1d86e835f..fc65e05cb 100644 --- a/client/src/components/shop-employees/shop-employees.container.jsx +++ b/client/src/components/shop-employees/shop-employees.container.jsx @@ -30,7 +30,7 @@ function ShopEmployeesContainer({ form, bodyshop }) { notification["success"]({ message: t("employees.successes.delete") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? employeeState[1](null); refetch().then(r => form.resetFields()); }) @@ -61,7 +61,7 @@ function ShopEmployeesContainer({ form, bodyshop }) { notification["success"]({ message: t("employees.successes.save") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? employeeState[1](null); refetch().then(r => form.resetFields()); }) @@ -78,7 +78,7 @@ function ShopEmployeesContainer({ form, bodyshop }) { notification["success"]({ message: t("employees.successes.save") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? employeeState[1](null); refetch() .then(r => form.resetFields()) diff --git a/client/src/components/vehicle-detail-form/vehicle-detail-form.container.jsx b/client/src/components/vehicle-detail-form/vehicle-detail-form.container.jsx index d5ccacd26..ec0a7fb70 100644 --- a/client/src/components/vehicle-detail-form/vehicle-detail-form.container.jsx +++ b/client/src/components/vehicle-detail-form/vehicle-detail-form.container.jsx @@ -26,7 +26,7 @@ function VehicleDetailFormContainer({ form, vehicle, refetch }) { notification["success"]({ message: t("vehicles.successes.save") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? if (refetch) refetch().then(); form.resetFields(); }); diff --git a/client/src/components/vendors-form/vendors-form.container.jsx b/client/src/components/vendors-form/vendors-form.container.jsx index 05ad0ee5d..04a034dcc 100644 --- a/client/src/components/vendors-form/vendors-form.container.jsx +++ b/client/src/components/vendors-form/vendors-form.container.jsx @@ -35,7 +35,7 @@ function VendorsFormContainer({ form, vendorId, refetch, bodyshop }) { notification["success"]({ message: t("vendors.successes.deleted") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? if (refetch) refetch().then(r => form.resetFields()); }) .catch(error => { @@ -66,7 +66,7 @@ function VendorsFormContainer({ form, vendorId, refetch, bodyshop }) { notification["success"]({ message: t("vendors.successes.saved") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? if (refetch) refetch().then(r => form.resetFields()); }) .catch(error => { @@ -83,7 +83,7 @@ function VendorsFormContainer({ form, vendorId, refetch, bodyshop }) { notification["success"]({ message: t("vendors.successes.saved") }); - //TODO: Better way to reset the field decorators? + //TODO Better way to reset the field decorators? if (refetch) refetch().then(r => form.resetFields()); }) .catch(error => { diff --git a/client/src/pages/jobs-available/jobs-available.page.component.jsx b/client/src/pages/jobs-available/jobs-available.page.component.jsx index b239bd1d3..79fcd8c1b 100644 --- a/client/src/pages/jobs-available/jobs-available.page.component.jsx +++ b/client/src/pages/jobs-available/jobs-available.page.component.jsx @@ -13,7 +13,7 @@ export default function JobsAvailablePageComponent({ deleteJob={deleteJob} estDataLazyLoad={estDataLazyLoad} /> - Available Supplements (//TODO: LOGIC HAS NOT YET BEEN COPIED FROM OTHER COMPONENT) + Available Supplements (//TODO LOGIC HAS NOT YET BEEN COPIED FROM OTHER COMPONENT)