Billing Module Functional Spec
Design Spec
Â
UI Designs (Dropbox Link)Â
Â
Â
Functional Spec
Introduction
The billing module is designed to be replacement and improvement for the existing billing module in use at JSS.
Â
Goals
- Track payments
- Allow flexible costs
- Support partial payments
- Resolve the pain points of the current billing system at JSS
Out of Scope
- Integration with other modules (May come into scope, later)
- Integrate with pharmacy
- Integrate with all other modules, as appropriate
- Support payment of insurance via RSBY
Â
Functionality
- Track payments forÂ
- Doctor's consultation
- Prescription drugs
- Allow flexible costs
- Doctors should be able to discount any drug price based on patient's individual needs and situation
- Support partial payments
- Patients must be able to pay only part of a bill during a given visit
- Patients are expected to pay remainder during one or more follow-up visit(s)
- Payments should be clearly separated and relate to specific items
- Resolve the pain points of the current billing system at JSS
- Difficult to track discounts, partial payments, insurance payments
- sometimes finances are associated with the wrong if paid later (insurance, partial payments)
- Problem with calculator for discounted payments – math is incorrect
Â
Open Issues
These are questions we don't know answers to... need input from JSS, others to answer them. Once answered, should update this document with the answer and track it here.
Â
Need to be aware of when bills were issued and when bills were paid
-Insurance RSBY
-partial payments in visit 1, follow up payment in visit 2
1 or more default prices for each item
some things covered by RSBY, some not
-medication not covered by RSBY
-"toe cut off" is covered
Can we integrate into RSBY or other payment systems (NFC)?
Approval (before bill can be issued to the patient)
-> might have "auto approve default prices"
-> might have "auto approve discounted prices"
-> might "only allow prices to be "
vsÂ
Auditing (after the payment and everything has occured)
logging for later auditing
history of all price changes with name / date associated?
Â
Â
Developer Spec
Front-end Architecture
Discuss views, controllers, models, stores you'll need. How will you build these in the ExtJS app?
REST Resources
Discuss REST resources you'll need to call on the back-end.
Database Design
Per an initial discussion, the database model may include the following tables. This needs more investigation before being confirmed. Please research existing billing tools and how they model financial transactions, bills, partial payments, discounts, etc.
Billing
status - pending, paid, partially paid, approved
patient
provider - whoever does the billing, e.g. clerk
has many: items
BillingItem
concept (concept - drug, labTest, etc)
quantity
how much it costs (value)
link to what made it - link to order ID or Encounter
provider
has many: item adjustments
BillingItemAdjustment
BillingItem
Reason
Value
Price
concept
quantity
value
(Might need more columns for any item)
Repositories
Backend Resources go into RaxaCore -Â https://github.com/Raxa/raxacore
Front-end Resources go into Raxa-JSS -Â https://github.com/Raxa/Raxa-JSS
Â