details:   https://code.openbravo.com/erp/devel/main/rev/e670fbf7006c
changeset: 32764:e670fbf7006c
user:      Atul Gaware <atul.gaware <at> openbravo.com>
date:      Wed Sep 20 23:44:34 2017 +0530
summary:   Fixes issue 36746: Tax Register Header print button fails when docno 
is alphanumeric

Changed class for field name DOCNUM to String. BigDecimal is not applicable when
documentno are alphanumeric.

details:   https://code.openbravo.com/erp/devel/main/rev/23baba607b96
changeset: 32765:23baba607b96
user:      Carlos Aristu <carlos.aristu <at> openbravo.com>
date:      Thu Sep 21 12:49:13 2017 +0200
summary:   fixes issue 36882: JSExpressionCallout extends SimpleCallout

details:   https://code.openbravo.com/erp/devel/main/rev/053c21c0408a
changeset: 32766:053c21c0408a
user:      Asier Lostalé <asier.lostale <at> openbravo.com>
date:      Thu Sep 21 12:49:29 2017 +0200
summary:   fixed bug 36862: update.database throws NPE in PG 6

  It was casued because starting from PG 9.6 a new version of pg_trgm extension
  is used which includes new functions that shouldn't be tried to be processed 
by
  dbsm.

  Those functions are now excluded.

details:   https://code.openbravo.com/erp/devel/main/rev/0e8f0e82bcd9
changeset: 32767:0e8f0e82bcd9
user:      Inigo Sanchez <inigo.sanchez <at> openbravo.com>
date:      Thu Sep 21 14:53:58 2017 +0200
summary:   Fixed issue 36902: Update.database+configScript fails under some 
circumstances

The problem was that update.database task fails under some circumstances if a 
model change
is defined in a configScript file. The problem has been found trying to update 
the database
in an instance with a columnSizeChange defined in the configScript file.

The problem was introduced in these improvements of DBSM sources (0036137). 
Before these
changesets on update.database task, the ModelChanges had been applied before 
and after the
platform.alterTables method was invoked. After these improvements were 
introduced into the
distribution, the ModelChanges had only applied after the platform.alterTables 
method was
invoked. (Only once)

The problem has been resolved by take into account this situation. Now the 
model changes are
applied (Data changes too) before platform.alterTables method is invoked in 
order to ensures
that when any table is recreated, all the model changes are applied properly.

details:   https://code.openbravo.com/erp/devel/main/rev/8a37ee35c54f
changeset: 32768:8a37ee35c54f
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:12:15 2017 +0200
summary:   [build-cleanup] Remove ant javadoc targets from 
src-core,src-trl,src-wad

This removes the following ant calls from main build.xml file:
- core.docs, wad.docs, trl.docs

Javadoc for all three items is included in main ant generate.java.doc target
already. src-wad + src-trl as very tied to Openbravo so not useful outside
of Openbravo project. src-core in theory could be used outside, but that will
be very hard, was never an official feature, and no known user is known.

Also each of the 3 target had matching eclipse .launch files which are also
removed as not useful with the ant targets.

Note:
The rm call to remove the docs subfolder where javadoc would be generated is
left in the files to cleanup any earlier created folder or javadoc.

details:   https://code.openbravo.com/erp/devel/main/rev/76ea5b1d9df4
changeset: 32769:76ea5b1d9df4
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:15:12 2017 +0200
summary:   [build-cleanup] Remove internal unused debugging targets

internal src/build.xml has 2 targets sqlcmod and compileSqlcmod which re never
called anywhere. Apart they were already marked with FIXME -> only for
development should be removed.

This changes removes.

Note:
Checking in getAllModules did not find any reference in modules either.

details:   https://code.openbravo.com/erp/devel/main/rev/392bba693482
changeset: 32770:392bba693482
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:27:29 2017 +0200
summary:   [build-cleanup] Remove extra copy.core.lib target (inlined into 
core.lib)

The main build.xml target core.lib after calling out to src-core/build.xml
does an antcall to another separate copy.core.lib target in the same main
build.xml file. That extra target is never used anywhere else.

