31 lines
792 B
Plaintext
31 lines
792 B
Plaintext
SUBROUTINE NCR_LOSS_BY_CONV(ConvType, DataIo, SubrLabel, ReturnedValue)
|
|
|
|
$INSERT LOGICAL
|
|
|
|
equ valid$ to 0 ;* successful
|
|
equ invalid_msg$ to 1 ;* bad data - print error message window
|
|
equ invalid_conv$ to 2 ;* bad conversion - " "
|
|
equ invalid_nomsg$ to 3 ;* bad but do not print the error message window
|
|
|
|
status() = Valid$
|
|
|
|
begin case
|
|
case ConvType = 'ICONV'
|
|
ReturnedValue = DataIo
|
|
|
|
case ConvType = 'OCONV'
|
|
begin case
|
|
case DataIo = 'M'
|
|
ReturnedValue = 'Manufacturing'
|
|
case DataIo = 'C'
|
|
ReturnedValue = 'Cust/Supplier'
|
|
|
|
end case
|
|
|
|
case otherwise$
|
|
status() = invalid_msg$
|
|
|
|
end case
|
|
|
|
return
|