tricc-oo 1.5.14__py3-none-any.whl → 1.5.15__py3-none-any.whl

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.
@@ -44,7 +44,7 @@ TYPE_MAP = {
44
44
  "constraint",
45
45
  "constraint_message",
46
46
  "relevance",
47
- "priority"
47
+ "priority", "trigger", "default"
48
48
 
49
49
  ],
50
50
  "mandatory_attributes": ["label", "name", "list_name"],
@@ -60,7 +60,7 @@ TYPE_MAP = {
60
60
  "constraint",
61
61
  "constraint_message",
62
62
  "relevance",
63
- "priority"
63
+ "priority", "trigger", "default"
64
64
  ],
65
65
  "mandatory_attributes": ["label", "name", "list_name"],
66
66
  "model": TriccNodeSelectMultiple
@@ -75,7 +75,7 @@ TYPE_MAP = {
75
75
  "constraint_message",
76
76
  "required",
77
77
  "relevance",
78
- "priority"
78
+ "priority", "trigger", "default"
79
79
  ],
80
80
  "mandatory_attributes": ["label", "name"],
81
81
  "model": TriccNodeDecimal
@@ -90,7 +90,7 @@ TYPE_MAP = {
90
90
  "constraint_message",
91
91
  "required",
92
92
  "relevance",
93
- "priority"
93
+ "priority", "trigger", "default"
94
94
 
95
95
  ],
96
96
  "mandatory_attributes": ["label", "name"],
