-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from Rugute/main
Sorted Forms
- Loading branch information
Showing
755 changed files
with
4,150 additions
and
1,997 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file modified
0
packages/esm-billing-app/src/billable-services-admin-card-link.component.tsx
100644 → 100755
Empty file.
Empty file modified
0
packages/esm-billing-app/src/billable-services/bill-waiver/bill-selection.component.tsx
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
packages/esm-billing-app/src/billable-services/bill-waiver/bill-waiver-form.scss
100644 → 100755
Empty file.
Empty file modified
0
packages/esm-billing-app/src/billable-services/bill-waiver/bill-waiver.component.tsx
100644 → 100755
Empty file.
Empty file modified
0
packages/esm-billing-app/src/billable-services/bill-waiver/bill-waiver.scss
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
packages/esm-billing-app/src/billable-services/bill-waiver/utils.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
packages/esm-billing-app/src/billable-services/billable-services.component.tsx
100644 → 100755
Empty file.
Empty file modified
0
packages/esm-billing-app/src/billable-services/billable-services.scss
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,8 @@ | |
grid-template-columns: 1fr 1fr; | ||
padding-left: spacing.$spacing-03; | ||
} | ||
|
||
.red { | ||
color: red; | ||
font-weight: normal; | ||
} |
34 changes: 0 additions & 34 deletions
34
packages/esm-billing-app/src/billable-services/billiable-item/lab-order.component.tsx
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
...m-billing-app/src/billable-services/billiable-item/test-order/imaging-order.component.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react'; | ||
import { useBillableItem } from '../useBillableItem'; | ||
import { useTranslation } from 'react-i18next'; | ||
import { InlineLoading } from '@carbon/react'; | ||
import PriceInfoOrder from './price-info-order.componet'; | ||
|
||
type ImagingOrderProps = { | ||
order: { | ||
testType?: { | ||
label: string; | ||
conceptUuid: string; | ||
}; | ||
}; | ||
}; | ||
|
||
const ImagingOrder: React.FC<ImagingOrderProps> = ({ order }) => { | ||
const { t } = useTranslation(); | ||
const { billableItem, isLoading, error } = useBillableItem(order?.testType?.conceptUuid); | ||
|
||
if (isLoading) { | ||
return ( | ||
<InlineLoading | ||
status="active" | ||
iconDescription={t('loading', 'Loading')} | ||
description={t('loadingData', 'Loading data...')} | ||
/> | ||
); | ||
} | ||
|
||
return <PriceInfoOrder billableItem={billableItem} error={error} />; | ||
}; | ||
|
||
export default ImagingOrder; |
Oops, something went wrong.