biz9-logic 4.9.94 → 4.9.95

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/biz9_config +1 -1
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='9.6.5'
1
+ VERSION='9.6.6'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='9.5.3'
package/index.js CHANGED
@@ -1118,7 +1118,7 @@ class Field_Logic {
1118
1118
  return !Str.check_is_null(item[Field_Logic.get_field_value_title(value_type,value_id)]) ? item[Field_Logic.get_field_value_title(value_type,value_id)] : []
1119
1119
  }
1120
1120
  };
1121
- static get_field_value_title = (value_type,value_id) =>{
1121
+ static get_field_value_title = (value_type,value_id,group_id,title) =>{
1122
1122
  switch(value_type){
1123
1123
  case Type.FIELD_VALUE_TEXT:
1124
1124
  return 'text'+'_value_'+value_id;
@@ -1130,7 +1130,7 @@ class Field_Logic {
1130
1130
  return 'image'+'_value_'+value_id;
1131
1131
  break;
1132
1132
  case Type.FIELD_VALUE_LIST:
1133
- return 'list'+'_value_'+value_id;
1133
+ return 'list'+'_value_'+value_id +'_group_' +group_id+title;
1134
1134
  break;
1135
1135
  default:
1136
1136
  return 'text'+'_value_'+value_id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.9.94",
3
+ "version": "4.9.95",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"