@@ -99,43 +99,43 @@ TYPE_MAP = {
99
99
 
100
100
  TriccNodeType.text: {
101
101
  "objects": ["UserObject", "object"],
102
- "attributes": ["save", "relevance","priority"],
102
+ "attributes": ["save", "relevance","priority", "trigger", "default"],
103
103
  "mandatory_attributes": ["label", 'name'],
104
104
  "model": TriccNodeText
105
105
  },
106
106
  TriccNodeType.date: {
107
107
  "objects": ["UserObject", "object"],
108
- "attributes": ["save", "relevance","priority"],
108
+ "attributes": ["save", "relevance","priority", "trigger", "default"],
109
109
  "mandatory_attributes": ["label", "name"],
110
110
  "model": TriccNodeDate
111
111
  },
112
112
  TriccNodeType.add: {
113
113
  "objects": ["UserObject", "object"],
114
- "attributes": ["save", "expression"],
114
+ "attributes": ["save", "expression", "trigger"],
115
115
  "mandatory_attributes": ['label', "name"],
116
116
  "model": TriccNodeAdd
117
117
  },
118
118
  TriccNodeType.count: {
119
119
  "objects": ["UserObject", "object"],
120
- "attributes": ["save", "expression"],
120
+ "attributes": ["save", "expression", "trigger"],
121
121
  "mandatory_attributes": ['label', "name"],
122
122
  "model": TriccNodeCount
123
123
  },
124
124
  TriccNodeType.calculate: {
125
125
  "objects": ["UserObject", "object"],
126
- "attributes": ["save", "reference"],
126
+ "attributes": ["save", "reference", "trigger"],
127
127
  "mandatory_attributes": [ "name", 'label'],
128
128
  "model": TriccNodeCalculate
129
129
  },
130
130
  TriccNodeType.rhombus: {
131
131
  "objects": ["UserObject", "object"],
132
- "attributes": ["save", "expression", 'label','priority'],
132
+ "attributes": ["save", "expression", 'label','priority', "trigger"],
133
133
  "mandatory_attributes": ["reference"],
134
134
  "model": TriccNodeRhombus
135
135
  },
136
136
  TriccNodeType.wait: {
137
137
  "objects": ["UserObject", "object"],
138
- "attributes": ["save", "expression"],
138
+ "attributes": ["save", "expression", "trigger"],
139
139
  "mandatory_attributes": ["reference", "name", 'label'],
140
140
  "model": TriccNodeWait
141
141
  },
@@ -159,7 +159,7 @@ TYPE_MAP = {
159
159
  "filter",
160
160
  "constraint",
161
161
  "constraint_message",
162
- "relevance","priority"
162
+ "relevance","priority", "trigger", "default"
163
163
  ],
164
164
  "mandatory_attributes": ["label", "name", "list_name"],
165
165
  "model": TriccNodeSelectYesNo
@@ -208,7 +208,7 @@ TYPE_MAP = {
208
208
  },
209
209
  TriccNodeType.proposed_diagnosis: {
210
210
  "objects": ["UserObject", "object"],
211
- "attributes": ["save", "reference", "severity", "priority"],
211
+ "attributes": ["save", "reference", "severity", "priority", "trigger"],
212
212
  "mandatory_attributes": [ "name", 'label'],
213
213
  "model": TriccNodeProposedDiagnosis
214
214
  },
@@ -650,6 +650,8 @@ def load_expressions(node):
650
650
  node.expression = parse_expression('', node.expression)
651
651
  if getattr(node, 'relevance', None):
652
652
  node.relevance = parse_expression('', node.relevance)
653
+ if getattr(node, 'trigger', None):
654
+ node.trigger = parse_expression('', node.trigger)
653
655
  if getattr(node, 'default', None):
654
656
  node.default = parse_expression('', node.default)
655
657
  if getattr(node, 'reference', None):
@@ -20,7 +20,8 @@ class TriccNodeDisplayCalculateBase(TriccNodeCalculateBase):
20
20
  save: Optional[str] = None # contribute to another calculate
21
21
  hint: Optional[str] = None # for diagnostic display
22
22
  help: Optional[str] = None # for diagnostic display
23
- applicability: Optional[Union[Expression, TriccOperation]] = None
23
+ trigger: Optional[Union[Expression, TriccOperation, TriccReference]] = None
24
+ applicability: Optional[Union[Expression, TriccOperation, TriccReference]] = None
24
25
  # no need to copy save
25
26
  def to_fake(self):
26
27
  data = vars(self)
@@ -75,10 +76,10 @@ class TriccRhombusMixIn():
75
76
  reference = []
76
77
  expression_reference = None
77
78
  instance.path = None
78
- if isinstance(self.expression_reference, (str, TriccOperation)):
79
+ if isinstance(self.expression_reference, (str, TriccOperation, TriccReference, TriccStatic)):
79
80
  expression_reference = self.expression_reference.copy()
80
81
  reference = list(expression_reference.get_references())
81
- if isinstance(self.reference, (str, TriccOperation)):
82
+ if isinstance(self.reference, (str, TriccOperation, TriccReference, TriccStatic)):
82
83
  expression_reference = self.reference.copy()
83
84
  reference = list(expression_reference.get_references())
84
85
  elif isinstance(self.reference, list):
tricc_oo/models/tricc.py CHANGED
@@ -237,6 +237,8 @@ class TriccNodeDisplayModel(TriccNodeBaseModel):
237
237
  help: Optional[Union[str, TriccNodeBaseModel]] = None
238
238
  group: Optional[Union[TriccGroup, TriccNodeActivity]] = None
239
239
  relevance: Optional[Union[Expression, TriccOperation]] = None
240
+ default: Optional[Union[Expression, TriccOperation, TriccReference, TriccStatic]] = None
241
+ trigger: Optional[Union[Expression, TriccOperation, TriccReference]] = None
240
242
  priority: Union[float, int, None] = None
241
243
 
242
244
  # to use the enum value of the TriccNodeType
@@ -231,6 +231,7 @@ SURVEY_MAP = {
231
231
  **langs.get_trads_map("required_message"),
232
232
  "read only": "read only",
233
233
  "calculation": "expression",
234
+ "trigger": "trigger",
234
235
  "repeat_count": "repeat_count",
235
236
  "media::image": "image",
236
237
  "choice_filter": "",
@@ -602,6 +603,7 @@ def get_input_line(node, replace_dots=True):
602
603
  "", #'required'
603
604
  *list(empty.values()), #'required message'
604
605
  "", #'read only'
606
+ "",
605
607
  "", #'expression'
606
608
  "", #'repeat_count'
607
609
  "", #'image'
@@ -629,6 +631,7 @@ def get_input_calc_line(node, replace_dots=True):
629
631
  "", #'read only'
630
632
  "../inputs/contact/"
631
633
  + clean_name(node.name, replace_dots=replace_dots), #'expression'
634
+ "",
632
635
  "", #'repeat_count'
633
636
  "", #'image'
634
637
  "", # choice filter
@@ -70,6 +70,7 @@ class XLSFormCDSSStrategy(XLSFormStrategy):
70
70
  *list(empty.values()) ,#'required message'
71
71
  '',#'read only'
72
72
  '',#'expression'
73
+ "",
73
74
  '',#'repeat_count'
74
75
  '',#'image'
75
76
  ''
@@ -90,6 +91,7 @@ class XLSFormCDSSStrategy(XLSFormStrategy):
90
91
  *list(empty.values()) ,#'required message'
91
92
  '',#'read only'
92
93
  '',#'expression'
94
+ "",
93
95
  '',#'repeat_count'
94
96
  '',#'image'
95
97
  ''
@@ -110,6 +112,7 @@ class XLSFormCDSSStrategy(XLSFormStrategy):
110
112
  *list(empty.values()) ,#'required message'
111
113
  '',#'read only'
112
114
  '',#'expression'
115
+ "",
113
116
  '',#'repeat_count'
114
117
  '',#'image'
115
118
  ''
@@ -133,6 +136,7 @@ class XLSFormCDSSStrategy(XLSFormStrategy):
133
136
  '1',#'required'
134
137
  *list(empty.values()) ,#'required message'
135
138
  '',#'read only'
139
+ "",
136
140
  '',#'expression'
137
141
  '',#'repeat_count'
138
142
  '',#'image'
@@ -61,6 +61,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
61
61
  "",
62
62
  "",
63
63
  "",
64
+ "",
64
65
  ]
65
66
  df_input.loc[len(df_input)] = [
66
67
  "hidden",
@@ -81,6 +82,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
81
82
  "",
82
83
  "",
83
84
  "",
85
+ "",
84
86
  ]
85
87
  df_input.loc[len(df_input)] = [
86
88
  "hidden",
@@ -101,6 +103,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
101
103
  "",
102
104
  "",
103
105
  "",
106
+ "",
104
107
  ]
105
108
 
106
109
  df_input.loc[len(df_input)] = [
@@ -122,6 +125,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
122
125
  "",
123
126
  "",
124
127
  "",
128
+ "",
125
129
  ]
126
130
  df_input.loc[len(df_input)] = [
127
131
  "string",
@@ -142,6 +146,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
142
146
  "",
143
147
  "",
144
148
  "",
149
+ "",
145
150
  ]
146
151
  df_input.loc[len(df_input)] = [
147
152
  "string",
@@ -162,6 +167,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
162
167
  "",
163
168
  "",
164
169
  "",
170
+ "",
165
171
  ]
166
172
  df_input.loc[len(df_input)] = [
167
173
  "string",
@@ -182,6 +188,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
182
188
  "",
183
189
  "",
184
190
  "",
191
+ "",
185
192
  ]
186
193
  df_input.loc[len(df_input)] = [
187
194
  "end_group",
@@ -202,6 +209,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
202
209
  "",
203
210
  "",
204
211
  "",
212
+ "",
205
213
  ]
206
214
  df_input.loc[len(df_input)] = [
207
215
  "begin_group",
@@ -222,6 +230,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
222
230
  "",
223
231
  "",
224
232
  "",
233
+ "",
225
234
  ]
226
235
  inputs = self.export_inputs(start_pages[self.processes[0]], **kwargs)
227
236
  for input in inputs:
@@ -246,6 +255,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
246
255
  "",
247
256
  "",
248
257
  "",
258
+ "",
249
259
  ]
