IDEMPIERE-1864 Allow negative tax rate

This commit is contained in:
Carlos Ruiz 2014-03-30 18:52:03 -05:00
parent c372315ce8
commit 04a954d546
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,11 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- Mar 30, 2014 6:50:49 PM COT
-- IDEMPIERE-1864 Allow negative tax rate
UPDATE AD_Column SET ValueMin=NULL,Updated=TO_DATE('2014-03-30 18:50:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3693
;
SELECT register_migration_script('201403301851_IDEMPIERE-1864.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- Mar 30, 2014 6:50:49 PM COT
-- IDEMPIERE-1864 Allow negative tax rate
UPDATE AD_Column SET ValueMin=NULL,Updated=TO_TIMESTAMP('2014-03-30 18:50:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3693
;
SELECT register_migration_script('201403301851_IDEMPIERE-1864.sql') FROM dual
;