All messages should be posted in plain text.  HTML will be converted to
attachments.    The meditech-l web site is MTUsers.com
======================================

If your doing query based charging (versus intervention based) you could
use an attribute on the charge trigger query (one of ours is Outpatient
Treatments today) it is a multiple GR type query with the procedures
that could be done/charged (set up in NUR intervention and OE Proc
dictionaries).

So when the cursor gets to the trigger query, if it had been more than
24hrs since this query was last documented, the cursor could stop on
this charge trigger query. But if it has not been at least 24hr, it
would skip it, no charge would be generated, but you could document it
as many times as you needed, no macro required.

Here is an example I got from someone on the L, sorry I do not remember:

I have a screen with an attribute to skip if the query was already
documented today. This is used for charging on a respiratory screen.
The attribute works great except for one scenario.  If the user uses DI
and sets more than one time, the attribute does not skip.

On one screen, I use this to skip the charge query if already documented
today:

[EMAIL PROTECTED]"NURRTBIPAP"[EMAIL PROTECTED] 1,"";1}

On another screen, I use this if the user should not document more than
one
time a day on the entire screen:

[EMAIL PROTECTED]"NURRTO2TH"[EMAIL PROTECTED] 1,
[EMAIL PROTECTED]("This intervention has already been
IFE= documented today!"),@Z.exit^/Z,"";1}
------------------------------------------------------------------------
--
That said, Frank is much smarter than me, so here is something I saved
from him (I only steal from the best)...

I forgot to mention. If you have interventions set-up for daily charges
that
do not have  screen attached to them, you can build one screen with one
dummy type query on it (ie a Y/N query with a "." for the description).
On the dummy query place an attribute like the one provided below.
Attaching this screen to your daily charge interventions that do not
currently have screens will obtain the same type of charging control.

IFE=IF{%MIS.zcus.macs.M.document.once.daily(aa) ""; IFE=IF{/EXIT[ANS]
@Z.exit^/Z,""^/EXIT[ANS]; [EMAIL PROTECTED]/Z,1^/EXIT[ANS],""}}

You would need the MIS report and macro called document.once.daily.
Here is what I have saved regarding that report/macro:
--------------------------------------------------------
This may meet your need. I created this for RT departments a couple of
years
ago. Putting this attribute (see below) on the first query of your NUR
screen(s) will only allow the intervention(s) to be documented once per
calendar day.

ATTRIBUTE
IFE=IF{%MIS.zcus.macs.M.document.once.daily(aa) "";1}


MIS REPORT MACRO
** MACRO code for MIS.zcus.macs.M.document.once.daily **
;A=PATIENT
;
/RECALL#2S^DDTE,
/["ni"]^INT,
""^RV,
""^IURN^IDTE^ITME^ICTR,
DO{-:NPCW[A,"I",INT,"O",IURN,"A",IDTE,ITME,ICTR]^ICTR&'RV @CK.ACT;
   -:NPCW[A,"I",INT,"O",IURN,"A",IDTE,ITME]^ITME;
   -:NPCW[A,"I",INT,"O",IURN,"A",IDTE]^IDTE;
   -:NPCW[A,"I",INT,"O",IURN]^IURN},
RV;

CK.ACT
IF{:NPCW[A,"I",INT,"O",IURN,"A",IDTE,ITME,ICTR]|0="U" @UNDO;
   :NPCW[A,"I",INT,"O",IURN,"A",IDTE,ITME,ICTR]|0="D" @CK.DATE;
   :NPCW[A,"I",INT,"O",IURN,"A",IDTE,ITME,ICTR]|0="DV" @CK.DATE}

CK.DATE
IF{IDTE=DDTE @MSG.EXIT}

MSG.EXIT
1^RV,
%Z.date.out(DDTE)^MDTE,
@W.err("NOTE: This intervention has already been documented for
"_MDTE_".
Please exit."), @Z.exit^/Z

Frank Cyr RN
------------------------------------------------------------------------
--
I have reworked your attribute some to make it work for you!  If you're
using a small email window, the formatting may look funny but you should
be able to copy/paste into Meditech as it is.  Just make sure that each
line begins with IFE and there are no spaces tagged onto the end of any
line.

IFE=IF{/[ANS%0,"NUR.OXYGEN"]|0="Y"
[EMAIL PROTECTED]"NUR.RESP07"]=
[EMAIL PROTECTED] "N";"Y"}^ZZ^/[ANS%0,"NUR.RESP07"]|0,P(R,S,ZZ)^#,""}

One more thing:
If the user says "Y" to the oxygen query, defaults either "Y" or "N" to
the charge query and then goes back and changes the oxygen query, you
need to be sure that the temporary response to the charge query is
removed.  I would suggest using the following attribute on your oxygen
query to remove any existing response to the charge query.

IFE=IF{""^/[ANS%0,"NUR.RESP07"|0,1}

This will NOT remove the response from the screen, but it does remove it
in the background. (You can see this by trying to exit or file and then
saying "NO" at the confirmation.  The screen will then refresh removing
the displayed response to the charge query.)  If it's worth it to you,
you can also send a blank to the charge response query field to remove
the
displayed response, but it will work the same either way!
------------------------------------------------------------------------
--
This can be done with an attribute placed on the very first query on the
CDS (provided that the CDS is not attached anywhere else).  Also, be
sure that by placing this attribute on the CDS that you aren't
preventing 3rd shift from documenting an occurance prior to midnight!

IFE=IF{(ANS#2S)=(%Z.date.add(@.today,0-1)) @W.err("This intervention 
IFE= can not be documented for yesterday's date!"),@Z.exit^/Z,"";1}

This intervention will force the user to exit the intervention if trying
to document for yesterday's date.
-----------------------------------------------------------------------
I use this attribute to prevent documenting on the same CDS more than
once a day.  You can probably adapt for yesterday.
(NURRTO2TH is the first query on the screen)

[EMAIL PROTECTED]"NURRTO2TH"[EMAIL PROTECTED] 1,
[EMAIL PROTECTED]("This intervention has already been IFE= documented
today!"),@Z.exit^/Z,"";1}
------------------------------------------------------------------------
----
DOCUMENT ONLY ONCE A DAY
One solution would be to place an IFE attribute on the first query of
the CDS to evaluate whether the query had been previously filed that
day.  If so, a message could be displayed informing the user that the
intervention has been documented that day and then automatically exits!
It would look like this: (Be sure to replace QUERY with your mnemonic!)

[EMAIL PROTECTED]"QUERY"[EMAIL PROTECTED] 1,
[EMAIL PROTECTED]("This intervention has already been 
IFE= documented today!"),@Z.exit^/Z,"";1}
------------------------------------------------------------------------
----
Bill Mullins RN
Williamson Medical Center
2021 Carothers Road
Franklin,Tn  37067
615-435-5630

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Grolla, Cindy
Sent: Thursday, June 08, 2006 8:17 AM
To: Pat Crigler; [email protected]
Subject: RE: [MEDITECH-L] Once per day charge through NUR

All messages should be posted in plain text.  HTML will be converted to
attachments.    The meditech-l web site is MTUsers.com
======================================

Please post if you have a solution for this - it would be great!

Cindy Grolla, RN
Clinical Project Leader
Phone: 507.646.1209
Pager: 507.645.1475


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Pat Crigler
Sent: Wednesday, June 07, 2006 10:12 AM
To: [email protected]
Subject: [MEDITECH-L] Once per day charge through NUR


All messages should be posted in plain text.  HTML will be converted to
attachments.    The meditech-l web site is MTUsers.com
======================================

I am submitting this to the "L" for Roberta

Pat Crigler, MT(ASCP)
Clinical Analyst
Culpeper Regional Hospital
P.O. Box 592 
Culpeper, VA 22701
Phone:(540) 829-5733
Fax: (540) 829-5724
Email: [EMAIL PROTECTED]



>>> Roberta Laurimore 6/7/2006 8:16 AM >>>
Hello,
I have been trying to set up a nursing intervention so that when it is
documented a charge will be applied.  The charging is not a problem,
which works fine.  I need a way to get the system to only allow one
charge per day no matter how many times it is documented.  Has anyone
out there had any luck setting something like this up?  If so can you
please send me some information?  

Thanks,



Roberta Laurimore, RN
[EMAIL PROTECTED]
Clinical Analyst
Culpeper Regional Hospital
540-829-4359
_______________________________________________
meditech-l mailing list
[email protected]
http://mtusers.com/mailman/listinfo/meditech-l

_______________________________________________
meditech-l mailing list
[email protected]
http://mtusers.com/mailman/listinfo/meditech-l

**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. 

This footnote also confirms that this email message has been swept by Sophos 
and MIMEsweeper for the presence of computer viruses.
**********************************************************************


_______________________________________________
meditech-l mailing list
[email protected]
http://mtusers.com/mailman/listinfo/meditech-l

Reply via email to