250
260
 
251
261
  df_input.loc[len(df_input)] = [
@@ -267,6 +277,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
267
277
  "",
268
278
  "",
269
279
  "",
280
+ "",
270
281
  ]
271
282
 
272
283
  df_input.loc[len(df_input)] = [
@@ -288,6 +299,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
288
299
  "",
289
300
  "",
290
301
  "",
302
+ "",
291
303
  ]
292
304
 
293
305
  df_input.loc[len(df_input)] = [
@@ -309,6 +321,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
309
321
  "",
310
322
  "",
311
323
  "",
324
+ "",
312
325
  ]
313
326
  self.get_contact_inputs_calculate(df_input)
314
327
  df_input.loc[len(df_input)] = [
@@ -327,6 +340,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
327
340
  *list(empty.values()), #'required message'
328
341
  "", #'read only'
329
342
  "../inputs/user/contact_id", #'expression'
343
+ "",
330
344
  "", #'repeat_count'
331
345
  "", #'image'
332
346
  "", # choice filter
@@ -347,6 +361,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
347
361
  *list(empty.values()), #'required message'
348
362
  "", #'read only'
349
363
  "../inputs/user/facility_id", #'expression'
364
+ "",
350
365
  "", #'repeat_count'
351
366
  "", #'image'
352
367
  "", # choice filter
@@ -367,6 +382,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
367
382
  *list(empty.values()), #'required message'
368
383
  "", #'read only'
369
384
  "../inputs/user/name", #'expression'
385
+ "",
370
386
  "", #'repeat_count'
371
387
  "", #'image'
372
388
  "", # choice filter
@@ -387,6 +403,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
387
403
  *list(empty.values()), #'required message'
388
404
  "", #'read only'
389
405
  "../inputs/contact/_id", #'expression'
406
+ "",
390
407
  "", #'repeat_count'
391
408
  "", #'image'
392
409
  "", # choice filter
@@ -408,6 +425,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
408
425
  *list(empty.values()), #'required message'
409
426
  "", #'read only'
410
427
  "../inputs/source_id", #'expression'
428
+ "",
411
429
  "", #'repeat_count'
412
430
  "", #'image'
413
431
  "", # choice filter
@@ -428,6 +446,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
428
446
  *list(empty.values()), #'required message'
429
447
  "", #'read only'
430
448
  "../inputs/user/facility_id", #'expression'
449
+ "",
431
450
  "", #'repeat_count'
432
451
  "", #'image'
433
452
  "", # choice filter
@@ -451,6 +470,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
451
470
  "",
452
471
  "",
453
472
  "",
473
+ "",
454
474
  ]
