From 89a28c67167dadc41645dbb5264d424ff5ea723c Mon Sep 17 00:00:00 2001 From: wght Date: Thu, 11 Oct 2007 22:22:47 +0000 Subject: [PATCH] http://sourceforge.net/tracker/index.php?func=detail&aid=1811884&group_id=176962&atid=879332 Bug fix for documentNo pljava function needed by MRP Detail Review report in libero. --- migration/330-trunk/postgresql/013_DocumentNo.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 migration/330-trunk/postgresql/013_DocumentNo.sql diff --git a/migration/330-trunk/postgresql/013_DocumentNo.sql b/migration/330-trunk/postgresql/013_DocumentNo.sql new file mode 100644 index 0000000000..a1ce1fcd59 --- /dev/null +++ b/migration/330-trunk/postgresql/013_DocumentNo.sql @@ -0,0 +1,7 @@ +CREATE FUNCTION documentNo(p_MPC_MRP_ID numeric) RETURNS character varying + + AS $$org.compiere.sqlj.Manufacturing.documentNo(int)$$ + LANGUAGE java; + + +ALTER FUNCTION adempiere.documentNo(p_MPC_MRP_ID numeric) OWNER TO postgres;