YAXX#89674 Verschillende statusbehoeften bij inkooporders, probleem doorbelastingsfouten

svn path=/Database/trunk/; revision=70752
This commit is contained in:
Erik Groener
2025-10-29 15:02:17 +00:00
parent 117194936a
commit efdccec90f
3 changed files with 7 additions and 0 deletions

View File

@@ -7246,6 +7246,7 @@ FAC_LCL('lcl_typeopdr_sequential', 'Behandelopties', 'Handling options')
FAC_LCL('mld_typeopdr_hold_allowed', 'Mag onderbroken worden (Hold)', 'Interruption allowed')
FAC_LCL('mld_typeopdr_accept', 'Kan expliciet geaccepteerd worden', 'Can be explicitly accepted')
FAC_LCL('mld_typeopdr_mld_limiet', 'Standaardopdrachtbedrag', 'Default order amount')
FAC_LCL('mld_typeopdr_complete', 'Handmatig afronden', 'Can be manual completed')
FAC_LCL('ins_srtcontrole_seq_strict', 'Strikt opeenvolgend', 'Strictly sequential')
FAC_LCL('ins_srtcontrole_halt_start', 'Moet expliciet gestart worden', 'Interrupted start')
FAC_LCL('lcl_mld_onderbroken', 'Onderbroken', 'On Hold')

View File

@@ -335,6 +335,9 @@ CREATE_TABLE(mld_typeopdr,0)
mld_typeopdr_code
VARCHAR2(60)
CONSTRAINT mld_u_mld_typeopdr_code UNIQUE,
mld_typeopdr_afronden
NUMBER(1)
DEFAULT(1) NOT NULL,
CONSTRAINT mld_u_mld_typeopdr_upper UNIQUE(mld_typeopdr_upper, mld_typeopdr_module)
);

View File

@@ -13,6 +13,9 @@ DEF_FAC_SRTNOT('AFDNEW', 0, 'lcl_noti_AFDNEW', 'prs/prs_afdeling.asp?key=',
DEF_FAC_SRTNOT('AFDUPD', 0, 'lcl_noti_AFDUPD', 'prs/prs_afdeling.asp?key=', '0', 'afdeling', 10);
DEF_FAC_SRTNOT('AFDDEL', 0, 'lcl_noti_AFDDEL', 'prs/prs_afdeling.asp?key=', '0', 'afdeling', 10);
/////////////////////////////////////////////////////////////////////////////////////////// YAXX#89674
ALTER TABLE mld_typeopdr ADD mld_typeopdr_afronden NUMBER(1) DEFAULT(1) NOT NULL;
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#00000
REGISTERONCE('$Id$')