IDEMPIERE-4983 : Fix Russian Ruble currency (#903)
* IDEMPIERE-4983 : Fix Russian Ruble currency update currency currency code from RUR to RUB
This commit is contained in:
parent
080ba69967
commit
488715260e
|
@ -0,0 +1,10 @@
|
||||||
|
SET SQLBLANKLINES ON
|
||||||
|
SET DEFINE OFF
|
||||||
|
|
||||||
|
-- IDEMPIERE-4983
|
||||||
|
-- Sep 27, 2021, 5:00:28 PM CEST
|
||||||
|
UPDATE C_Currency SET ISO_Code = 'RUB',Updated=TO_DATE('2021-09-27 17:02:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE C_Currency_ID=155
|
||||||
|
;
|
||||||
|
|
||||||
|
SELECT register_migration_script('202109271700_IDEMPIERE-4983.sql') FROM dual
|
||||||
|
;
|
|
@ -0,0 +1,7 @@
|
||||||
|
-- IDEMPIERE-4983
|
||||||
|
-- Sep 27, 2021, 5:00:28 PM CEST
|
||||||
|
UPDATE C_Currency SET ISO_Code = 'RUB',Updated=TO_TIMESTAMP('2021-09-27 17:02:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE C_Currency_ID=155
|
||||||
|
;
|
||||||
|
|
||||||
|
SELECT register_migration_script('202109271700_IDEMPIERE-4983.sql') FROM dual
|
||||||
|
;
|
Loading…
Reference in New Issue