int-accounting-oracle - Build # 1238 - Still Failing:
Check console output at
https://ci.openbravo.com/job/int-accounting-oracle/1238/ to view the results.
Committers since last success:
Changes for Build #1232
Alvaro Ferraz <[email protected]> null
Related to issue 33063: Add modulescript to add process definition access
Create a modulescript to add process definition access to any role which had
access to old Reset Accounting process.
It will be run only once when doing update.database.
src-util/modulescript/build/classes/org/openbravo/modulescript/ResetAccountingAccess.class
src-util/modulescript/build/classes/org/openbravo/modulescript/ResetAccountingAccessData.class
src-util/modulescript/src/org/openbravo/modulescript/ResetAccountingAccess.java
src-util/modulescript/src/org/openbravo/modulescript/ResetAccountingAccess_data.xsql
Alvaro Ferraz <[email protected]> null
Related to issue 33063: Code review improvements
- Client parameter: change selector, add default value and remove selector
fields.
- Organization parameter: change selector and where clause, add default value
and remove selector fields.
- Table parameter: change selector and where clause, change table from ADTable
to ADTablePostV and remove selector fields.
- Remove unnecessary created ad_ref_table and ad_val_rule records.
- Deactivate and deprecate old Reset Accounting process.
- Remove recordId parameter and get correctly datefrom and dateto fields in
ResetAccountingHandler.java class.
- Add getLegalOrBusinessOrgsChilds method in ResetAccounting.java class to
retrieve every legal and business unit together with their child organizations
from selected client in case * organization has been selected.
- Call getCalendarId for each organization in the loop to avoid errors when
adOrgId is '0'.
src-db/database/sourcedata/AD_MENU.xml
src-db/database/sourcedata/AD_PROCESS.xml
src-db/database/sourcedata/AD_REFERENCE.xml
src-db/database/sourcedata/AD_REF_TABLE.xml
src-db/database/sourcedata/AD_VAL_RULE.xml
src-db/database/sourcedata/OBUIAPP_PARAMETER.xml
src-db/database/sourcedata/OBUISEL_SELECTOR.xml
src-db/database/sourcedata/OBUISEL_SELECTOR_FIELD.xml
src/org/openbravo/common/actionhandler/ResetAccountingHandler.java
src/org/openbravo/erpCommon/ad_process/ResetAccountingProcess.java
src/org/openbravo/financial/ResetAccounting.java
Mark <[email protected]> null
Fixes issue 33063: "Reset Accounting" for several organization & tables at
once
A new "Reset Accounting" Process Definiton is created to replace the
functionality of the "Reset Accounting" process, but allowing to select
multiple tables at once and also to select the "*" organization to process all
the organizations when the reset accountings process is executed.
src/org/openbravo/common/actionhandler/ResetAccountingHandler.java
src-db/database/sourcedata/AD_MENU.xml
src-db/database/sourcedata/AD_REFERENCE.xml
src-db/database/sourcedata/AD_REF_TABLE.xml
src-db/database/sourcedata/AD_TREENODE.xml
src-db/database/sourcedata/AD_VAL_RULE.xml
src-db/database/sourcedata/OBUIAPP_PARAMETER.xml
src-db/database/sourcedata/OBUIAPP_PROCESS.xml
src-db/database/sourcedata/OBUISEL_SELECTOR.xml
src-db/database/sourcedata/OBUISEL_SELECTOR_FIELD.xml
src/org/openbravo/financial/ResetAccounting.java
Changes for Build #1233
Asier Lostalé <[email protected]> null
fixed bug 33143: property field not visible in tree grid view
Tree grid didn't implement property fields management.
Now it is implemented by sending from client the additional properties
defined in the tree's standard view's grid and making use of it when convering
BOBs to JSONs.
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-tree-view-grid.js
modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/ADTreeDatasourceService.java
Asier Lostalé <[email protected]> null
related to bug 33143: property field not visible in tree grid view
Code clean up: tree grid sent _selectedProperties parameter which was parsed
in backend but never used. Now client does not send this info and backend does
not parse it.
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-tree-view-grid.js
modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/ADTreeDatasourceService.java
Changes for Build #1234
Alvaro Ferraz <[email protected]> null
Fixes issue 33261: Random failure in testCostingMC444
src-test/src/org/openbravo/test/costing/TestCosting.java
Changes for Build #1235
Asier Lostalé <[email protected]> null
fixed bug 33166: writable access is not checked when editing client/org
A role without access to organization A could edit it in Organization window.
Writable access was bypassed in this case both in UI and DAL.
This patch includes two fixes:
- DAL (SecurityChecker) treats instances of Client and Organization objects
as special cases getting the client or organization ids not from FK
property
but directly as their id. In this manner checking for those entities is
performed.
- Grid UI. Similar implementation is done to decide whether a row should be
marked as ready only. In this case it is not possible to reuse previous
code
as the checks are done on a json object instead of on a DAL object.
modules/org.openbravo.service.json/src/org/openbravo/service/json/DefaultJsonDataService.java
src/org/openbravo/dal/security/SecurityChecker.java
Asier Lostalé <[email protected]> null
related to bug 33166: writable access is not checked when editing client/org
Code clean up: consolidated 3 implementations of checkWritable in one:
- SecurityChecker.checkWriteAccess duplicated code in
SecurityChecker.isWritable
with the only difference of returning a boolean instead of throwing an
exception. Now isWritable invokes checkWriteAccess.
- FIC implemented again this check to make the UI readonly for non writable
rows, now it invokes SecurityChecker.isWritable method.
modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FormInitializationComponent.java
src/org/openbravo/dal/security/SecurityChecker.java
Asier Lostalé <[email protected]> null
fixed bug 33255: some organizations not shown in tree view
In Organization window tree view non accessible organizations where not
counted as children of displayed ones. This behavior was not consistent
with standard grid, which in the exceptional case of Organization window,
shows all organizations even non accessible.
This case is now handled as special when counting children nodes in tree
datasource.
modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/ADTreeDatasourceService.java
Changes for Build #1236
Alvaro Ferraz <[email protected]> null
Related to issue 33082: Code review improvements
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/ModifyPaymentPlanActionHandler.java
Atul Gaware <[email protected]> null
Fixes issue 33082: Payment Schedule Detail duplicated in "Modify Payment
Plan"
Avoid creation of payment schedule detail for cancelled psd if there exists for
a payment detail.
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/ModifyPaymentPlanActionHandler.java
Changes for Build #1237
Alvaro Ferraz <[email protected]> null
Related to issue 33082: Improve method doc
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/ModifyPaymentPlanActionHandler.java
Changes for Build #1238
Stefan Hühner <[email protected]> null
Issue 33292. Temporarily disable testModulesValidation
src-test/src/org/openbravo/test/system/SystemValidatorTest.java
Alvaro Ferraz <[email protected]> null
Related to issue 33165: Code review improvements
src-db/database/model/functions/M_INOUT_POST.xml
sanjota <[email protected]> null
Fixes issue 33165: Improve attribute error message when processing a
shipment
Give related order and order line information when throwing
productWithoutAttributeSet error message to be able to know which order line is
wrong when generating a shipment from Create Shipments From Orders window.
src-db/database/model/functions/M_INOUT_POST.xml
Alvaro Ferraz <[email protected]> null
Related to issue 30455: Code review improvements
Added also support for multiple criteria filtering in getWarehouseFilterData,
getStorageFilterData, getAttributeSetValueFilterData and
getOrderLineSetValueFilterData methods.
Add criteria.has("fieldName") check to avoid NPE.
src/org/openbravo/common/datasource/StockReservationPickAndEditDataSource.java
Mark <[email protected]> null
Fixes issue 30455: Add support for multiple filtering in Stock Reservation
P&E
Added support for multiple criteria filtering in getGridData method
src/org/openbravo/common/datasource/StockReservationPickAndEditDataSource.java
Stefan Hühner <[email protected]> null
fixed issue 22559: SqlC does execute all queries at compile time
SqlC does execute all select queries at compile time when it is processing
xsql files.
Technically that is needed to get the number, names & data-types of the
columns
in the result as that info is used to generate the fields and data-reading
code
in the to be generated java file.
However the jdbc spec does have a optional method to get that same information
for a query without executing it.
As this method is supported in current jdbc drivers for both Oracle and
PostgreSQL,
now it is used instead of executing the whole queries.
src-core/src/org/openbravo/data/Sqlc.java
Asier Lostalé <[email protected]> null
fixed bug 33167: unneded flush in
KernelApplicationInitializer.getDatabaseDateTime
modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/KernelApplicationInitializer.java
RM packaging bot <[email protected]> null
Merge back from main
RM packaging bot <[email protected]> null
Merge temporary head for 3.0PR16Q2
RM packaging bot <[email protected]> null
Added signature for changeset 91b0a6cc5947
.hgsigs
RM packaging bot <[email protected]> null
Added tag 3.0PR16Q2 for changeset cfff3c184b53
.hgtags
RM packaging bot <[email protected]> null
Update AD_MODULE version to 3.0PR16Q2
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
Alvaro Ferraz <[email protected]> null
Related to issue 33086: Code review improvements
src/org/openbravo/base/secureApp/Attribute_data.xsql
src/org/openbravo/base/secureApp/LoginUtils.java
sanjota <[email protected]> null
Fixes issue 33086: Accounting info not loaded when login
Unhomogeneous behavior depending on Org Access when role is defined at
"Organization" user level.
Accounting info was not loaded when login with a role without access to any
general ledger's organization.
src/org/openbravo/erpCommon/utility/OBLedgerUtils.java
src/org/openbravo/base/secureApp/Attribute_data.xsql
src/org/openbravo/base/secureApp/LoginUtils.java
Alvaro Ferraz <[email protected]> null
Related to issue 33053: Code review improvements
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/AddPaymentActionHandler.java
Mark <[email protected]> null
Fixed issue 33053: Permissions problems after process payment solved.
Role defined for an specific org is not able to see data from sister orgs.
Regression was introduced by the commit associated to issue 28931:
http://code.openbravo.com/erp/devel/pi/rev/78fd9bade67beea0399977fcdc05fd267c4af8c4
Changes were rolled back.
Also this patch includes fix for the issue 28931, avoiding to remove from the
Writable Organizations List of the OBContext object, the Organization of the
sequence of the payment's document type, if this organization is already in the
list of accesible organizations of the current logged role.
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/AddPaymentActionHandler.java
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/dao/AdvPaymentMngtDao.java
Víctor Martínez Romanos <[email protected]> null
Related to issue 32916: Update copyright year
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/AddPaymentActionHandler.java
Alvaro Ferraz <[email protected]> null
Fixes issue 32916: Fix properly issue 31457
Change getOrderedPaymentScheduleDetails method in AddPaymentActionHandler class
to order by absolute value of FIN_PaymentScheduleDetail.PROPERTY_AMOUNT
property.
Change also the manage negative amounts check to recalculate remainingAmount if
it is lower than outstandingAmount in case remainingAmount is negative.
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/actionHandler/AddPaymentActionHandler.java
Carlos Aristu <[email protected]> null
fixes issue 32838: Cannot export CSV from Widgets
The name of the parameter used to sent the tab ID when exporting to CSV
changed, this
affected a check on DataSourceServlet that was always true when exporting
widgets until now.
Created an utility method to check whether a json value can be considered as
empty which takes into account common cases of null and undefined literals.
modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/DataSourceServlet.java
modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonConstants.java
modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonUtils.java
Alvaro Ferraz <[email protected]> null
Fixes issue 33006: Stock before costing rule not shown in Valued Stock
Report
Convert current costing rule starting date with to_timestamp instead of with
to_date function to avoid date truncation.
Before, current costing rule starting date was truncated and closing and
opening inventories created by costing rule validation were taken, so stock was
zero.
Now, current costing rule starting date will not be truncated and only opening
inventory created by costing rule validation will be taken, then stock will be
the same as before the costing rule.
src/org/openbravo/erpCommon/ad_reports/ReportValuationStock.java
src/org/openbravo/erpCommon/ad_reports/ReportValuationStock_data.xsql
Asier Lostalé <[email protected]> null
fixed bug 33013: error in Instance Activation when using an expired license
When using a license within an erroneous state (such as expired), message
severity
was incorrectly obtained from the enum, causing an exception to be thrown.
Fixed by using MsgSeverity.forType method instead of valueOf. forType method
was designed with this purpose.
In addition, some other changes have been done on MsgSeverity enum:
* valueOf method is static so no need to invoke it on an instance (to may be
another one, which is weird).
* checking with actual type rather than with toString (which might change)
* reversed comparision order to prevent NPE in case param in null
src/org/openbravo/erpCommon/obps/ActivationKey.java
src/org/openbravo/erpCommon/obps/ModuleLicenseRestrictions.java
Alvaro Ferraz <[email protected]> null
Related to issue 32982: Code review improvements
src-db/database/model/functions/C_ORDER_POST1.xml
Atul Gaware <[email protected]> null
Fixes issue 32982: Generate duplicate payment plan under some circumstances
Before processing order, a check is done whether processed flag is N or not.
src-db/database/model/functions/C_ORDER_POST1.xml
Asier Lostalé <[email protected]> null
fixed bug 32779: wrong values displayed in status bar on record creation
When a new record is created just after processing a previous one, status bar
displayed valued of the previous record instead of being in New mode.
Fixed by forcing status bar reset on FIC response for NEW.
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-view-form.js
Carlos Aristu <[email protected]> null
related to issue 32757: run missing synchronize terminology
src-db/database/sourcedata/AD_COLUMN.xml
src-db/database/sourcedata/AD_ELEMENT.xml
src-db/database/sourcedata/AD_FIELD.xml
Carlos Aristu <[email protected]> null
fixes issue 32757: Hide the 'Recalculate Permissions' button
src-db/database/sourcedata/AD_FIELD.xml
src-db/database/sourcedata/OBUIAPP_PROCESS.xml
Unai Martirena <[email protected]> null
Fixes issue 32697: Applied Product Services Code Review
src-db/database/model/functions/C_GET_SERVICE_AMOUNT.xml
src-db/database/model/functions/C_ORDER_POST1.xml
src-db/database/sourcedata/AD_COLUMN.xml
src-db/database/sourcedata/AD_ELEMENT.xml
src-db/database/sourcedata/AD_FIELD.xml
src-db/database/sourcedata/AD_TAB.xml
src-db/database/sourcedata/AD_TABLE.xml
src-test/src/org/openbravo/test/services/ServicesTest.java
src/org/openbravo/common/actionhandler/ServiceOrderLineRelate.java
src/org/openbravo/erpCommon/info/ServiceProductPricePrecisionFilterExpression.java
src/org/openbravo/event/ServiceOrderLineEventHandler.java
src/org/openbravo/materialmgmt/ServicePriceUtils.java
Atul Gaware <[email protected]> null
Fixes Issue 32594:Cash VAT field of document header is updated to 'N'
when you insert a tax rate of 0
Added condition prior to update the order cash flag vat, to check
whether tax is non withholding tax and non zero tax.
Code is now shifted to C_OrderTax and C_InvoiceTax Triggers instead
of C_OrderLine and C_InvoiceLine Triggers.
src-db/database/model/triggers/C_INVOICELINE_TRG.xml
src-db/database/model/triggers/C_INVOICETAX_TRG.xml
src-db/database/model/triggers/C_ORDERLINE_TRG.xml
src-db/database/model/triggers/C_ORDERTAX_TRG.xml
Carlos Aristu <[email protected]> null
fixes issue 32628: cannot propagate privileges if a template role has been
used
Now the client/org check is skipped when propagating changes (create, remove,
update) privileges. This is done by using the OBContext.setAdminMode(false).
Besides, the UINAVBA_MenuRecentList preference has been included into the
preference black list, which is a list that prevents the propagation of all the
preferences included within it.
src/org/openbravo/role/inheritance/RoleInheritanceManager.java
src/org/openbravo/role/inheritance/access/PreferenceAccessInjector.java
Carlos Aristu <[email protected]> null
fixes issue 32630: template role cannot be used as session role
Now the injector used for preferences returns the complete Role object and not
a proxy, in order to prevent possible LazyInitializationException when using a
template role as session role.
This was happening because some preferences are created at system level when a
session role is making use of the UI. It is also verified that after fixing
this issue, those preferences are not being propagated, thanks to the
preference black list.
src/org/openbravo/role/inheritance/access/PreferenceAccessInjector.java
Alvaro Ferraz <[email protected]> null
Related to issue 32611: Update copyright
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/process/FIN_ExecutePayment.java
Atul Gaware <[email protected]> null
Fixes bug 32611:Not possible to execute Automatic Deposit payment created
in FA
Before creating a record in financial account transaction, check is done: if
transaction exists, get it so that no transactiom is created and the same is
sent for processing
modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/process/FIN_ExecutePayment.java
Inigo Sanchez <[email protected]> null
Fixed bug 32586: fetch method does not retrieves data with a non active
entity
The problem here was that fetch method does not retrieves data with a non active
entity. (e.g., if it is tried to obtain a non active organization). It is not
take
into account non active entities.
Now, the issues has been fixed by adding setFilterOnActive(false); to take into
account non active entities too.
modules/org.openbravo.service.json/src/org/openbravo/service/json/DefaultJsonDataService.java
src/org/openbravo/service/rest/DalWebService.java
Miguel de Juana <[email protected]> null
Related to issue Related to issue 0033267: Add JSBeautifier script
- Show a more clear error message
modules/org.openbravo.client.kernel/jsbeautify/jsbeautify
modules/org.openbravo.client.kernel/jsbeautify/jsbeautify-module
modules/org.openbravo.client.kernel/jsbeautify/jscheck-btfy
modules/org.openbravo.client.kernel/jsbeautify/jscheck-btfy-module
Last 20 lines of the console output:
[...truncated 9730 lines...]
[junit] Jun 16, 2016 4:06:16 PM org.openqa.selenium.remote.Augmenter
extractRemoteWebDriver
[junit] WARNING: Augmenter should be applied to the instances of
@Augmentable classes or previously augmented instances only
[junit] Jun 16, 2016 4:08:37 PM org.openqa.selenium.remote.Augmenter
extractRemoteWebDriver
[junit] WARNING: Augmenter should be applied to the instances of
@Augmentable classes or previously augmented instances only
[junit] Jun 16, 2016 4:10:41 PM org.openqa.selenium.remote.Augmenter
extractRemoteWebDriver
[junit] WARNING: Augmenter should be applied to the instances of
@Augmentable classes or previously augmented instances only
[junit]
BUILD FAILED
/srv/ci/workspace/int-accounting-oracle/SANDBOX/automation/pi/build.xml:317:
The following error occurred while executing this line:
/srv/ci/workspace/int-accounting-oracle/SANDBOX/automation/pi/build.xml:74:
Test
com.openbravo.test.integration.erp.modules.functionalteam.accounting.testsuites.FAMa_MultiaccountingSchema.MultiAccountingSuite
failed
Total time: 68 minutes 3 seconds
Build step 'Execute managed script' marked build as failure
Recording test results
Archiving artifacts
Checking \] ERROR|\] WARN
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are
consuming the most bandwidth. Provides multi-vendor support for NetFlow,
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports. http://sdm.link/zohomanageengine
_______________________________________________
Openbravo-builds mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-builds