-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
O3-4301 : A user should be able to see there stock item balances and stock item details in the order basket #254
base: main
Are you sure you want to change the base?
Conversation
Size Change: +10.1 kB (+0.83%) Total Size: 1.23 MB ℹ️ View Unchanged
|
<div className={styles.priceDetailsContainer}> | ||
<span className={styles.priceLabel}>{t('price', 'Price')}:</span> | ||
{purchasePrice !== undefined ? ( | ||
<span>{purchasePrice}</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jabahum @ojwanganto @makombe is the purchase price of a stock item, the amount we bought the item at or the amount we are selling or charging patients for it. I think for pricing we should use the billing module to indicate the prices.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@donaldkibet does the current billing module version provide for stock items being billable items. cc @ODORA0 , @alaboso.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@donaldkibet the purchase price is the buying price and is normally used to set the selling price. The selling price rightly sits in the billing module and an item can have different pricing based on the payment methods (this is the current state in Kenya).
@jabahum we still use our own fork of the billing module but it is not very different from the community version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ojwanganto how do we make sure your changes in the billing module can fit in here to have this usecase catered for.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we did some enhancement on billing where given the stock item uuid it shows the price
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@donaldkibet Can we have the change in the community billing module so that I could use it here. Cc @ojwanganto , @makombe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jabahum thats fine
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@donaldkibet any progress on the selling price issue into the billing module.
Requirements
Summary
This PR adds drug/stock item additional information i.e stock prices and stock balances for implementations using the stock management module for inventory management
Screenshots
Related Issue
https://openmrs.atlassian.net/browse/O3-4301
Other