From 0703630bb35415e9b9bc443a0a9304857884c757 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 27 Oct 2014 15:41:24 -0500 Subject: [PATCH] IDEMPIERE-2276 DisplayLogic of PaymentTerm is not consistent between Purchase Order and Invoice (Vendor) --- .../i2.0z/oracle/201410271541_IDEMPIERE-2276.sql | 11 +++++++++++ .../i2.0z/postgresql/201410271541_IDEMPIERE-2276.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i2.0z/oracle/201410271541_IDEMPIERE-2276.sql create mode 100644 migration/i2.0z/postgresql/201410271541_IDEMPIERE-2276.sql diff --git a/migration/i2.0z/oracle/201410271541_IDEMPIERE-2276.sql b/migration/i2.0z/oracle/201410271541_IDEMPIERE-2276.sql new file mode 100644 index 0000000000..ed54a39eb4 --- /dev/null +++ b/migration/i2.0z/oracle/201410271541_IDEMPIERE-2276.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 27, 2014 3:39:07 PM COT +-- IDEMPIERE-2250 Charge on bank transfer not needed +UPDATE AD_Field SET DisplayLogic='@PaymentRule@=''P''',Updated=TO_DATE('2014-10-27 15:39:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3439 +; + +SELECT register_migration_script('201410271541_IDEMPIERE-2276.sql') FROM dual +; + diff --git a/migration/i2.0z/postgresql/201410271541_IDEMPIERE-2276.sql b/migration/i2.0z/postgresql/201410271541_IDEMPIERE-2276.sql new file mode 100644 index 0000000000..03bf41b770 --- /dev/null +++ b/migration/i2.0z/postgresql/201410271541_IDEMPIERE-2276.sql @@ -0,0 +1,8 @@ +-- Oct 27, 2014 3:39:07 PM COT +-- IDEMPIERE-2250 Charge on bank transfer not needed +UPDATE AD_Field SET DisplayLogic='@PaymentRule@=''P''',Updated=TO_TIMESTAMP('2014-10-27 15:39:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3439 +; + +SELECT register_migration_script('201410271541_IDEMPIERE-2276.sql') FROM dual +; +