Inline it into the main core.lib target to simplify the build file.

Note: getAllModules did not show any reference to it any module.
Note: As secondary effect this removes one occurance of the annoying:
  'Trying to override old definition of ...' messages because of the antcall
  removal.

details:   https://code.openbravo.com/erp/devel/main/rev/5f147a9c2478
changeset: 32771:5f147a9c2478
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 14:34:48 2017 +0200
summary:   [build-cleanup] Remove some not needed mkdir calls

ant mkdir target does create any missing parent folders when creating a fodler.
That allows to remove some mkdir calls for such parent folders when we create
subfolder directly afterwards anyway.

details:   https://code.openbravo.com/erp/devel/main/rev/4a0991bbc795
changeset: 32772:4a0991bbc795
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sun Jul 09 15:12:25 2017 +0200
summary:   [build-cleanup] Simplify file copying

src/build.xml file has few places with several <copy> calls where source
and destination folder as identical and just the includes part differs.

Merge all those into single copy call with nested includes.

Both shorter & easier to read as well as reduces I/O and syscalls to not
need to iterate over the source folders several times.
Speedup is only noticable on slow disk systems though (i.e. sources on NFS)

details:   https://code.openbravo.com/erp/devel/main/rev/03ee9b0ac0fe
changeset: 32773:03ee9b0ac0fe
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sat Jul 15 17:25:34 2017 +0200
summary:   [build-cleanup] feature removal: eclipse specific ant targets

Code has a few eclipse specific ant targets which can be used directly from
inside eclipse and are slightly nicer to use (doing refresh + eclipse build)

However those have never been maintained for many years, duplicate quite some
logic of the build files.
So remove that hidden feature as part of getting build* xml files smaller and
maintainable.

details:   https://code.openbravo.com/erp/devel/main/rev/5ec02ced52e4
changeset: 32774:5ec02ced52e4
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sat Jul 15 17:30:54 2017 +0200
summary:   [build-cleanup] Remove target to call obsolete update.database.mod

The update.database.mod effort was abandoned years ago and instead the normal
update.database has been made a lot faster.

This commit removes the ant target to be able to call update.database.mod.

Apart from the main build file also 2 internal related targets are removed,
one of which was not directly callable.

details:   https://code.openbravo.com/erp/devel/main/rev/4c996fb3dcf3
changeset: 32775:4c996fb3dcf3
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Sat Sep 02 13:12:43 2017 +0200
summary:   [build-cleanup] remove unused posrcsrcmod target from internal 
build.xml

details:   https://code.openbravo.com/erp/devel/main/rev/978ab9933a04
changeset: 32776:978ab9933a04
user:      Inigo Sanchez <inigo.sanchez <at> openbravo.com>
date:      Thu Sep 21 16:13:58 2017 +0200
summary:   Fixed issue 36876: Some methods in DBSMOBUtil class are not used 
anymore.

It is removed two methods from DBSMOBUtil class:
- The recursiveTemplateLoader method is private and it is not used in the 
class, so no problem to remove it.
- This fix introduced also an API change because a public method is removed: 
generateIndustryTemplateTree. This
method is not used in our code (Neither pi+all_modules nor dbsm) since this fix 
was introduced #30489. Removed it.

details:   https://code.openbravo.com/erp/devel/main/rev/f131c363d9be
changeset: 32777:f131c363d9be
user:      RM packaging bot <staff.rm <at> openbravo.com>
date:      Thu Sep 21 14:30:09 2017 +0000
summary:   CI: merge back from main

details:   https://code.openbravo.com/erp/devel/main/rev/757a15bcdfb8
changeset: 32778:757a15bcdfb8
user:      Atul Gaware <atul.gaware <at> openbravo.com>
date:      Thu Sep 21 20:24:21 2017 +0530
summary:   Fixes issue 36723: New storage bins are created with 
Undefined-Overissue status
instead of Undefined by default

** Set id of Undefined inventory status as default value for column 
m_inventorystatus_id
in m_locator table as well as tables and columns in application dictionary

