solution tested and ready for deployment updated SRP_Git_Services to handle creating local copies of inherited entities updated HgCV OCAP order trigger to also look for active prove-in orders moved error services common into sysprog to avoid compilation issues
17 lines
506 B
Plaintext
17 lines
506 B
Plaintext
compile insert NICA_ORDERS_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 05/12/2024
|
|
Description : Insert for Table NICA_ORDERS
|
|
----------------------------------------*/
|
|
#ifndef __NICA_ORDERS_EQUATES__
|
|
#define __NICA_ORDERS_EQUATES__
|
|
|
|
equ NICA_ORDERS.ORDER_TYPE$ to 1
|
|
equ NICA_ORDERS.ORDER_STATUS$ to 2
|
|
equ NICA_ORDERS.ENTITY_TYPE$ to 3
|
|
equ NICA_ORDERS.ENTITY_ID$ to 4
|
|
equ NICA_ORDERS.IS_COMPLETE$ to 5
|
|
|
|
#endif
|