Hello,
Does anyone have a workflow for ending a pregnancy on a pregnant mother? GE gave us the workflow of the following:
- Start an update
- Choose OB/Prenatal Visit
- Go to Intake form > fill in new LMP > Click on EDC Calculator
- Fill in the Pre pregnancy weight
- End update > Sign document
This workflow starts a new pregnancy not end a pregnancy. Any information you can give me will be deeply appreciated.
Thanks,
Kimberly Smith-West, RN
708-229-5250
I have attached a zip file for an OB flowsheet form that we have finally gotten somethings worked out on. From what I understand, it is very similar to the CCC form. Anyway, we had some real issues with the EDC bringing in the correct data, especially when a prior pregnancy ended prematurely so we put some code in to try and eliminate that. Maybe you can extract something from ours for what you need.
Linda
We sometimes have to remove the latest EDC value by editing it in the flowsheet, along with adding a more recent LMP if one is available.
Julie
Thank you for all your help!
We use a Multifactorial function in a quick text to reset the counter.
The functions we put into the CCC multifactorial function file are as follows:
// miscarriage
ccc_Fx_exec(
"miscarriage",
"DES|miscarriage|OBS|EDC^01/01/1901^")
// sab
ccc_Fx_exec(
"sab",
"DES|s/p spontaneous abortion|OBS|EDC^01/01/1901^|TXT|Patient is s/p a spontaneous abortion. ")
// eab
ccc_Fx_exec(
"eab",
"DES|s/p elective abortion|OBS|EDC^01/01/1901^|TXT|Patient is s/p a elective abortion.")
// iufd
ccc_Fx_exec(
"iufd",
"DES|s/p intrauterine fetal demise|OBS|EDC^01/01/1901^|TXT|Patient is s/p an intrauterine fetal demise.")
Let me know if you need any assistance.
Thank you