** Adapt Initialize Inventory Status modulescript to set Undefined-overdue 
status to
locator of the clients where allow negative stock flag is set as Yes

details:   https://code.openbravo.com/erp/devel/main/rev/e2809fc56fee
changeset: 32779:e2809fc56fee
user:      Alvaro Ferraz <alvaro.ferraz <at> openbravo.com>
date:      Thu Sep 21 18:57:37 2017 +0200
summary:   Related to issue 36723: Fix modulescript limits

details:   https://code.openbravo.com/erp/devel/main/rev/79f756868bba
changeset: 32780:79f756868bba
user:      RM packaging bot <staff.rm <at> openbravo.com>
date:      Fri Sep 22 00:47:13 2017 +0000
summary:   CI: update AD_MODULE to version 32779

diffstat:

 build.xml                                                                      
                                     |   81 -------
 create.database.launch                                                         
                                     |   22 -
 eclipse.compile.complete.launch                                                
                                     |   22 -
 eclipse.compile.launch                                                         
                                     |   23 --
 eclipse.install.source.launch                                                  
                                     |   23 --
 export.database.launch                                                         
                                     |   22 -
 modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE.xml  
                                     |    2 +-
 
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                            |    4 +-
 
modules/org.openbravo.apachejdbcconnectionpool/src-db/database/sourcedata/AD_MODULE.xml
                             |    2 +-
 
modules/org.openbravo.apachejdbcconnectionpool/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                  |    2 +-
 modules/org.openbravo.base.weld/src-db/database/sourcedata/AD_MODULE.xml       
                                     |    2 +-
 
modules/org.openbravo.base.weld/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                                 |    2 +-
 
modules/org.openbravo.client.application/src-db/database/sourcedata/AD_MODULE.xml
                                   |    2 +-
 
modules/org.openbravo.client.application/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                        |    8 +-
 
modules/org.openbravo.client.application/src/org/openbravo/client/application/FixedValueExpressionCallout.java
      |    6 +-
 
modules/org.openbravo.client.application/src/org/openbravo/client/application/JSExpressionCallout.java
              |  112 +++------
 
modules/org.openbravo.client.htmlwidget/src-db/database/sourcedata/AD_MODULE.xml
                                    |    2 +-
 
modules/org.openbravo.client.htmlwidget/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                         |    2 +-
 modules/org.openbravo.client.kernel/src-db/database/sourcedata/AD_MODULE.xml   
                                     |    2 +-
 
modules/org.openbravo.client.kernel/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                             |    6 +-
 modules/org.openbravo.client.myob/src-db/database/sourcedata/AD_MODULE.xml     
                                     |    2 +-
 
modules/org.openbravo.client.myob/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                               |    4 +-
 
modules/org.openbravo.client.querylist/src-db/database/sourcedata/AD_MODULE.xml 
                                    |    2 +-
 
modules/org.openbravo.client.querylist/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                          |    2 +-
 modules/org.openbravo.client.widgets/src-db/database/sourcedata/AD_MODULE.xml  
                                     |    2 +-
 
modules/org.openbravo.client.widgets/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                            |    2 +-
 
modules/org.openbravo.financial.paymentreport/src-db/database/sourcedata/AD_MODULE.xml
                              |    2 +-
 
modules/org.openbravo.financial.paymentreport/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                   |    2 +-
 
modules/org.openbravo.reports.ordersawaitingdelivery/src-db/database/sourcedata/AD_MODULE.xml
                       |    2 +-
 
modules/org.openbravo.reports.ordersawaitingdelivery/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
            |    2 +-
 
modules/org.openbravo.service.datasource/src-db/database/sourcedata/AD_MODULE.xml
                                   |    2 +-
 
modules/org.openbravo.service.datasource/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                        |   10 +-
 
modules/org.openbravo.service.integration.google/src-db/database/sourcedata/AD_MODULE.xml
                           |    2 +-
 
modules/org.openbravo.service.integration.google/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                |    4 +-
 
modules/org.openbravo.service.integration.openid/src-db/database/sourcedata/AD_MODULE.xml
                           |    2 +-
 
modules/org.openbravo.service.integration.openid/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                |    2 +-
 modules/org.openbravo.service.json/src-db/database/sourcedata/AD_MODULE.xml    
                                     |    2 +-
 
modules/org.openbravo.service.json/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                              |    2 +-
 
modules/org.openbravo.userinterface.selector/src-db/database/sourcedata/AD_MODULE.xml
                               |    2 +-
 
modules/org.openbravo.userinterface.selector/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                    |   12 +-
 
modules/org.openbravo.userinterface.selector/src/org/openbravo/userinterface/selector/DefaultExpressionCallout.java
 |    6 +-
 
modules/org.openbravo.userinterface.skin.250to300Comp/src-db/database/sourcedata/AD_MODULE.xml
                      |    2 +-
 
modules/org.openbravo.userinterface.skin.250to300Comp/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
           |    2 +-
 
modules/org.openbravo.userinterface.smartclient/src-db/database/sourcedata/AD_MODULE.xml
                            |    2 +-
 
modules/org.openbravo.userinterface.smartclient/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                 |    6 +-
 
modules/org.openbravo.utility.cleanup.log/src-db/database/sourcedata/AD_MODULE.xml
                                  |    2 +-
 
modules/org.openbravo.utility.cleanup.log/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                       |    2 +-
 modules/org.openbravo.v3.datasets/src-db/database/sourcedata/AD_MODULE.xml     
                                     |    2 +-
 
modules/org.openbravo.v3.datasets/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                               |    6 +-
 modules/org.openbravo.v3.framework/src-db/database/sourcedata/AD_MODULE.xml    
                                     |    2 +-
 
modules/org.openbravo.v3.framework/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
                              |   24 +-
 modules/org.openbravo.v3/src-db/database/sourcedata/AD_MODULE.xml              
                                     |    2 +-
 modules/org.openbravo.v3/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml   
                                     |   22 +-
 src-core/build.xml                                                             
                                     |   20 +-
 src-core/core.docs.launch                                                      
                                     |   22 -
 src-db/database/build.xml                                                      
                                     |   39 ---
 src-db/database/lib/dbsourcemanager.jar                                        
                                     |    0 
 src-db/database/model/excludeFilter.xml                                        
                                     |    8 +
 src-db/database/model/tables/M_LOCATOR.xml                                     
                                     |    2 +-
 src-db/database/sourcedata/AD_COLUMN.xml                                       
                                     |    2 +-
 src-db/database/sourcedata/AD_MODULE.xml                                       
                                     |    4 +-
 src-trl/build.xml                                                              
                                     |   20 +-
 src-trl/eclipse.trl.lib.launch                                                 
                                     |   21 -
 src-trl/trl.docs.launch                                                        
                                     |   22 -
 
src-util/modulescript/build/classes/org/openbravo/modulescript/InitializeInventoryStatus.class
                      |    0 
 
src-util/modulescript/src/org/openbravo/modulescript/InitializeInventoryStatus.java
                                 |   25 +-
 src-wad/build.xml                                                              
                                     |   11 +-
 src-wad/eclipse.wad.lib.launch                                                 
                                     |   22 -
 src-wad/wad.docs.launch                                                        
                                     |   22 -
 src/build.xml                                                                  
                                     |  113 ++-------
 src/org/openbravo/erpReports/ReportRegisterLineJR.jrxml                        
                                     |    2 +-
 update.database.launch                                                         
                                     |   22 -
 72 files changed, 192 insertions(+), 674 deletions(-)

diffs (truncated from 2048 to 300 lines):

diff -r 382af6a5db44 -r 79f756868bba build.xml
--- a/build.xml Thu Sep 21 09:13:51 2017 +0200
+++ b/build.xml Fri Sep 22 00:47:13 2017 +0000
@@ -27,17 +27,10 @@
 compile.development: refer to compile.development target of src.
 compile.web: refer to compile.web: target of src.
 compile.web.development: refer to compile.web.development: target of src.
-eclipse.compile: refer to eclipse.compile target of src.
-eclipse.compile.complete: refer to eclipse.compile.complete target of src.
 compile.src: refer to compile.src target of src.
 war: refer to build.war target of src.
-core.docs: refer to doc target of src-core.
 core.lib: refer to build target of src-core.
-eclipse.wad.lib: refer to sqlc target of src-wad.
-wad.docs: refer to doc target of src-wad.
 wad.lib: refer to build target of src-wad.
-eclipse.trl.lib: refer to sqlc target of src-trl.
-trl.docs: refer to doc target of src-trl.
 trl.lib: refer to build target of src-trl.
 database.lib: refer to jar target of src-db.
 clean: refer to clean target of src.
@@ -47,7 +40,6 @@
 uninstallWebService: refer to uninstallWebService target of src.
 deploy.context: deploy the context into Tomcat using the manager
 install.source: install the ERP from sources (from subversion).
-eclipse.install.source: install the ERP from sources for eclipse (from 
Mercurial).
 create.database: refer to create.database target of database.
 update.database: refer to update.database target of database.
 create.database.script: refer to create.database.script target of database.
@@ -526,30 +518,6 @@
     <ant dir="${base.src}" target="compile.web.development" inheritAll="true" 
inheritRefs="true" />
   </target>
 
-  <target name="eclipse.compile" depends="init">
-    <fail unless="eclipse.running" message="eclipse.* tasks must be executed 
inside Eclipse" />
-    <ant dir="${base.src.core}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.trl}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.wad}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src}" target="eclipse.compile" inheritAll="true" 
inheritRefs="true" />
-    <echo message="Refreshing project..." level="info" />
-    <eclipse.refreshLocal resource="openbravo" depth="infinite" />
-    <echo message="Building project..." level="info" />
-    <eclipse.incrementalBuild project="openbravo" kind="incremental" />
-  </target>
-
-  <target name="eclipse.compile.complete" depends="init">
-    <fail unless="eclipse.running" message="eclipse.* tasks must be executed 
inside Eclipse" />
-    <ant dir="${base.src.core}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.trl}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src.wad}" target="build.jar" inheritAll="true" 
inheritRefs="true" />
-    <ant dir="${base.src}" target="eclipse.compile.complete" inheritAll="true" 
inheritRefs="true" />
-    <echo message="Refreshing project..." level="info" />
-    <eclipse.refreshLocal resource="openbravo" depth="infinite" />
-    <echo message="Building project..." level="info" />
-    <eclipse.incrementalBuild project="openbravo" kind="full" />
-  </target>
-
   <target name="compile.src.gen" depends="init">
     <ant dir="${base.src}" target="compile.src.gen" inheritAll="true" 
inheritRefs="true" />
   </target>
@@ -650,43 +618,15 @@
     <ant dir="${base.src}" target="build.war" inheritAll="true" 
inheritRefs="true" />
   </target>
 
-  <target name="core.docs" depends="init">
-    <ant dir="${base.src.core}" target="doc" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="core.lib" depends="init">
     <ant dir="${base.src.core}" target="build" inheritAll="true" 
inheritRefs="true" />
-    <antcall target="copy.core.lib" />
-  </target>
-
-  <target name="copy.core.lib">
     <copy file="${base.src.core}/lib/openbravo-core.jar" 
todir="${base.lib}/runtime" failonerror="false" />
   </target>
 
-  <target name="eclipse.wad.lib" depends="init">
-    <ant dir="${base.src.wad}" target="sqlc" inheritAll="true" 
inheritRefs="true" />
-    <eclipse.refreshLocal resource="OpenbravoWAD" depth="infinite" />
-    <eclipse.incrementalBuild project="OpenbravoWAD" kind="full" />
-  </target>
-
-  <target name="wad.docs" depends="init">
-    <ant dir="${base.src.wad}" target="doc" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="wad.lib" depends="init">
     <ant dir="${base.src.wad}" target="build" inheritAll="true" 
inheritRefs="true" />
   </target>
 
-  <target name="eclipse.trl.lib" depends="init">
-    <ant dir="${base.src.trl}" target="sqlc" inheritAll="true" 
inheritRefs="true" />
-    <eclipse.refreshLocal resource="OpenbravoTrl" depth="infinite" />
-    <eclipse.incrementalBuild project="OpenbravoTrl" kind="full" />
-  </target>
-
-  <target name="trl.docs" depends="init">
-    <ant dir="${base.src.trl}" target="doc" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="trl.lib" depends="init">
     <ant dir="${base.src.trl}" target="build" inheritAll="true" 
inheritRefs="true" />
   </target>
@@ -736,20 +676,6 @@
                -->
   </target>
 
-  <target name="eclipse.install.source" depends="init, cleanSubfolders, 
create.database">
-    <fail unless="eclipse.running" message="eclipse.* tasks must be executed 
inside Eclipse" />
-    <echo message="Building OpenbravoCore project..." level="info" />
-    <eclipse.incrementalBuild project="OpenbravoCore" kind="full"/>
-    <antcall target="eclipse.wad.lib"/>
-    <antcall target="eclipse.trl.lib"/>
-    <antcall target="eclipse.compile.complete"/>
-    <echo message="applying modules" />    
-    <antcall inheritall="true" inheritrefs="true" target="apply.module" />
-    <antcall target="import.sample.data" />
-    <updatesystemstatus v="RB51"/>
-    <ant dir="${base.db}" target="setApplied" inheritAll="true" 
inheritRefs="true" />
-  </target>
-
   <target name="create.database" depends="init, core.lib, database.lib">
     <ant dir="${base.db}" antfile="build-create.xml" target="create.database" 
inheritAll="true" inheritRefs="true" />
     <antcall target="db.apply.modules.sampledata" />
@@ -762,13 +688,6 @@
     <antcall target="apply.module" />
   </target>
 
-  <target name="update.database.mod" depends="init, core.lib, database.lib, 
buildvalidation">
-    <updatesystemstatus v="RB12"/>
-    <ant dir="${base.db}" target="update.database.mod.java" inheritAll="true" 
inheritRefs="true" />
-    <antcall target="generate.entities.quick" />
-    <antcall target="apply.module" />
-  </target>
-
   <target name="create.database.script" depends="init, core.lib">
     <ant dir="${base.db}" target="create.database.script" inheritAll="true" 
inheritRefs="true" />
   </target>
diff -r 382af6a5db44 -r 79f756868bba create.database.launch
--- a/create.database.launch    Thu Sep 21 09:13:51 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="create.database,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 382af6a5db44 -r 79f756868bba eclipse.compile.complete.launch
--- a/eclipse.compile.complete.launch   Thu Sep 21 09:13:51 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="eclipse.compile.complete,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 382af6a5db44 -r 79f756868bba eclipse.compile.launch
--- a/eclipse.compile.launch    Thu Sep 21 09:13:51 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="eclipse.compile,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" 
value="-Dtab=${string_prompt:window name}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 382af6a5db44 -r 79f756868bba eclipse.install.source.launch
--- a/eclipse.install.source.launch     Thu Sep 21 09:13:51 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="eclipse.install.source,"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" 
value="-Ddebug.level=true"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-</launchConfiguration>
diff -r 382af6a5db44 -r 79f756868bba export.database.launch
--- a/export.database.launch    Thu Sep 21 09:13:51 2017 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType">
-<stringAttribute key="process_factory_id" 
value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
-<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
-<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" 
value="${workspace_loc:/openbravo}"/>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.ant.ui.ATTR_BUILD_SCOPE" value="${none}"/>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_TARGETS" 
value="export.database,"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.ant.ui.AntClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="openbravo"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/openbravo/build.xml"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" 
value="${workspace_loc:/openbravo/build.xml}"/>
-</launchConfiguration>
diff -r 382af6a5db44 -r 79f756868bba 
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE.xml
--- 
a/modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE.xml 
    Thu Sep 21 09:13:51 2017 +0200
+++ 
b/modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE.xml 
    Fri Sep 22 00:47:13 2017 +0000
@@ -6,7 +6,7 @@
 <!--A918E3331C404B889D69AA9BFAFB23AC-->  <AD_ORG_ID><![CDATA[0]]></AD_ORG_ID>
 <!--A918E3331C404B889D69AA9BFAFB23AC-->  <ISACTIVE><![CDATA[Y]]></ISACTIVE>
 <!--A918E3331C404B889D69AA9BFAFB23AC-->  <NAME><![CDATA[Advanced Payables and 
Receivables Mngmt]]></NAME>
-<!--A918E3331C404B889D69AA9BFAFB23AC-->  
<VERSION><![CDATA[3.0.32382]]></VERSION>
+<!--A918E3331C404B889D69AA9BFAFB23AC-->  
<VERSION><![CDATA[3.0.32779]]></VERSION>
 <!--A918E3331C404B889D69AA9BFAFB23AC-->  <DESCRIPTION><![CDATA[Managing your 
finances with an ERP does not have to be difficult. Enjoy a radically improved 
user experience that combines the power of an enterprise grade financial 
application with the simplicity and ease of a web 2.0 personal accounting 
service.]]></DESCRIPTION>
 <!--A918E3331C404B889D69AA9BFAFB23AC-->  <HELP><![CDATA[Advanced Payables and 
Receivables Management simplifies and automates the business processes around 
the management of financial accounts, from the receipt and issue of payment, to 
the reconciliation of those events with bank statements.
 If you would like to help shape this module you are welcome to take part in 
the forum discussions or register feature requests or issues in the 
corresponding (Forum and Bug Tracking) sections in the Advanced Payables and 
Receivable project in the OB Forge.]]></HELP>
diff -r 382af6a5db44 -r 79f756868bba 
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
--- 
a/modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
  Thu Sep 21 09:13:51 2017 +0200
+++ 
b/modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
  Fri Sep 22 00:47:13 2017 +0000
@@ -7,7 +7,7 @@
 <!--89326AE95DAD449D85DFAB2C5B1C6683-->  <ISACTIVE><![CDATA[Y]]></ISACTIVE>
 <!--89326AE95DAD449D85DFAB2C5B1C6683-->  
<AD_MODULE_ID><![CDATA[A918E3331C404B889D69AA9BFAFB23AC]]></AD_MODULE_ID>
 <!--89326AE95DAD449D85DFAB2C5B1C6683-->  
<AD_DEPENDENT_MODULE_ID><![CDATA[5EB4F15C80684ACA904756BDC12ADBE5]]></AD_DEPENDENT_MODULE_ID>
-<!--89326AE95DAD449D85DFAB2C5B1C6683-->  
<STARTVERSION><![CDATA[2.1.32382]]></STARTVERSION>
+<!--89326AE95DAD449D85DFAB2C5B1C6683-->  
<STARTVERSION><![CDATA[2.1.32779]]></STARTVERSION>
 <!--89326AE95DAD449D85DFAB2C5B1C6683-->  <ISINCLUDED><![CDATA[N]]></ISINCLUDED>
 <!--89326AE95DAD449D85DFAB2C5B1C6683-->  <DEPENDANT_MODULE_NAME><![CDATA[User 
Interface Selector]]></DEPENDANT_MODULE_NAME>
 <!--89326AE95DAD449D85DFAB2C5B1C6683-->  
<DEPENDENCY_ENFORCEMENT><![CDATA[MAJOR]]></DEPENDENCY_ENFORCEMENT>
@@ -21,7 +21,7 @@
 <!--B97FC854C6DD41E692161585645A900F-->  <ISACTIVE><![CDATA[Y]]></ISACTIVE>
 <!--B97FC854C6DD41E692161585645A900F-->  
<AD_MODULE_ID><![CDATA[A918E3331C404B889D69AA9BFAFB23AC]]></AD_MODULE_ID>
 <!--B97FC854C6DD41E692161585645A900F-->  
<AD_DEPENDENT_MODULE_ID><![CDATA[0]]></AD_DEPENDENT_MODULE_ID>
-<!--B97FC854C6DD41E692161585645A900F-->  
<STARTVERSION><![CDATA[3.0.32382]]></STARTVERSION>

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Openbravo-commits mailing list
Openbravo-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to