Advertisement
tko_pb

pak zen

Oct 4th, 2018
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. C_order_post1 (yang pertama)
  3.  
  4. CREATE OR REPLACE FUNCTION public.c_order_post1(p_pinstance_id character varying, p_order_id character varying)
  5.  RETURNS void
  6.  LANGUAGE plpgsql
  7.  SET search_path TO '$user', 'public'
  8. AS $function$ DECLARE
  9. BEGIN
  10.  PERFORM C_ORDER_POST1($1, $2, 'Y');
  11. END
  12. ; $function$;
  13.  
  14. ===========================================================
  15.  
  16. C_order_post1  (yang kedua)
  17.  
  18. CREATE OR REPLACE FUNCTION public.c_order_post1(p_pinstance_id character varying, p_order_id character varying)
  19.  RETURNS void
  20.  LANGUAGE plpgsql
  21.  SET search_path TO '$user', 'public'
  22. AS $function$ DECLARE
  23. BEGIN
  24.  PERFORM C_ORDER_POST1($1, $2, 'Y');
  25. END
  26. ; $function$;
  27.  
  28. ===========================================================
  29.  
  30. CREATE OR REPLACE FUNCTION public.c_order_post(p_pinstance_id character varying)
  31.  RETURNS void
  32.  LANGUAGE plpgsql
  33.  SET search_path TO '$user', 'public'
  34. AS $function$ DECLARE
  35. /******************************************************************************
  36.   * The contents of this file are subject to the   Compiere License  Version 1.1
  37.   * ("License"); You may not use this file except in compliance with the License
  38.   * You may obtain a copy of the License at http://www.compiere.org/license.html
  39.   * Software distributed under the License is distributed on an  "AS IS"  basis,
  40.   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
  41.   * the specific language governing rights and limitations under the License.
  42.   * The Original Code is                  Compiere  ERP &  Business Solution
  43.   * The Initial Developer of the Original Code is Jorg Janke  and ComPiere, Inc.
  44.   * Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
  45.   * created by ComPiere are Copyright (C) ComPiere, Inc.;   All Rights Reserved.
  46.   * Contributor(s): Openbravo SLU
  47.   * Contributions are Copyright (C) 2001-2006 Openbravo S.L.U.
  48.   ******************************************************************************/
  49. BEGIN
  50.   PERFORM C_ORDER_POST1(p_PInstance_ID, NULL) ;
  51. END ; $function$;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement