- InOutGenerate.java - minor indentation enhancement
- 002_add_feature_1714090.sql - change it to make new parameter optional - 003_make_feature_1714090_optional.sql - update for those who already ran the 002
This commit is contained in:
parent
d146950e0b
commit
3b9a37e64b
|
@ -2,12 +2,23 @@
|
||||||
-- juddm - add the ability to specific a shipment date (instead of current date) to the shipment generation process
|
-- juddm - add the ability to specific a shipment date (instead of current date) to the shipment generation process
|
||||||
-- http://sourceforge.net/tracker/index.php?func=detail&aid=1714090&group_id=176962&atid=879335
|
-- http://sourceforge.net/tracker/index.php?func=detail&aid=1714090&group_id=176962&atid=879335
|
||||||
|
|
||||||
INSERT INTO AD_PROCESS_PARA (ad_process_para_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby,
|
INSERT INTO AD_PROCESS_PARA
|
||||||
name, description, help, ad_process_id, seqno, ad_reference_id, ad_reference_value_id, ad_val_rule_id, columnname, iscentrallymaintained,
|
(ad_process_para_id, ad_client_id, ad_org_id, isactive, created,
|
||||||
fieldlength, ismandatory, isrange, defaultvalue, defaultvalue2, vformat, valuemin, valuemax, ad_element_id, entitytype )
|
createdby, updated, updatedby, NAME,
|
||||||
VALUES (50019, 0, 0, 'Y', TO_DATE('2007-03-03','YYYY-MM-DD'), 100, TO_DATE('2007-03-03','YYYY-MM-DD'), 100,
|
description,
|
||||||
'Shipment Date', 'Date printed on shipment', 'The Shipment Date indicates the date printed on the shipment.', 118, 15, 15,null,null, 'MovementDate', 'Y',
|
HELP,
|
||||||
0, 'Y', 'N', '@#Date@', '','','','', 1037, 'D');
|
ad_process_id, seqno, ad_reference_id, ad_reference_value_id,
|
||||||
|
ad_val_rule_id, columnname, iscentrallymaintained, fieldlength,
|
||||||
|
ismandatory, isrange, ad_element_id, entitytype
|
||||||
|
)
|
||||||
|
VALUES (50019, 0, 0, 'Y', TO_DATE ('2007-03-03', 'YYYY-MM-DD'),
|
||||||
|
100, TO_DATE ('2007-03-03', 'YYYY-MM-DD'), 100, 'Shipment Date',
|
||||||
|
'Date printed on shipment',
|
||||||
|
'The Shipment Date indicates the date printed on the shipment.',
|
||||||
|
118, 15, 15, NULL,
|
||||||
|
NULL, 'MovementDate', 'N', 0,
|
||||||
|
'Y', 'N', 1037, 'D'
|
||||||
|
);
|
||||||
|
|
||||||
COMMIT ;
|
COMMIT ;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
UPDATE AD_PROCESS_PARA
|
||||||
|
SET defaultvalue = NULL,
|
||||||
|
ismandatory = 'N',
|
||||||
|
updated = TO_DATE ('2007-05-07 20:55:59', 'YYYY-MM-DD HH24:MI:SS'),
|
||||||
|
updatedby = 100
|
||||||
|
WHERE ad_process_para_id = 50019;
|
||||||
|
|
||||||
|
COMMIT ;
|
|
@ -2,12 +2,23 @@
|
||||||
-- juddm - add the ability to specific a shipment date (instead of current date) to the shipment generation process
|
-- juddm - add the ability to specific a shipment date (instead of current date) to the shipment generation process
|
||||||
-- http://sourceforge.net/tracker/index.php?func=detail&aid=1714090&group_id=176962&atid=879335
|
-- http://sourceforge.net/tracker/index.php?func=detail&aid=1714090&group_id=176962&atid=879335
|
||||||
|
|
||||||
INSERT INTO AD_PROCESS_PARA (ad_process_para_id, ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby,
|
INSERT INTO AD_PROCESS_PARA
|
||||||
name, description, help, ad_process_id, seqno, ad_reference_id, ad_reference_value_id, ad_val_rule_id, columnname, iscentrallymaintained,
|
(ad_process_para_id, ad_client_id, ad_org_id, isactive, created,
|
||||||
fieldlength, ismandatory, isrange, defaultvalue, defaultvalue2, vformat, valuemin, valuemax, ad_element_id, entitytype )
|
createdby, updated, updatedby,
|
||||||
VALUES (50019, 0, 0, 'Y', TO_TIMESTAMP('2007-03-03','YYYY-MM-DD'), 100, TO_TIMESTAMP('2007-03-03','YYYY-MM-DD'), 100,
|
NAME, description,
|
||||||
'Shipment Date', 'Date printed on shipment', 'The Shipment Date indicates the date printed on the shipment.', 118, 15, 15,null,null, 'MovementDate', 'Y',
|
HELP,
|
||||||
0, 'Y', 'N', '@#Date@', '','','','', 1037, 'D');
|
ad_process_id, seqno, ad_reference_id, ad_reference_value_id,
|
||||||
|
ad_val_rule_id, columnname, iscentrallymaintained, fieldlength,
|
||||||
|
ismandatory, isrange, ad_element_id, entitytype
|
||||||
|
)
|
||||||
|
VALUES (50019, 0, 0, 'Y', TO_TIMESTAMP ('2007-03-03', 'YYYY-MM-DD'),
|
||||||
|
100, TO_TIMESTAMP ('2007-03-03', 'YYYY-MM-DD'), 100,
|
||||||
|
'Shipment Date', 'Date printed on shipment',
|
||||||
|
'The Shipment Date indicates the date printed on the shipment.',
|
||||||
|
118, 15, 15, NULL,
|
||||||
|
NULL, 'MovementDate', 'N', 0,
|
||||||
|
'Y', 'N', 1037, 'D'
|
||||||
|
);
|
||||||
|
|
||||||
COMMIT ;
|
COMMIT ;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
UPDATE AD_PROCESS_PARA
|
||||||
|
SET defaultvalue = NULL,
|
||||||
|
ismandatory = 'N',
|
||||||
|
updated = TO_TIMESTAMP ('2007-05-07 20:55:59', 'YYYY-MM-DD HH24:MI:SS'),
|
||||||
|
updatedby = 100
|
||||||
|
WHERE ad_process_para_id = 50019;
|
||||||
|
|
||||||
|
COMMIT ;
|
Loading…
Reference in New Issue