Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: IBDF9D

IBDF9D.m

Go to the documentation of this file.
  1. IBDF9D ;ALB/CJM - ENCOUNTER FORM (create/edit/delete lines);MARCH 20, 1993
  1. ;;3.0;AUTOMATED INFO COLLECTION SYS;;APR 24, 1997
  1. LINE ;Create, Edit, or Delete a line on the block
  1. S VALMBCK="R"
  1. K DIR S DIR("?",1)="You can add vertical or horizontal lines to the block, or edit or delete",DIR("?")="a line already there IF it was created through this action."
  1. S DIR("B")="C",DIR(0)="SB^C:Create;E:Edit;D:Delete",DIR("A")="[C]reate , [D]elete, or [E]dit a line"
  1. D ^DIR K DIR I $D(DIRUT)!(Y<0) Q
  1. D @$S(Y="C":"NEWLINE",Y="E":"EDITLINE",Y="D":"DLTLINE",1:"")
  1. S VALMBCK="R"
  1. Q
  1. EDITLINE ;expects IBBLK to be defined - edits an already existing line
  1. N IBLINE,IBDFDONE
  1. ;IBDFDONE is used in the imput template
  1. D FULL^VALM1
  1. D SELECT
  1. I IBLINE D
  1. .D RE^VALM4
  1. .K DIE,DA S DIE=357.7,DA=IBLINE,DR="[IBDF FORM LINE]",DIE("NO^")="BACKOUTOK" D ^DIE K DIE,DR,DA
  1. .D UNCMPBLK^IBDF19(IBBLK),IDXBLOCK^IBDFU4
  1. Q
  1. SELECT ;select a line on the block
  1. S IBLINE=0
  1. Q:'$G(IBBLK)
  1. I '$O(^IBE(357.7,"C",IBBLK,0)) W !,"There is no line!" D PAUSE^IBDFU5 Q
  1. AGAIN K DIC S DIC="^IBE(357.7,",DIC(0)="EFQ",DIC("B")="",D="C",X=IBBLK
  1. S DIC("S")="I $P($G(^(0)),U,6)=IBBLK"
  1. D IX^DIC K DIC
  1. S:+Y>0 IBLINE=+Y
  1. I 'IBLINE,'$D(DTOUT),'$D(DUOUT) K DIR S DIR(0)="Y",DIR("A")="No data line selected! Try again",DIR("B")="YES" D ^DIR K DIR I '$D(DIRUT),Y=1 G AGAIN
  1. Q
  1. DLTLINE ;expects IBBLK to be defined - deletes one of the blocks lines
  1. N IBLINE
  1. D FULL^VALM1
  1. D SELECT
  1. I IBLINE D
  1. .Q:'$$RUSURE^IBDFU5($P($G(^IBE(357.7,IBLINE,0)),"^"))
  1. .D DLTLINE^IBDFU3(357.7,IBBLK,IBLINE)
  1. .D UNCMPBLK^IBDF19(IBBLK),IDXBLOCK^IBDFU4
  1. Q
  1. NEWLINE ;adds a new line, expects IBBLK to be defined
  1. N IBLINE,NODE,IBDFDONE,DLAYGO
  1. ;IBDONE - a flag used in the input template to indicate if the input template was completed - delete the line if not completed
  1. ;S NAME=$$NEWNAME Q:NAME=-1
  1. K DIC,DIE,DD,DO,DINUM S DIC="^IBE(357.7,",DIC(0)="FL",X="NAME",DLAYGO=357.7
  1. D FILE^DICN K DIC,DIE,DA,DO
  1. S IBLINE=+Y
  1. I 'IBLINE D
  1. .W !,"Unable to create a new line!" D PAUSE^IBDFU5
  1. I IBLINE D
  1. .K DIE,DA S DIE=357.7,DA=IBLINE,DR="[IBDF FORM LINE]",DIE("NO^")="BACKOUTOK" D ^DIE K DIE,DR,DA
  1. .I 'IBDFDONE K DA S DIK="^IBE(357.7,",DA=IBLINE D ^DIK K DIK Q
  1. .D UNCMPBLK^IBDF19(IBBLK),IDXBLOCK^IBDFU4
  1. Q
  1. NEWNAME(IBLINE) ;
  1. N NODE,NAME S NODE=$G(^IBE(357.7,IBLINE,0))
  1. Q:NODE="" "LINE"
  1. S NAME=$P(NODE,"^",4)_"("_(+$P(NODE,"^",3)+1)_","_(+$P(NODE,"^",2)+1)_")"
  1. Q NAME
  1. MAXLEN() ;returns the maximum length of the line=IBLINE that will fit in the block=IBBLK
  1. N LEN,TYPE,NODE,POS
  1. S NODE=$G(^IBE(357.7,IBLINE,0))
  1. S TYPE=$P(NODE,"^",4)
  1. S POS=$S(TYPE="H":$P(NODE,"^",2),1:$P(NODE,"^",3))
  1. Q ((1+$S(TYPE="H":$$MAXX^IBDFU1B,1:$$MAXY^IBDFU1B))-POS)
  1. ;
  1. TOOMANY() ;are there too many lines in the box? returns 0 or 1
  1. ;IBBLK is assumed to be defined=the block
  1. N SPACING,NODE,START,NUMBER
  1. Q:'$G(IBLINE) 0
  1. Q:'$G(IBBLK) 0
  1. S NODE=$G(^IBE(357.7,IBLINE,0))
  1. S START=$P(NODE,"^",3),SPACING=$P(NODE,"^",8),NUMBER=$P(NODE,"^",7)
  1. S SPACING=$S(SPACING="d":2,SPACING="t":3,1:1)
  1. I (START+(SPACING*NUMBER)-(SPACING-1))>$$MAXY^IBDFU1B
  1. Q $T