Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/tsolucio/corebos
Browse files Browse the repository at this point in the history
  • Loading branch information
xhildashazivari committed Sep 1, 2022
2 parents 59294b7 + a109e3d commit 56afdbf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions include/js/FieldDependencies.js
Expand Up @@ -130,10 +130,9 @@ FieldDependencies.prototype.actOnSelectChange = function (event) {
FieldDependencies.prototype.controlActions = function (sourcename) {
var sourcevalue ='';
var field, comparator, value, columncondition, fieldName, groupid, conditionCurr, newGroup;
var i=0;
var conditions=new Array();
if (this.DS[sourcename]!==undefined) {
for (i=0; i<this.DS[sourcename].length; i++) {
for (var i=0; i<this.DS[sourcename].length; i++) {
var responsibleConfig=this.DS[sourcename][i];
conditions=responsibleConfig['conditions']!=='' ? JSON.parse(responsibleConfig['conditions']) : conditions;
var conditionResp='';
Expand Down Expand Up @@ -179,7 +178,6 @@ FieldDependencies.prototype.controlActions = function (sourcename) {
condArray.push(conditionResp);
condOperatorArray.push('');
}

}
conditionResp='';
for (j=0; j<condArray.length; j++) {
Expand Down
2 changes: 1 addition & 1 deletion modules/com_vtiger_workflow/language/en_us.fndefs.php
Expand Up @@ -2013,7 +2013,7 @@
array(
'name' => 'send2cb',
'type' => 'Boolean',
'optional' => false,
'optional' => true,
'desc' => 'set it to 1 if the information is passed into coreBOS, and 0 for the other cases.',
),
),
Expand Down
8 changes: 4 additions & 4 deletions modules/com_vtiger_workflow/language/es_es.fndefs.php
Expand Up @@ -1980,7 +1980,7 @@
),
),
'applyMaptoInventoryArrayElements' => array(
'name' => 'applyMaptoInventoryArrayElements(array, InventoryDetailsElement, Inventorymapid, InventoryDetailsmapid)',
'name' => 'applyMaptoInventoryArrayElements(array, InventoryDetailsElement, Inventorymapid, InventoryDetailsmapid, send2cb)',
'desc' => 'Aplica el mapa de negocio Inventorymapid a cada elemento del parámetro array, y el mapa InventoryDetailsmapid a cada elemento del sub-array indicado por el parámetro InventoryDetailsElement.',
'params' => array(
array(
Expand Down Expand Up @@ -2009,9 +2009,9 @@
),
array(
'name' => 'send2cb',
'type' => 'Boolean',
'optional' => false,
'desc' => 'set it to 1 if the information is passed into coreBOS, and 0 for the other cases.',
'type' => 'Booleano',
'optional' => true,
'desc' => 'utiliza 1 si la información está destinada a enviar a coreBOS, y 0 para otros casos.',
),
),
'categories' => array('Application'),
Expand Down

0 comments on commit 56afdbf

Please sign in to comment.