int-dbcons-pgsql - Build # 3150 - Failure:

Check console output at http://builds.openbravo.com/job/int-dbcons-pgsql/3150/ 
to view the results.


Committers since last success:

Changes for Build #3150

    Javier Etxarri [email protected]_ 
    Fixes issue 20617: Wrong behaviour of "Purchase orders to be received" alert
        src-db/database/sourcedata/referencedData/AD_ALERTRULE.xml

    Martin Taal [email protected]_ 
    Fixes issue 20688: Newly added junit test fails and blocks all ci 
integration: int-full-pgsql/3619/
Fixes issue, refresh moved within if statement
        src-test/org/openbravo/test/dal/DalPerformanceProxyTest.java

    Mikel Irurita <[email protected]> 
    Fixes issue 20682, Fixes issue 20674: Insert Orphan Line.
        src/org/openbravo/erpCommon/info/RMProductSelectorFilterExpression.java
        
modules/org.openbravo.advpaymentmngt/src-db/database/sourcedata/OBUISEL_SELECTOR.xml
        src-db/database/model/views/M_RM_RECEIPT_PICK_EDIT.xml
        src-db/database/sourcedata/AD_PROCESS_PARA.xml
        src/org/openbravo/erpCommon/ad_actionButton/RMInsertOrphanLine.java

    Egoitz Castillo <[email protected]> 
    Related to issue 20551. Performance on Match Statement window
        
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/dao/MatchTransactionDao.java

    David Baz Fayos <[email protected]> 
    Fixed issue 20681: Added 'Image' field to 'AD_User'
        src-db/database/model/tables/AD_USER.xml
        src-db/database/sourcedata/AD_COLUMN.xml
        src-db/database/sourcedata/AD_FIELD.xml

    Augusto Mauch <[email protected]> 
    Fixes issue 20635: date parameter works in Query/List widget

If a parameter is a Date, it is converted from its original class (String) to 
Date before setting the query parameter.
        
modules/org.openbravo.client.querylist/src/org/openbravo/client/querylist/QueryListDataSource.java

    Augusto Mauch <[email protected]> 
    Related to issue 20635: Date is parsed correctly

The date was not being parsed correctly because ParameterUtils was only 
supporting the yyyy-MM-dd'T'HH:mm:ss pattern, and the value was formatted with 
the yyy-MM-dd pattern.

Now, the method createFromString() of the DateDomainType is being used to parse 
the date. This method supports both patterns.
        
modules/org.openbravo.client.application/src/org/openbravo/client/application/ParameterUtils.java

    Mikel Irurita <[email protected]> 
    Fixes issue 20680: RFC/RTV (pick&edit): error when returning a line
        src/org/openbravo/common/actionhandler/SRMOPickEditLines.java

    Mikel Irurita <[email protected]> 
    Fixes issue 20673: RFC/RTV (pick&edit): error product without attribute set 
instance
        src/org/openbravo/common/actionhandler/SRMOPickEditLines.java

    Martin Taal [email protected]_ 
    Related to issue 20515: Slow OBCriteria
Some additional test queries and printing of results
        src-test/org/openbravo/test/dal/DalPerformanceCriteriaTest.java

    Martin Taal [email protected]_ 
    Related to issue 20515: Slow OBCriteria
Enhanced obcriteria testcase
        src-test/org/openbravo/test/dal/DalPerformanceCriteriaTest.java

    Martin Taal [email protected]_ 
    Fixes issue 20611: OBCriteria doesn't support ScrollabeResults
Use the entity name instead of the classname to initialize the hibernate 
criteria
        src-test/org/openbravo/test/dal/IssuesTest.java

    Martin Taal [email protected]_ 
    Related to issue 20515: Slow OBCriteria
Change the way order by is done to follow the standard approach of hibernate 
Criteria, resulting in a better joining of the order by table/property
        src/org/openbravo/dal/service/OBCriteria.java

    Martin Taal [email protected]_ 
    Fixes issue 20666: Allow creation of proxy when setting property in 
business object
        src-test/org/openbravo/test/dal/DalPerformanceCriteriaTest.java
        src-test/org/openbravo/test/dal/DalPerformanceProxyTest.java
        
modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonToDataConverter.java
        src-test/org/openbravo/test/AllAntTaskTests.java
        src-test/org/openbravo/test/AllQuickAntTaskTests.java
        src-test/org/openbravo/test/AllTests.java
        src-test/org/openbravo/test/AntTaskTests.java
        src/org/openbravo/base/model/domaintype/BaseForeignKeyDomainType.java
        src/org/openbravo/dal/service/OBDal.java

 


Last 20 lines of the console output:

[...truncated 1224 lines...]
+++ b/src-db/database/model/views/M_RM_RECEIPT_PICK_EDIT.xml    Wed Jun 06 
13:17:38 2012 +0000
@@ -7,7 +7,7 @@
 END AS ob_selected, ol.c_orderline_id, ol.m_product_id, ol.c_uom_id, 
ol.m_attributesetinstance_id, (-1) * ol.qtyordered AS returned, (-1) * 
(ol.qtyordered - ol.qtydelivered) AS pendingqty, (-1) * iol.movementqty AS 
receivingqty, iol.m_condition_goods_id, iol.m_locator_id, o.documentno AS 
returnorderno, o.issotrx, ol.line
 FROM c_orderline ol
 JOIN c_order o ON o.c_order_id = ol.c_order_id
-JOIN m_product p ON ol.m_product_id = p.m_product_id 
+JOIN m_product p ON ol.m_product_id = p.m_product_id
 JOIN c_doctype dt ON dt.c_doctype_id = o.c_doctypetarget_id AND dt.isreturn = 
'Y'
 LEFT JOIN (SELECT il2.m_inoutline_id, il2.ad_client_id, il2.ad_org_id, 
il2.isactive, il2.created, il2.createdby, il2.updated, il2.updatedby, il2.line, 
il2.description, il2.m_inout_id, il2.c_orderline_id, il2.m_locator_id, 
il2.m_product_id, il2.c_uom_id, il2.movementqty, il2.isinvoiced, 
il2.m_attributesetinstance_id, il2.isdescription, il2.quantityorder, 
il2.m_product_uom_id, il2.m_condition_goods_id
 FROM m_inoutline il2
+ hg revert -a --no-backup
reverting src-db/database/model/views/M_RM_RECEIPT_PICK_EDIT.xml
+ exit 1
Build step 'Execute shell' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Checking console output
Email was triggered for: Failure
Sending email for trigger: Failure
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Openbravo-builds mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-builds

Reply via email to