(user_variables: List, sys_variable: SystemVariable)
| 210 | |
| 211 | |
| 212 | def userHaveVariable(user_variables: List, sys_variable: SystemVariable): |
| 213 | for u in user_variables: |
| 214 | if sys_variable.id == u.get('variableId'): |
| 215 | return True |
| 216 | return False |
| 217 | |
| 218 | |
| 219 | def getSysVariableValue(sys_variable: SystemVariable, current_user: CurrentUser, ds: CoreDatasource, field: CoreField, |