[ 1823186 ] New process to setup Posterita POS when Client do not is new
http://sourceforge.net/tracker/index.php?func=detail&aid=1823186&group_id=176962&atid=928568
This commit is contained in:
parent
96ec74cf8e
commit
27efd9b851
|
@ -128,6 +128,10 @@
|
||||||
<zipfileset src="lib/patches.jar" >
|
<zipfileset src="lib/patches.jar" >
|
||||||
<patternset refid="manifest.exclude"/>
|
<patternset refid="manifest.exclude"/>
|
||||||
</zipfileset>
|
</zipfileset>
|
||||||
|
<!-- posterita packages -->
|
||||||
|
<zipfileset src="lib/posterita.jar" >
|
||||||
|
<patternset refid="manifest.exclude"/>
|
||||||
|
</zipfileset>
|
||||||
<!-- 2pack packages -->
|
<!-- 2pack packages -->
|
||||||
<zipgroupfileset dir="packages" includes="**/lib/*.jar">
|
<zipgroupfileset dir="packages" includes="**/lib/*.jar">
|
||||||
<patternset refid="manifest.exclude"/>
|
<patternset refid="manifest.exclude"/>
|
||||||
|
|
|
@ -49,7 +49,7 @@ INSERT INTO AD_PROCESS (ad_process_id,
|
||||||
'N',
|
'N',
|
||||||
'N',
|
'N',
|
||||||
NULL,
|
NULL,
|
||||||
'org.adempiere.process.SetupWebPOS',
|
'org.posterita.process.SetupWebPOS',
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -801,7 +801,7 @@ INSERT INTO AD_PROCESS_PARA (ad_process_para_id,
|
||||||
60,
|
60,
|
||||||
'Y',
|
'Y',
|
||||||
'N',
|
'N',
|
||||||
NULL,
|
'http://www.adempiere.org',
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -1009,4 +1009,7 @@ INSERT INTO AD_TREENODEMM (ad_tree_id,
|
||||||
52001,
|
52001,
|
||||||
5);
|
5);
|
||||||
|
|
||||||
|
INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,IsReadWrite,Created,AD_Process_ID,CreatedBy,Updated,UpdatedBy,IsActive,AD_Role_ID) VALUES (11,0,'Y',TO_DATE('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),53002,100,TO_DATE('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),100,'Y',102);
|
||||||
|
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
|
@ -49,7 +49,7 @@ INSERT INTO ad_process (ad_process_id,
|
||||||
'N',
|
'N',
|
||||||
'N',
|
'N',
|
||||||
NULL,
|
NULL,
|
||||||
'org.adempiere.process.SetupWebPOS',
|
'org.posterita.process.SetupWebPOS',
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -799,7 +799,7 @@ INSERT INTO ad_process_para (ad_process_para_id,
|
||||||
60,
|
60,
|
||||||
'Y',
|
'Y',
|
||||||
'N',
|
'N',
|
||||||
NULL,
|
'http://',
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -1006,3 +1006,5 @@ INSERT INTO ad_treenodemm (ad_tree_id,
|
||||||
0,
|
0,
|
||||||
52001,
|
52001,
|
||||||
5);
|
5);
|
||||||
|
|
||||||
|
INSERT INTO AD_Process_Access (AD_Client_ID,AD_Org_ID,IsReadWrite,Created,AD_Process_ID,CreatedBy,Updated,UpdatedBy,IsActive,AD_Role_ID) VALUES (11,0,'Y',TO_TIMESTAMP('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),53002,100,TO_TIMESTAMP('2007-11-05 14:26:09','YYYY-MM-DD HH24:MI:SS'),100,'Y',102);
|
|
@ -46,6 +46,7 @@
|
||||||
<include name="org/**"/>
|
<include name="org/**"/>
|
||||||
</jar>
|
</jar>
|
||||||
<copy file="${build.dir}/posterita.jar" tofile="${src.web.dir}/WEB-INF/lib/posterita.jar" overwrite="true"/>
|
<copy file="${build.dir}/posterita.jar" tofile="${src.web.dir}/WEB-INF/lib/posterita.jar" overwrite="true"/>
|
||||||
|
<copy file="${build.dir}/posterita.jar" tofile="${adempiere.base}/lib/posterita.jar" overwrite="true"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* Autor: Victor Perez victor.perez@e-evolution.con www.e-evolution.com *
|
* Autor: Victor Perez victor.perez@e-evolution.con www.e-evolution.com *
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
package org.adempiere.process;
|
package org.posterita.process;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
Loading…
Reference in New Issue