Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- C_order_post1 (yang pertama)
- CREATE OR REPLACE FUNCTION public.c_order_post1(p_pinstance_id character varying, p_order_id character varying)
- RETURNS void
- LANGUAGE plpgsql
- SET search_path TO '$user', 'public'
- AS $function$ DECLARE
- BEGIN
- PERFORM C_ORDER_POST1($1, $2, 'Y');
- END
- ; $function$;
- ===========================================================
- C_order_post1 (yang kedua)
- CREATE OR REPLACE FUNCTION public.c_order_post1(p_pinstance_id character varying, p_order_id character varying)
- RETURNS void
- LANGUAGE plpgsql
- SET search_path TO '$user', 'public'
- AS $function$ DECLARE
- BEGIN
- PERFORM C_ORDER_POST1($1, $2, 'Y');
- END
- ; $function$;
- ===========================================================
- CREATE OR REPLACE FUNCTION public.c_order_post(p_pinstance_id character varying)
- RETURNS void
- LANGUAGE plpgsql
- SET search_path TO '$user', 'public'
- AS $function$ DECLARE
- /******************************************************************************
- * The contents of this file are subject to the Compiere License Version 1.1
- * ("License"); You may not use this file except in compliance with the License
- * You may obtain a copy of the License at http://www.compiere.org/license.html
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
- * the specific language governing rights and limitations under the License.
- * The Original Code is Compiere ERP & Business Solution
- * The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
- * Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
- * created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
- * Contributor(s): Openbravo SLU
- * Contributions are Copyright (C) 2001-2006 Openbravo S.L.U.
- ******************************************************************************/
- BEGIN
- PERFORM C_ORDER_POST1(p_PInstance_ID, NULL) ;
- END ; $function$;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement