int-basic-oracle - Build # 1916 - Fixed:

Check console output at https://ci.openbravo.com/job/int-basic-oracle/1916/ to 
view the results.


Committers since last success:

Changes for Build #1915

    RM packaging bot <[email protected]> null
    Merge back from main
      
    RM packaging bot <[email protected]> null
    Merge temporary head for 3.0PR17Q1.1
      
    RM packaging bot <[email protected]> null
    Added signature for changeset 835355e0fdbd
        .hgsigs

    RM packaging bot <[email protected]> null
    Added tag 3.0PR17Q1.1 for changeset 10c0ffee4e6c
        .hgtags

    RM packaging bot <[email protected]> null
    Update AD_MODULE version to 3.0PR17Q1.1
        
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.apachejdbcconnectionpool/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.apachejdbcconnectionpool/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        modules/org.openbravo.base.weld/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.base.weld/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.client.application/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.client.application/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.client.htmlwidget/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.client.htmlwidget/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.client.kernel/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.client.kernel/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.client.myob/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.client.myob/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.client.querylist/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.client.querylist/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.client.widgets/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.client.widgets/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.financial.paymentreport/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.financial.paymentreport/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.reports.ordersawaitingdelivery/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.reports.ordersawaitingdelivery/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.service.datasource/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.service.datasource/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.service.integration.google/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.service.integration.google/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.service.integration.openid/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.service.integration.openid/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.service.json/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.service.json/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.userinterface.selector/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.userinterface.selector/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.userinterface.skin.250to300Comp/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.userinterface.skin.250to300Comp/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.userinterface.smartclient/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.userinterface.smartclient/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.utility.cleanup.log/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.utility.cleanup.log/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.v3.datasets/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.v3.datasets/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        
modules/org.openbravo.v3.framework/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.v3.framework/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        modules/org.openbravo.v3/src-db/database/sourcedata/AD_MODULE.xml
        
modules/org.openbravo.v3/src-db/database/sourcedata/AD_MODULE_DEPENDENCY.xml
        src-db/database/sourcedata/AD_MODULE.xml

    Inigo Sanchez <[email protected]> null
    Fixed issue 35954: Fetching data when it is sorting by a null FK is not 
working

Fetching data when it was sorting by a null foreign key was not retrieving any 
record when should
had been retrieved data.

When AdvancedQueryBuilder class is created order by clause and it is working in 
resolve joins a
canUseInnerJoin method is invoked. This method is used to check if the left 
join can be safely
replaced with inner join when it is building order by clause. This method is 
not take into account
all the posibilities.

The problem has been resolved by take into account when any property of the 
list is not mandatory
and is not primitive. In this case left join can not be replaced with inner 
join. The rest of the
cases can be safely replaced it.
        
modules/org.openbravo.service.json/src/org/openbravo/service/json/AdvancedQueryBuilder.java

    Inigo Sanchez <[email protected]> null
    Fixed issue 35876: On change functions not executed for numeric parameters

The problem was that on change functions was not executed for numeric 
parameters.
This problem was caused by the partial fix of #35658 regression.

The fix of #35658 was partial because the added condition did not taken into 
account
numeric fields in P&E windows which are out of a parameter grid. This problem 
has
been resolved by take into account this case.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-number.js

    Alvaro Ferraz <[email protected]> null
    Related to issue 35784: Fix dbcons failure
        src-db/database/model/views/C_INVOICE_CANDIDATE_V.xml

    Mark <[email protected]> null
    Fixes issue 35784: Orders with Invoice Terms different from Customer 
Schedule
After Delivery cannot be invoiced if the bp has an invoice schedule

Sales Orders with Invoice Terms different from Customer Schedule After Delivery
(Immediate, After Delivery, After Order Delivered) cannot be invoiced if the 
business
partner has an invoice schedule defined and the order does not fill its 
requirement

The problem is that the order is not returned by the C_INVOICE_CANDIDATE_V view.
To avoid it was fixed the condition that takes into account the invoice rule of
the order and the sales invoice frequency.
        src-db/database/model/views/C_INVOICE_CANDIDATE_V.xml

    Inigo Sanchez <[email protected]> null
    Related with issue 35806: Codereview take into account all the cases

Now it is take into account when a parameter window with grid is opened from 
the menu.
Rest of the cases sucha as grid, form and parameter window from a button is 
working as
expected too.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-number.js

    Inigo Sanchez <[email protected]> null
    Fixed issue 35806: Fields redraw instantly in grid under some circumstances

The problem was that numeric fields redraws instantly in grid view when a 
numeric field
was referenced by a read only logic. This reported problem was caused by the 
partial fix
of #32202 regression.

The fix of #32202 was partial because the added condition did not taken into 
account the
grid view properly. This problem has been resolved by take into account form 
and grid view.

Besides another problem was found and resolved with this fix. Since this 
regression was
introduced, the #23136 issue was broken too. This problem has been resolved too 
with this
solution.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-number.js

    Atul Gaware <[email protected]> null
    Fixes Issue 35716:Wrong total gross amount when reactivating an order or a
invoice which includes a basic discount of 100%

In PostgreSQL instance to achieve trigger execution in order to update
c_invoicetax, c_ordertax properly before deleting discount invoice and
order lines, c_invoicelinetax and c_orderlinetax lines are deleted.
        src-db/database/model/functions/C_INVOICE_POST.xml
        src-db/database/model/functions/C_ORDER_POST1.xml

    Inigo Sanchez <[email protected]> null
    Fixed issue 35688: It is not possible to delete a record in tree view

The problem was related with Pre Delete Client Side Event Handler. The problem 
was
that a isc.clone method didn't work as expected. isc.clone method create a deep
clone of an object that can be edited without affecting the original but does 
not
handle looping references (will infinite loop). For this reason, in case of 
clone
currentGrid.getSelection() object in tree view an error was thrown.

In order to fix this problem, isc.shallowClone is used instead of isc.clone. 
This
method handle looping references properly.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js

    Armaignac <[email protected]> null
    Fixes issue 35693: Operative quantity should be updated when document is 
closed

When a Purchase Order/Return From Customer/Return to Vendor document is closed,
the Operative Quantity field is updated to the corresponding value, according to
the Product, Quantity and Aum of the line.
        src-db/database/model/functions/C_ORDER_POST1.xml

    Alvaro Ferraz <[email protected]> null
    Related to issue 35575: Code review improvements

Backout fixes of issues 35575 & 28973 and fix issue 28973 properly:
DocGLJournal.isperiodOpen method was not correctly checking if 
DocGLJournalData.periodOpen retrieves no period.
        src/org/openbravo/erpCommon/ad_forms/DocGLJournal.java
        src/org/openbravo/erpCommon/ad_forms/DocGLJournal_data.xsql

    Mark <[email protected]> null
    Fixes issue 35626: Avoid Financial Account transactions with both amounts 
!= 0

Following changes have been done in Financial Account Transaction tab and in 
Add Transaction process definition:
When changing to Bank Fee transaction type, amounts will not be updated to zero.
When changing Deposit Amount in case Bank Fee transaction type, Withdrawal 
Amount will be updated to zero.
When changing Withdrawal Amount in case Bank Fee transaction type, Deposit 
Amount will be updated to zero.
        src/org/openbravo/erpCommon/ad_callouts/SE_Amount_Transaction.java
        
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/OBUIAPP_PARAMETER.xml
        
modules/org.openbravo.advpaymentmngt/web/org.openbravo.advpaymentmngt/js/ob-aprm-addTransaction.js
        src-db/database/sourcedata/AD_CALLOUT.xml
        src-db/database/sourcedata/AD_COLUMN.xml
        src-db/database/sourcedata/AD_MODEL_OBJECT.xml
        src-db/database/sourcedata/AD_MODEL_OBJECT_MAPPING.xml
        src/org/openbravo/erpCommon/ad_callouts/SE_Payment_Transaction.java
        src/org/openbravo/erpCommon/ad_callouts/SE_Trxtype_Transaction.java

    Asier LostalĂ© <[email protected]> null
    fixed bug 35579: Traceability Report does not work

  It failed when trying to execute manual callouts.

  As callouts in standard windows are executed by FIC together in a single
  request, they don't require to be servlets. Therefore they are no longer
  included in web.xml. In this case, it is still required to be manually 
