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:
parent
fd9b7a3843
commit
89be929138
|
@ -61,7 +61,6 @@ public class X_PP_Order_Workflow extends PO implements I_PP_Order_Workflow, I_Pe
|
||||||
setPriority (0);
|
setPriority (0);
|
||||||
setPublishStatus (null);
|
setPublishStatus (null);
|
||||||
// U
|
// U
|
||||||
setValidateWorkflow (null);
|
|
||||||
setVersion (0);
|
setVersion (0);
|
||||||
setWaitingTime (0);
|
setWaitingTime (0);
|
||||||
} */
|
} */
|
||||||
|
|
|
@ -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
|
||||||
|
;
|
||||||
|
|
|
@ -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)
|
||||||
|
;
|
||||||
|
|
Loading…
Reference in New Issue