open-insight/LSL2/STPROC/COMM_REACT_SERV_CAT.txt
Infineon\StieberD 7762b129af pre cutover push
2024-09-04 20:33:41 -07:00

510 lines
12 KiB
Plaintext

COMPILE FUNCTION Comm_React_Serv_Cat(Instruction,Parm1,Parm2)
/*
Template Commuter module for REACT_SERV_CAT (Reactor Service Category) window
11/09/2007 - John C. Henry, J.C. Henry & Co., Inc.
*/
DECLARE SUBROUTINE Set_Property, End_Dialog, Send_Event, Set_Status, Center_Window, Post_Event
DECLARE SUBROUTINE ErrMsg, Send_Message, Set_Property, Send_Event, Btree.Extract, obj_AppWindow,
DECLARE SUBROUTINE obj_Notes, Security_Err_Msg, End_Window, Forward_Event, Start_Window, Create_Note
DECLARE FUNCTION Get_Property, Get_Status, Dialog_Box, Utility, Center_Window, Popup, Collect.Ixvals
DECLARE FUNCTION Send_Message, Msg, Security_Check, RowExists, NextKey, obj_React_Event
$INSERT MSG_EQUATES
$INSERT APPCOLORS
$INSERT LSL_USERS_EQU
$INSERT SECURITY_RIGHTS_EQU
$INSERT REACT_SERV_CAT_EQUATES
$INSERT POPUP_EQUATES
$INSERT LOGICAL
EQU CRLF$ TO \0D0A\
ErrTitle = 'Error in Comm_React_Event'
ErrorMsg = ''
Result = ''
BEGIN CASE
CASE Instruction = 'Create' ; GOSUB Create
CASE Instruction = 'Refresh' ; GOSUB Refresh
CASE Instruction = 'Read' ; GOSUB Read
CASE Instruction = 'Write' ; GOSUB Write
CASE Instruction = 'Clear' ; GOSUB Clear
CASE Instruction = 'Delete' ; GOSUB Delete
CASE Instruction = 'Page' ; GOSUB Page
CASE Instruction = 'Close' ; GOSUB Close
CASE Instruction = 'LUServCatID' ; GOSUB LUServCatID
CASE 1
ErrorMsg = 'Unknown Instruction ':QUOTE(Instruction):' passed to routine.'
ErrMsg(ErrorMsg)
END CASE
RETURN Result
* * * * * * *
Create:
* * * * * * *
IF NOT(Security_Check('Reactor Event Log',READ$)) THEN
Security_Err_Msg('Reactor Event Log',READ$)
End_Window(@WINDOW)
RETURN
END
obj_Appwindow('Create',@WINDOW)
* Provides compatibility with the existing messaging attachment system
IF Parm1 NE '' THEN
PassedKeys = FIELD(Parm1,'*',1)
obj_Appwindow('ViewRelated',@WINDOW:@RM:PassedKeys)
END
IOOptions = Get_Property(@WINDOW,'IOOPTIONS')
IOOptions<11> = 1 ;* Generate READ event on QBFLoad
Set_Property(@WINDOW,'IOOPTIONS',IOOptions)
GOSUB Refresh
RETURN
* * * * * * *
Clear:
* * * * * * *
Send_Event(@WINDOW,'PAGE',1)
IF Get_Property(@WINDOW,'@READONLY') THEN
obj_AppWindow('ReadOnly',@RM:1) ;* Reenables data bound controls
Set_Property(@WINDOW,'@READONLY',0) ;* Clear flag on window
END
* * * * * * *
Refresh:
* * * * * * *
/*
* * * * * Samples * * * * * *
ACStatus = Get_Property(@WINDOW:'.AC_STATUS','TEXT')
IF ACStatus NE '' THEN
IF ACStatus[1,1] = 'C' THEN
Set_Property(@WINDOW:'.AC_STATUS','BACKCOLOR',RED$)
END ELSE
Set_Property(@WINDOW:'.AC_STATUS','BACKCOLOR',GREEN$)
END
END
Captive = Get_Property(@WINDOW:'.CAPTIVE','CHECK')
Consignment = Get_Property(@WINDOW:'.CONSIGNMENT','CHECK')
BEGIN CASE
CASE Captive
Set_Property(@WINDOW:'.ORD_TYPE','BACKCOLOR',LTBLUE$)
CASE Consignment
Set_Property(@WINDOW:'.ORD_TYPE','BACKCOLOR',YELLOW$)
CASE 1
Set_Property(@WINDOW:'.ORD_TYPE','BACKCOLOR',GREEN$)
END CASE
Ctrls = @WINDOW:'.CHANGE_VISION_ORD_NO':@RM ; Props = 'ENABLED':@RM
Ctrls := @WINDOW:'.CUST_BUTTON':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.CONTACT_BUTTON':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.CREATE_WO_BUTTON':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.VIEW_AC':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.NEW_ITEM_BUTTON':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.SHIP_TO_EDIT':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.BILL_TO_EDIT':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.LU_CUST_NO':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.LU_COMP_CONTACT':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.LU_AC' ; Props := 'ENABLED'
IF Get_Property(@WINDOW,'@READONLY') THEN
Vals = STR('0':@RM,11) ;* ReadOnly mode - kill the buttons
END ELSE
Vals = STR('1':@RM,11) ;* Normal mode - enable the buttons
END
Vals[-1,1] = ''
Set_Property(Ctrls,Props,Vals) ;* Kill the function buttons when in view only mode
*/
* * * * * End of Samples * * * * * *
* QBF buttons
Ctrls = @WINDOW:'.QBF_FIRST_FIX':@RM ; Props = 'ENABLED':@RM
Ctrls := @WINDOW:'.QBF_PREV_FIX':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.QBF_ABS_FIX':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.QBF_NEXT_FIX':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.QBF_LAST_FIX':@RM ; Props := 'ENABLED':@RM
Ctrls := @WINDOW:'.QBF_STOP_FIX' ; Props := 'ENABLED'
IF Get_Property(@WINDOW,'QBFLIST') = '' THEN
Vals = 0:@RM:0:@RM:0:@RM:0:@RM:0:@RM:0
END ELSE
Vals = 1:@RM:1:@RM:1:@RM:1:@RM:1:@RM:1
END
Set_Property(Ctrls,Props,Vals)
* Turn edit table symbolic column backgrounds to green
ETSymbolics = Get_Property(@WINDOW,'@ET_SYMBOLICS') ;* Loaded during 'Create' in obj_Appwindow
ETCtrls = ETSymbolics<1>
ETCols = ETSymbolics<2>
FOR I = 1 TO COUNT(ETCtrls,@VM) + (ETCtrls NE '')
ETCtrl = ETCtrls<1,I>
ETList = Get_Property(ETCtrl,'LIST')
FOR Line = 1 TO COUNT(ETList,@FM) + (ETList NE '')
IF ETList<Line,1> NE '' THEN
FOR N = 1 TO COUNT(ETCols<1,I>,@SVM) + (ETCols<1,I> NE '')
stat = Send_Message(ETCtrl,'COLOR_BY_POS',ETCols<1,I,N>,Line,GREEN$)
NEXT N
END
NEXT I
NEXT I
RETURN
* * * * * * *
Page:
* * * * * * *
obj_Appwindow('Page')
RETURN
* * * * * * *
LUServCatID:
* * * * * * *
IF NOT(ASSIGNED(Parm1)) THEN FocusControl = '' ELSE FocusControl = Parm1
IF NOT(ASSIGNED(Parm2)) THEN FocusPos = '' ELSE FocusPos = Parm2
Set_Status(0)
ServCatID = Popup(@WINDOW,'','REACT_SERV_CAT')
IF ServCatID = '' THEN RETURN
obj_Appwindow('LoadFormKeys',@WINDOW:@RM:ServCatID)
RETURN
* * * * * * *
Read:
* * * * * * *
/*
NewRecord = false$
if rowexists( 'REACT_SERV_CAT', .cat_id->text ) then
ReadOk = true$
end else
* user is trying to add new do they have write rights
if security_check( 'React Serv Cat', Write$ ) then
ReadOk = true$
end else
security_err_msg( 'React Serv Cat', Write$ )
ReadOk = false$
.cat_id->text = ''
Void = post_event( CtrlEntId, 'CLEAR', False$, True$ )
end
NewRecord = true$
end
if ReadOk then
if get_property( @window, '@NoRead' ) then
Void = set_property( @window, '@NoRead', 0 )
end else
* no qbf active do the read
* if it is active the read already took place
forward_event()
end
CatId = .cat_id->text
ProtectVar = 'ENTRY_ID/ENTRY_DATE'
swap '/' with @rm:@window:'.' in ProtectVar
ProtectVar = @window:'.':ProtectVar
Void = set_property( ProtectVar, 'ENABLED', 0 )
if rowexists( 'REACT_SERV_CAT', CatId ) else
.entry_id->text = oconv( @user4, '[XLATE_CONV,LSL_USERS*FIRST_LAST]' )
.entry_date->text = oconv( date(), 'D2/' )
end
if NewRecord else
if security_check( 'React Serv Cat', Edit$ ) else
* protect all fields
AllControls = utility( 'OBJECTLIST', @window, '' )
Acnt = fieldcount( AllControls, @fm )
for i = 1 to Acnt
ThisControl = AllControls<i>
if ThisControl[-6,6] = '_LABEL' or index( ThisControl, 'MENU', 1 ) or index( ThisControl, 'TEXT', 1 ) else
void = set_property( ThisControl, 'ENABLED', 0 )
end
next i
Void = scroll_enable()
end
end
end
RETURN 0
*/
/*
OrderNo = Get_Property(@WINDOW:'.ORD_NO','TEXT')
IF RowExists('ORDER',OrderNo) THEN
IF NOT(Security_Check('Order',EDIT$)) THEN
obj_AppWindow('ReadOnly',@WINDOW) ;* disable all database controls
Set_Property(@WINDOW,'@READONLY',1)
END
END ELSE
IF NOT(Security_Check('Order',WRITE$)) THEN
Send_Event(@WINDOW,'CLEAR')
Security_Err_Msg('Order',WRITE$)
RETURN
END
END
*/
GOSUB Refresh
RETURN
* * * * * * *
Write:
* * * * * * *
/*
OrderNo = Get_Property(@WINDOW:'.ORD_NO','TEXT')
Message = ''
IF RowExists('ORDER',OrderNo) THEN
IF Get_Property(@WINDOW,'SAVEWARN') THEN
Message = 'Order No. ':OrderNo:' has been changed.'
END
END ELSE
Message = 'New Order ':QUOTE(OrderNo):' entered into system.'
END
IF Message NE '' THEN
Recipients = XLATE('NOTIFICATION','ORDER_ENTRY',NOTIFICATION_USER_ID$,'X')
SentFrom = @USER4
Subject = 'New/Update Order':OrderNo
AttachWindow = 'ORDER2'
AttachKey = OrderNo
SendToGroup = ''
Parms = Recipients:@RM:SentFrom:@RM:Subject:@RM:Message:@RM:AttachWindow:@RM:AttachKey:@RM:SendToGroup
*obj_Notes('Create',Parms) ;* Per Request from Customer Service
IF Get_Status(errCode) THEN
ErrMsg(errCode)
END
END
*/
Result = 1
RETURN
* * * * * * *
Delete:
* * * * * * *
/*
IF Security_Check('Order',Delete$) THEN
Result = 1 ;* Proceed with delete
END ELSE
Security_Err_Msg('Order',Delete$)
Result = 0 ;* Stop event chain
END
*/
RETURN
* * * * * * *
Close:
* * * * * * *
/*
obj_Notes('Inbox',@USER4) ;* Checks for any new messages
obj_Appwindow('CardReturn',@WINDOW)
*/
RETURN
* * * * * * *
ItemDC:
* * * * * * *
/*
OrderNo = Get_Property(@WINDOW,'ID')
CtrlEntID = @WINDOW:'.ORDER_DET'
CurrPos = Get_Property(CtrlEntID,'SELPOS')
CurrCol = CurrPos<1>
CurrRow = CurrPos<2>
IF CurrCol = COL$ITEM_NO THEN
ItemNo = Get_Property(CtrlEntID,'CELLPOS',COL$ITEM_NO:@FM:CurrRow)
IF OrderNo NE '' AND ItemNo NE '' THEN
IF Get_Property(@WINDOW,'QBFLIST') = '' THEN
Send_Event(@WINDOW,'WRITE')
END
DetWindow = 'ORDER_DET'
DetKeys = OrderNo:'*':ItemNo
DefaultRec = ''
RetKey = OrderNo
RetPage = 1
RetCtrl = CtrlEntID
RetPos = CurrPos
oAParms = DetWindow:@RM:DetKeys:@RM:DefaultRec:@RM:RetKey:@RM:RetPage:@RM:RetCtrl:@RM:RetPos
obj_AppWindow('ViewNewDetail',oAParms)
IF Get_Status(errCode) THEN
ErrMsg(errCode)
END
END
END ;* End of ItemNo column
IF CurrCol = COL$QUOTE_NO THEN
QuoteNo = Get_Property(CtrlEntID,'CELLPOS',COL$QUOTE_NO:@FM:CurrRow)
IF OrderNo NE '' AND QuoteNo NE '' THEN
IF Get_Property(@WINDOW,'QBFLIST') = '' THEN
Send_Event(@WINDOW,'WRITE')
END
DetWindow = 'QUOTE2'
DetKeys = QuoteNo
DefaultRec = ''
RetKey = OrderNo
RetPage = 1
RetCtrl = CtrlEntID
RetPos = CurrPos
oAParms = DetWindow:@RM:DetKeys:@RM:DefaultRec:@RM:RetKey:@RM:RetPage:@RM:RetCtrl:@RM:RetPos
obj_AppWindow('ViewNewDetail',oAParms)
IF Get_Status(errCode) THEN
ErrMsg(errCode)
END
END
END ;* End of QuoteNo column
IF CurrCol = COL$WO_NO THEN
WONo = Get_Property(CtrlEntID,'CELLPOS',COL$WO_NO:@FM:CurrRow)
IF OrderNo NE '' AND WONo NE '' THEN
IF Get_Property(@WINDOW,'QBFLIST') = '' THEN
Send_Event(@WINDOW,'WRITE')
END
DetWindow = 'WO_LOG2'
DetKeys = WONo
DefaultRec = ''
RetKey = OrderNo
RetPage = 1
RetCtrl = CtrlEntID
RetPos = CurrPos
oAParms = DetWindow:@RM:DetKeys:@RM:DefaultRec:@RM:RetKey:@RM:RetPage:@RM:RetCtrl:@RM:RetPos
obj_AppWindow('ViewNewDetail',oAParms)
IF Get_Status(errCode) THEN
ErrMsg(errCode)
END
END
END ;* End of WO column
IF CurrCol = COL$EPI_PN THEN
EpiPN = Get_Property(CtrlEntID,'CELLPOS',COL$EPI_PN:@FM:CurrRow)
IF OrderNo NE '' AND EpiPN NE '' THEN
IF Get_Property(@WINDOW,'QBFLIST') = '' THEN
Send_Event(@WINDOW,'WRITE')
END
DetWindow = 'EPI_PART'
DetKeys = EpiPN
DefaultRec = ''
RetKey = OrderNo
RetPage = 1
RetCtrl = CtrlEntID
RetPos = CurrPos
oAParms = DetWindow:@RM:DetKeys:@RM:DefaultRec:@RM:RetKey:@RM:RetPage:@RM:RetCtrl:@RM:RetPos
obj_AppWindow('ViewNewDetail',oAParms)
IF Get_Status(errCode) THEN
ErrMsg(errCode)
END
END
END ;* End of Epi Part Number column
*/
RETURN