executed
  as a servlet.

  Callouts should only be used in generated windows, for manual old 2.50 ones,
  as this case, the mapping is not generated by defining it as a manual map.
        src-db/database/sourcedata/AD_MODEL_OBJECT.xml

    Mark <[email protected]> null
    Fixes issue 35575: "Adjustment Period" not used when posting a GL Journal

In case Adjustment Period was defined for a calendar and user tries to post gl 
journal document in that period it was not properly done.

It was fixed re-structuring the affected queries using the C_PERIOD_ID column 
of GL_JOURNAL and C_PERIOD tables, always retrieving this value as C_PERIOD_ID 
instead of "period" alias
        src/org/openbravo/erpCommon/ad_forms/DocGLJournal_data.xsql

    Alvaro Ferraz <[email protected]> null
    Related to issue 35433: Code review improvements

- Fix copyrights.
- Improve Account Schema Selector filter expression.
- Improve AgingOrganizationFilterExpression class.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-onchange-functions.js
        src-db/database/sourcedata/OBUISEL_SELECTOR.xml
        
src/org/openbravo/common/actionhandler/AgingGeneralLedgerByOrganizationActionHandler.java
        
src/org/openbravo/common/filterexpression/AgingGeneralLedgerFilterExpression.java
        
src/org/openbravo/common/filterexpression/AgingOrganizationFilterExpression.java

    Nono Carballo <[email protected]> null
    Fixes issue 35433: Aging Balance Organization and GL fields

* The default value of parameter Organization is the one selected when login,
if is transaction allowed, otherwise, the first one in the list of Organizations
with transaction allowed.

* When parameter Organization changes, the selected value of General Ledger
selector is set accordingly.
        
src/org/openbravo/common/actionhandler/AgingGeneralLedgerByOrganizationActionHandler.java
        
src/org/openbravo/common/filterexpression/AgingGeneralLedgerFilterExpression.java
        
src/org/openbravo/common/filterexpression/AgingOrganizationFilterExpression.java
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-onchange-functions.js
        src-db/database/sourcedata/OBUIAPP_PARAMETER.xml
        src-db/database/sourcedata/OBUISEL_SELECTOR.xml

Changes for Build #1916

    Carlos Aristu <[email protected]> null
    fixes bug 35994: WS should not create ad_session records having unlimited 
calls

When the authentication through the webServiceAuthenticate method is done, now 
if the request comes from a web service and the current license has unlimited 
web service calls then no record is created in the AD_Session because this 
record is just needed when the system calculates if the maximum number of web 
service calls has been reached.
        src/org/openbravo/authentication/AuthenticationManager.java
        src/org/openbravo/erpCommon/obps/ActivationKey.java
        src/org/openbravo/service/web/BaseWebServiceServlet.java




Last 20 lines of the console output:

[...truncated 2013 lines...]
Total time: 1 second

executing script 'Tomcat stop'
[int-basic-oracle] $ /bin/bash /tmp/build_step_template5762027981586255995.sh 
ENABLE
DEBUG: Tomcat stop called with parameters: ENABLED=ENABLE
 * Stopping Tomcat servlet engine for Openbravo tomcat
   ...done.

executing script 'Check openbravo log'
[int-basic-oracle] $ /bin/bash /tmp/build_step_template3791599029387800145.sh 
ENABLE
DEBUG: Check openbravo log called with parameters: ENABLED=ENABLE
Check log: openbravo log (artifact: int-basic-oracle.log) is clean

Recording test results
Archiving artifacts
Checking \] ERROR|\] WARN
Email was triggered for: Fixed
Trigger Success was overridden by another trigger and will not send an email.
Sending email for trigger: Fixed
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Openbravo-builds mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-builds

Reply via email to