this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Charge item tax based on total not net price.

+1 -1
+1 -1
care/emr/resources/charge_item/sync_charge_item_costs.py
··· 48 48 _component = calculate_amount(component, quantity, net_price) 49 49 total_price -= _component.amount 50 50 components.append(_component.model_dump(mode="json", exclude_defaults=True)) 51 - taxable_price = net_price 51 + taxable_price = total_price 52 52 for component in charge_item_price_components: 53 53 if component.monetary_component_type == MonetaryComponentType.tax.value: 54 54 _component = calculate_amount(component, quantity, taxable_price)