455
475
 
456
476
  for input in inputs:
@@ -480,6 +500,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
480
500
  "",
481
501
  "",
482
502
  "",
503
+ "",
483
504
  ]
484
505
  if not len(df_input[df_input['name'] == 'date_of_birth']):
485
506
  df_input.loc[len(df_input)] = [
@@ -501,6 +522,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
501
522
  "",
502
523
  "",
503
524
  "",
525
+ "",
504
526
  ]
505
527
 
506
528
  return df_input
@@ -527,6 +549,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
527
549
  "",
528
550
  "",
529
551
  "",
552
+ "",
530
553
  ]
531
554
  df_input.loc[len(df_input)] = [
532
555
  "calculate",
@@ -547,6 +570,7 @@ class XLSFormCHTStrategy(XLSFormCDSSStrategy):
547
570
  "",
548
571
  "",
549
572
  "",
573
+ "",
550
574
  ]
551
575
 
552
576
  return df_input
@@ -591,6 +591,22 @@ def process_reference(node, processed_nodes, calculates, used_calculates=None,
591
591
  return False
592
592
  elif modified_expression and replace_reference:
593
593
  node.relevance = modified_expression
594
+
595
+ if isinstance(getattr(node, 'trigger', None), (TriccOperation, TriccReference)):
596
+ modified_expression = process_operation_reference(
597
+ node.trigger,
598
+ node,
599
+ processed_nodes=processed_nodes,
600
+ calculates=calculates,
601
+ used_calculates=used_calculates,
602
+ replace_reference=replace_reference,
603
+ warn=warn,
604
+ codesystems=codesystems
605
+ )
606
+ if modified_expression is False:
607
+ return False
608
+ elif modified_expression and replace_reference:
609
+ node.trigger = modified_expression
594
610
 
595
611
  if isinstance(getattr(node, 'default', None), (TriccOperation, TriccReference)):
596
612
  modified_expression = process_operation_reference(
@@ -2101,7 +2117,7 @@ def get_rhombus_terms( node, processed_nodes, get_overall_exp=False, negate=Fals
2101
2117
  node.get_name()))
2102
2118
  exit(1)
2103
2119
  elif node.expression_reference is not None and node.expression_reference != '':
2104
- if isinstance(node.expression_reference, TriccOperation):
2120
+ if isinstance(node.expression_reference, (TriccOperation, TriccReference, TriccStatic)):
2105
2121
  return node.expression_reference
2106
2122
  elif isinstance(node.expression_reference, str):
2107
2123
  expression = node.expression_reference.format(*get_list_names(node.reference))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tricc-oo
3
- Version: 1.5.14
3
+ Version: 1.5.15
4
4
  Summary: Python library that converts CDSS L2 in L3
5
5
  Project-URL: Homepage, https://github.com/SwissTPH/tricc
6
6
  Project-URL: Issues, https://github.com/SwissTPH/tricc/issues
@@ -6,26 +6,26 @@ tricc_oo/converters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
6
6
  tricc_oo/converters/codesystem_to_ocl.py,sha256=-ZKMBeIvzgqmhJfnn6ptuwpnHQtuE-fCDDfKpfGvUSU,6066
7
7
  tricc_oo/converters/cql_to_operation.py,sha256=ckT9ZVtHt5JFiqv_NDLL-Z9t46olIqMwEnp9TnFbYY8,14330
8
8
  tricc_oo/converters/datadictionnary.py,sha256=WWKcTtKLfc4aduHcDBhr4JSfU2NqRMaslwX-wdZPIAw,3968
9
- tricc_oo/converters/drawio_type_map.py,sha256=VsiKJuAcM_kaSacxZgMaMEfEMVwVAbJjxrRj4TDMIxc,7254
9
+ tricc_oo/converters/drawio_type_map.py,sha256=Hr-QftrRZpVFI4SrYpxEZ6TBB9s1I3_0ieTpxlNwJXQ,7474
10
10
  tricc_oo/converters/tricc_to_xls_form.py,sha256=bJVd-FLrivrCxGI6mO2i0V7GVVuJZdaDuwcEf3gHNR8,2327
11
11
  tricc_oo/converters/utils.py,sha256=UyndDORsDbRV5-gYW-yInK5ztjtYdeCw6K-mrYr1Emk,1688
12
- tricc_oo/converters/xml_to_tricc.py,sha256=qflEQp2pZbUROE2hY04pxrGxGE3O5AgSbxTfpUynTzU,37272
12
+ tricc_oo/converters/xml_to_tricc.py,sha256=o9u5ixn8w3miWwbvgIZubcEFW_6_DfnIm-32g-YMS8w,37369
13
13
  tricc_oo/converters/cql/cqlLexer.py,sha256=t0-QvDv5kxCiBZJ9SfDumFOgnRSry_HJpakBZV224Ig,49126
14
14
  tricc_oo/converters/cql/cqlListener.py,sha256=ketvj7XvO7t047S6A3_gTPvp2MlYk1bojmkl10v5E6Y,57523
15
15
  tricc_oo/converters/cql/cqlParser.py,sha256=hIUdR907WX24P2Jlrxk-H0IT94n51yh_ZsCmwQhnFas,414730
16
16
  tricc_oo/converters/cql/cqlVisitor.py,sha256=SWSDIqVYBhucR4VgLn_EPNs7LV9yCqsOmzFZ0bmRSGc,33865
17
17
  tricc_oo/models/__init__.py,sha256=Rdk1fsNXHrbmXTQD1O7i0NC_A6os648Ap6CtWRliOg8,92
18
18
  tricc_oo/models/base.py,sha256=qCR26kdCip3a9cJRl-dmq3qiHdpxNHtFW3jGe0bwRIo,24637
19
- tricc_oo/models/calculate.py,sha256=sHuUEFc88yUZMtYWIG09wNOiOsbemj8wEoulVPXwcys,7486
19
+ tricc_oo/models/calculate.py,sha256=60jSL8gbcTxqGYsZe1LoGZAdScIp6_suC88XlE0xg-c,7640
20
20
  tricc_oo/models/lang.py,sha256=SwKaoxyRhE7gH_ZlYyFXzGuTQ5RE19y47LWAA35zYxg,2338
21
21
  tricc_oo/models/ocl.py,sha256=ol35Gl1jCBp0Ven0yxOKzDIZkVL5Kx9uwaR_64pjxKI,8931
22
22
  tricc_oo/models/ordered_set.py,sha256=wbbmppjgKy0xcKD9kIAbT4kgNkuwTILPxRw_KAAoPEY,4178
23
- tricc_oo/models/tricc.py,sha256=FMksoYJsoKbDs3JtM42ooUV7T9E9X0E3_1TU3oumspI,16631
23
+ tricc_oo/models/tricc.py,sha256=xIoiycWogQDsw_b55r_80oQSX3Q07OgD18UDZW6aT6c,16804
24
24
  tricc_oo/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  tricc_oo/parsers/xml.py,sha256=vq9PA5Zt4G3QMtZ1zgyN8110O1w19Jqt6JClJYhHJlU,4410
26
26
  tricc_oo/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  tricc_oo/serializers/planuml.py,sha256=a81YKsjgng-h2H_rmFE2J5FeBBUaH8kRGT8YrvzpEKE,455
28
- tricc_oo/serializers/xls_form.py,sha256=KwPOMD594ru0BXW_ZxHyJTg-to8Yyl3jKUEtQP5afOE,22785
28
+ tricc_oo/serializers/xls_form.py,sha256=ikFx--aljpr4qvEm-SraV8JW0p8zyGpquGJIgNHvjhc,22835
29
29
  tricc_oo/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
30
  tricc_oo/strategies/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  tricc_oo/strategies/input/base_input_strategy.py,sha256=-GQ_xRvJXzn-q_eT8R-wtFOTWzPtdNj79zjmsH6x070,4065
@@ -33,14 +33,14 @@ tricc_oo/strategies/input/drawio.py,sha256=qVX4-roFhnsgQSBA9gD9upz18FnBFs7-UeyHa
33
33
  tricc_oo/strategies/output/base_output_strategy.py,sha256=WiJwqm4g_x-rbksrjoE0ABhNMtM0_fAMoPH34RKZdc0,7173
34
34
  tricc_oo/strategies/output/spice.py,sha256=s_COahyYCoc4Xv5TGh_AW9evDOW6GOex0Xwa_JWeLsI,11280
35
35
  tricc_oo/strategies/output/xls_form.py,sha256=OGN_qYYv8oXZPNPyoxyYcSP253MLzigLIBFntpsExKo,31046
36
- tricc_oo/strategies/output/xlsform_cdss.py,sha256=8oLlgS1Hr6IVvI0O71kIk5oIKXbt2lPVc1SZIjzcSTc,9452
37
- tricc_oo/strategies/output/xlsform_cht.py,sha256=I7-J5Q8kqzYPm2EOeurIji-AlTejsWJzvJKvtMyJQ-4,23824
36
+ tricc_oo/strategies/output/xlsform_cdss.py,sha256=8ghPYH8K2DSzPY1jrJMQzrFmkvzu75jM0B1LpSS-y1E,9516
37
+ tricc_oo/strategies/output/xlsform_cht.py,sha256=2GeQCmuoFo2CbKGuMIwr8Iq78edKMDb3AAsm6UVTHMU,24216
38
38
  tricc_oo/strategies/output/xlsform_cht_hf.py,sha256=VPx5_wLXLacJFTgVcwOJ7LVd77fmOrL_ZAycNZLxC6o,2281
39
39
  tricc_oo/visitors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- tricc_oo/visitors/tricc.py,sha256=b3zD6vZLQE7WgsONMINgTNZ4nHNp5WrP_-jN5jlezAc,100328
40
+ tricc_oo/visitors/tricc.py,sha256=49YFqusHxzIZZd6MUuhytM_82Rz9ixwI2KQBUI8j0ug,100977
41
41
  tricc_oo/visitors/utils.py,sha256=Gol4JNozPEd30Q1l8IPIPhx5fqVyy9R81GofGVebgD8,484
42
42
  tricc_oo/visitors/xform_pd.py,sha256=jgjBLbfElVdi0NmClhw6NK6qNcIgWYm4KMXfVwiQwXM,9705
43
- tricc_oo-1.5.14.dist-info/METADATA,sha256=OS_8N7bK-emxZJAeIshTLFug9fIwU7ojsx5fgMjVrMo,7878
44
- tricc_oo-1.5.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
45
- tricc_oo-1.5.14.dist-info/top_level.txt,sha256=NvbfMNAiy9m4b1unBsqpeOQWh4IgA1Xa33BtKA4abxk,15
46
- tricc_oo-1.5.14.dist-info/RECORD,,
43
+ tricc_oo-1.5.15.dist-info/METADATA,sha256=skfCRT8YnQ868dJXWHmlm9oqlpBMVsWcsSGZ-9lvM3E,7878
44
+ tricc_oo-1.5.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
45
+ tricc_oo-1.5.15.dist-info/top_level.txt,sha256=NvbfMNAiy9m4b1unBsqpeOQWh4IgA1Xa33BtKA4abxk,15
46
+ tricc_oo-1.5.15.dist-info/RECORD,,