@steedos/standard-process-approval 2.4.0-beta.30 → 2.4.0-beta.31

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.
@@ -50,7 +50,7 @@ fields:
50
50
  filtersFunction: !!js/function |
51
51
  function (filters, dependValues) {
52
52
  if(dependValues && dependValues.object_name){
53
- return "object_name eq '" + dependValues.object_name + "'";
53
+ return ['object_name','=',dependValues.object_name];
54
54
  }
55
55
  }
56
56
  workflow_notifications_actions:
@@ -66,7 +66,7 @@ fields:
66
66
  filtersFunction: !!js/function |
67
67
  function (filters, dependValues) {
68
68
  if(dependValues && dependValues.object_name){
69
- return "object_name eq '" + dependValues.object_name + "'";
69
+ return ['object_name','=',dependValues.object_name];
70
70
  }
71
71
  }
72
72
  workflow_outbound_messages_actions:
@@ -82,7 +82,7 @@ fields:
82
82
  filtersFunction: !!js/function |
83
83
  function (filters, dependValues) {
84
84
  if(dependValues && dependValues.object_name){
85
- return "object_name eq '" + dependValues.object_name + "'";
85
+ return ['object_name','=',dependValues.object_name];
86
86
  }
87
87
  }
88
88
  # boolean_filter: # TODO 暂不支持
@@ -172,7 +172,7 @@ fields:
172
172
  filtersFunction: !!js/function |
173
173
  function (filters, dependValues) {
174
174
  if(dependValues && dependValues.object_name){
175
- return "object_name eq '" + dependValues.object_name + "'";
175
+ return ['object_name','=',dependValues.object_name];
176
176
  }
177
177
  }
178
178
  time_triggers.$.workflow_notifications_actions:
@@ -187,7 +187,7 @@ fields:
187
187
  filtersFunction: !!js/function |
188
188
  function (filters, dependValues) {
189
189
  if(dependValues && dependValues.object_name){
190
- return "object_name eq '" + dependValues.object_name + "'";
190
+ return ['object_name','=',dependValues.object_name];
191
191
  }
192
192
  }
193
193
  time_triggers.$.workflow_outbound_messages_actions:
@@ -202,7 +202,7 @@ fields:
202
202
  filtersFunction: !!js/function |
203
203
  function (filters, dependValues) {
204
204
  if(dependValues && dependValues.object_name){
205
- return "object_name eq '" + dependValues.object_name + "'";
205
+ return ['object_name','=',dependValues.object_name];
206
206
  }
207
207
  }
208
208
  description:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/standard-process-approval",
3
- "version": "2.4.0-beta.30",
3
+ "version": "2.4.0-beta.31",
4
4
  "main": "package.service.js",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -10,10 +10,10 @@
10
10
  "steedos"
11
11
  ],
12
12
  "dependencies": {
13
- "@steedos/process": "2.4.0-beta.30"
13
+ "@steedos/process": "2.4.0-beta.31"
14
14
  },
15
15
  "description": "steedos package",
16
16
  "repository": {},
17
17
  "license": "MIT",
18
- "gitHead": "22c0cf80236640dac2c2a85b7a209355ef00e57c"
18
+ "gitHead": "a774174cebbb39c961ad03e20e990781082c8c04"
19
19
  }