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

XUTMUSE.m

Go to the documentation of this file.
  1. XUTMUSE ;SEA/RDS - TaskMan: Option, XUTMUSER, Part 1 (Driver) ;11/30/94 11:43
  1. ;;8.0;KERNEL;;Jul 10, 1995
  1. ;
  1. ENV ;Establish Routine Environment
  1. N DIR,XUTMT,ZTKEY,ZTNAME,ZTENV,ZTF,ZTUCI,ZTSK K DTOUT,DIRUT
  1. D ENV^XUTMUTL Q:'$D(ZTENV)
  1. S XUTMT(0)="A"_$E("U",'ZTKEY),XUTMT("?")="^D HELP1^XUTMUSE",XUTMT("??")="^D HELP2^XUTMUSE" D ^XUTMT Q:ZTSK=""
  1. ;
  1. SELECT ;Prompt User For Action
  1. S DIR(0)="SAOM^D:Display status.;ST:Stop task.;E:Edit task.;P:Print task.;L:List own tasks.;SE:Select another task.",DIR("?")="^D HELP1^XUTMUSE3",DIR("??")="^D HELP2^XUTMUSE3"
  1. S DIR("A",1)="",DIR("A",2)=" Taskman User Option",DIR("A",3)="",DIR("A",4)=" Display status.",DIR("A",5)=" Stop task.",DIR("A",6)=" Edit task."
  1. S DIR("A",7)=" Print task.",DIR("A",8)=" List own tasks.",DIR("A",9)=" Select another task.",DIR("A",10)="",DIR("A")=" Select Action (Task # "_ZTSK_"): "
  1. D ^DIR Q:$D(DIRUT) D ACT I ZTSK="" K ^TMP($J) Q
  1. G SELECT
  1. ;
  1. ACT ;SELECT Subroutine--Act On User's Selection
  1. N DIR,DIRUT,DTOUT,DUOUT,XUTMT
  1. I Y="D" W ! D EN^XUTMTP(ZTSK,"",1) Q
  1. I Y="ST" W ! S XUTMT=ZTSK,XUTMT(0)="R2" D ^XUTMT Q
  1. I Y="E" S XUTMT=ZTSK D ^XUTMUSE2 Q
  1. I Y="P" D ^XUTMUSE1 Q
  1. I Y="L" D HELP2 Q
  1. W ! S XUTMT(0)="A"_$E("U",'ZTKEY),XUTMT("B")=ZTSK,XUTMT("?")="^D HELP3^XUTMUSE",XUTMT("??")="^D HELP2^XUTMUSE" D ^XUTMT Q
  1. Q
  1. ;
  1. HELP1 ;ENV Subroutine--Help Message For Initial Task Selection For "?"
  1. W !!,"This option will allow you to look at and manipulate your queued jobs, and is",!?5,"only useful for you when you have such jobs to work with."
  1. W !!,"You must begin this option by entering the task number of the queued job that",!?5,"you want to work with first."
  1. W !!,"If you don't know the task number of any of your queued jobs then enter",!?5,"two question marks ('??') and you will be shown all of your queued jobs",!?5,"on this computer."
  1. W " The task number of each task is the number listed on the",!?5,"first line of the display, before the colon (':')."
  1. W !!,"After you pick a task to work with, you will be shown a list of the things",!?5,"you can do with that task, and will be asked to pick one.",!
  1. Q
  1. ;
  1. HELP2 ;Subroutine--Help Message For Initial Task Selection For "??"
  1. N %ZTI,DTOUT,DUOUT,X,Y,ZT,ZTD1,ZTD2,ZTDTH,XUTMT,ZTOUT,ZTREC,ZTS,ZTSK
  1. K ^TMP($J)
  1. W @IOF,"Please wait while I find your tasks...searching..."
  1. S %ZTI=0,ZTOUT=0
  1. H1 S ZTS=0 F S ZTS=$O(^%ZTSK(ZTS)) Q:'ZTS D
  1. . S ZTREC=$G(^%ZTSK(ZTS,0)) Q:ZTREC=""
  1. . I $P(ZTREC,U,3)'=DUZ Q
  1. . I $P(ZTREC,U,10)]"",$P(ZTREC,U,10)'=ZTNAME Q
  1. . S ZTDTH=$$H3^%ZTM($P(ZTREC,U,6))
  1. . D SORT
  1. . Q
  1. H2 S ZTS=0,ZTDTH=$$H3^%ZTM($H)
  1. F S ZTS=$O(^%ZTSCH("TASK",ZTS)) Q:'ZTS D
  1. . I $D(^%ZTSK(ZTS,0))#2 Q
  1. . S ZTREC=$G(^%ZTSCH("TASK",ZTS)) Q:ZTREC=""
  1. . I $P(ZTREC,U,9)'=DUZ,$P(ZTREC,U,9)'=ZTNAME Q
  1. . D SORT
  1. . Q
  1. H3 W "finished!",!
  1. I '%ZTI W !,"There are no tasks listed that were queued by you.",!
  1. E S ZTD1="0",%ZTI=0 F S ZTD1=$O(^TMP($J,ZTD1)) Q:ZTD1'>0 D I ZTOUT Q
  1. . S ZTS=0
  1. . F S ZTS=$O(^TMP($J,ZTD1,ZTS)) Q:'ZTS D HPRINT I ZTOUT Q
  1. I 'ZTOUT D EOL W !
  1. ;K ^TMP($J)
  1. Q
  1. ;
  1. HPRINT ;HELP2 Subroutine--Print A Task
  1. N XUTMT,ZTSK
  1. S %ZTI=%ZTI+1,^TMP($J,0,%ZTI)=ZTS
  1. S ZTF=0 D EN^XUTMTP(ZTS,%ZTI)
  1. W !,"-------------------------------------------------------------------------------"
  1. I $Y>18 S ZTF=1 D EOP S ZTOUT=$D(DTOUT)!$D(DUOUT) Q:ZTOUT W @IOF
  1. Q
  1. ;
  1. SORT ;HELP2--sort tasks by start time, in reverse order
  1. ;input: start time, task number
  1. ;output: new cross reference in ^TMP($J)
  1. S %ZTI=%ZTI+1
  1. S ^TMP($J,ZTDTH,ZTS)=%ZTI
  1. Q
  1. ;
  1. HELP3 ;ACT Subroutine--Help Message For Task Reselection For "?"
  1. W !!,"Enter the task number of the queued job you want to work with."
  1. W !!,"Enter '??' to see the list of tasks you can choose from.",! Q
  1. ;
  1. EOP ;Simulate DIR(0)="E" Call To DIR (For Use Within DIR calls)
  1. S Y="" F ZT=0:0 R !,"Press RETURN to continue or '^' to exit: ",Y:$S($D(DTIME)#2:DTIME,1:60) S:'$T DTOUT="" S:Y="^" DUOUT="" Q:Y=""!(Y="^") W !!,"Enter either RETURN or '^'",! W:Y'["?" $C(7)
  1. Q
  1. ;
  1. EOL ;Simulate DIR(0)="E" call to DIR for end of listings
  1. S Y="" F ZT=0:0 R !,"End of listing. Press RETURN to continue: ",Y:$S($D(DTIME)#2:DTIME,1:60) S:'$T DTOUT="" S:Y="^" DUOUT="" Q:Y=""!(Y="^") W !!,"Enter either RETURN or '^'",! W:Y'["?" $C(7)
  1. Q
  1. ;