DJIN#41675: DJIN - BES: Bevestiging levering/ontvangst door besteller va.
svn path=/Database/trunk/; revision=36935
This commit is contained in:
@@ -23,6 +23,7 @@ DEF_STATUS('bestelopdr', 5, 'lcl_bes_ord_onbevestigd');
|
||||
DEF_STATUS('bestelopdr', 6, 'lcl_bes_ord_geleverd');
|
||||
DEF_STATUS('bestelopdr', 7, 'lcl_bes_ord_verwerkt');
|
||||
DEF_STATUS('bestelopdr', 8, 'lcl_bes_ord_geannuleerd');
|
||||
DEF_STATUS('bestelopdr', 9, 'lcl_bes_ord_received');
|
||||
|
||||
REGISTERONCE('$Id$')
|
||||
|
||||
|
||||
@@ -1329,6 +1329,12 @@ AS
|
||||
THEN
|
||||
eventcode := 'BES2CA'; -- Geannuleerd
|
||||
END IF;
|
||||
WHEN 9 -- Uitgegeven
|
||||
THEN
|
||||
IF currentstatus <> 9
|
||||
THEN
|
||||
eventcode := 'BESOT2'; -- Ontvangen
|
||||
END IF;
|
||||
ELSE
|
||||
-- Invalid statuschange or no change
|
||||
eventcode := NULL;
|
||||
|
||||
@@ -530,6 +530,10 @@ CREATE_TABLE(bes_disc_params, 0)
|
||||
DEFAULT 0
|
||||
NOT NULL,
|
||||
bes_disc_params_ins_mode /* bestelcatalogusinstellingen {0=Niet van toepassing, 1=Aanmaken en koppelen (Nog niet ondersteund), 2=Koppelen} */
|
||||
NUMBER(1)
|
||||
DEFAULT 0
|
||||
NOT NULL,
|
||||
bes_disc_params_fe_confirm /* Besteller bevestigt ontvangst {0=Nee (default), 1=Ja} */
|
||||
NUMBER(1)
|
||||
DEFAULT 0
|
||||
NOT NULL
|
||||
|
||||
@@ -1829,6 +1829,7 @@ DEF_FAC_SRTNOT('BESVER', 0, 'lcl_noti_BESVER', 'bes/bes_bestelling.asp?bes_key='
|
||||
DEF_FAC_SRTNOT('BESKTO', 3, 'lcl_noti_BESKTO', 'mld/mld_melding.asp?kto=1&bes_key=', '0', 'bestelling', 10);
|
||||
DEF_FAC_SRTNOT('BESXXX', 3, 'lcl_noti_BESXXX', 'bes/bes_bestelling.asp?bes_key=', '0', 'bestelling', 10);
|
||||
DEF_FAC_SRTNOT('BESCAN', 0, 'lcl_noti_BESCAN', 'bes/bes_bestelling.asp?bes_key=', '0', 'bestelling', 10);
|
||||
DEF_FAC_SRTNOT('BESOT2', 0, 'lcl_noti_BESOT2', 'bes/bes_bestelling.asp?bes_key=', '0', 'bestelling', 10);
|
||||
|
||||
/* Opmerkelijk: hier zitten geen links bij, waarom eigenlijk niet? */
|
||||
DEF_FAC_SRTNOT('BES2BE', 1, 'lcl_noti_BES2BE', '', '0', 'bestelopdr', 10); /* naar 5 */
|
||||
|
||||
@@ -2286,6 +2286,7 @@ FAC_LCL('lcl_bes_ord_bevestigd', 'Bevestigd', 'Confirmed')
|
||||
FAC_LCL('lcl_bes_ord_geleverd', 'Geleverd', 'Delivered')
|
||||
FAC_LCL('lcl_bes_ord_verwerkt', 'Verwerkt', 'Closed')
|
||||
FAC_LCL('lcl_bes_ord_geannuleerd', 'Geannuleerd', 'Cancelled')
|
||||
FAC_LCL('lcl_bes_ord_received', 'Ontvangen', 'Received')
|
||||
FAC_LCL('lcl_bes_punchout', '(extern)', '(external)')
|
||||
FAC_LCL('lcl_bes_punchout_active', 'Voor het bestellen uit deze catalogus wordt u in een ander scherm geleid naar de webshop van de leverancier.'||CHR(10)||'Vul daar uw winkelwagen en rond daar uw bestelling af.'||CHR(10)||CHR(10)||'Dit tabblad mag u sluiten.', 'You are directed to the web shop of the supplier.'||CHR(10)||'Finish your purchase order in the other window.'||CHR(10)||'This tab can be closed.')
|
||||
FAC_LCL('lcl_bes_order_for', 'Bestelling voor', 'Purchase order for')
|
||||
|
||||
@@ -278,6 +278,15 @@ ALTER TABLE ins_deel
|
||||
NUMBER(10)
|
||||
CONSTRAINT bes_r_bes_bestelopdr_key3 REFERENCES bes_bestelopdr(bes_bestelopdr_key);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////// DJIN#41675
|
||||
ALTER TABLE bes_disc_params
|
||||
ADD bes_disc_params_fe_confirm /* Besteller bevestigt ontvangst {0=Nee (default), 1=Ja} */
|
||||
NUMBER(1)
|
||||
DEFAULT 0
|
||||
NOT NULL;
|
||||
|
||||
DEF_STATUS('bestelopdr', 9, 'lcl_bes_ord_received');
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////// FSN#47307
|
||||
ALTER TABLE bes_disc_params /* 0=ouderwets artikelselector, 1=vrij artikelen, 2=bestellijst */
|
||||
ADD bes_disc_params_bestelmode
|
||||
|
||||
Reference in New Issue
Block a user