BF [ 2820596 ] Unable to save a manufacturing order

https://sourceforge.net/tracker/index.php?func=detail&aid=2820596&group_id=176962&atid=934929#
This commit is contained in:
teo_sarca 2009-07-13 07:22:39 +00:00
parent fd9b7a3843
commit 89be929138
3 changed files with 30 additions and 1 deletions

View File

@ -61,7 +61,6 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe
setPriority (0);
setPublishStatus (null);
// U
setValidateWorkflow (null);
setVersion (0);
setWaitingTime (0);
} */

View File

@ -0,0 +1,15 @@
-- 13.07.2009 10:10:00 EEST
-- Adding new column in PP_Cost_Collector
UPDATE AD_Column SET IsMandatory='N',Updated=TO_DATE('2009-07-13 10:10:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53721
;
-- 13.07.2009 10:10:37 EEST
-- Adding new column in PP_Cost_Collector
ALTER TABLE PP_Order_Workflow MODIFY ValidateWorkflow CHAR(1) DEFAULT NULL
;
-- 13.07.2009 10:10:38 EEST
-- Adding new column in PP_Cost_Collector
ALTER TABLE PP_Order_Workflow MODIFY ValidateWorkflow NULL
;

View File

@ -0,0 +1,15 @@
-- 13.07.2009 10:10:01 EEST
-- Adding new column in PP_Cost_Collector
UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2009-07-13 10:10:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=53721
;
-- 13.07.2009 10:10:37 EEST
-- Adding new column in PP_Cost_Collector
insert into t_alter_column values('pp_order_workflow','ValidateWorkflow','CHAR(1)',null,'NULL')
;
-- 13.07.2009 10:10:38 EEST
-- Adding new column in PP_Cost_Collector
insert into t_alter_column values('pp_order_workflow','ValidateWorkflow',null,'NULL',null)
;