Projet

Général

Profil

0001-update-to-new-workflow-categories-3405.patch

Frédéric Péters, 22 octobre 2017 10:45

Télécharger (2,84 ko)

Voir les différences:

Subject: [PATCH] update to new workflow categories (#3405)

 auquotidien/modules/abelium_domino_workflow.py | 2 +-
 auquotidien/modules/clicrdv.py                 | 4 ++--
 auquotidien/modules/payments.py                | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)
auquotidien/modules/abelium_domino_workflow.py
23 23
    status = None
24 24
    description = N_('Abelium Domino: Register a Family')
25 25
    key = 'abelium-domino-register-family'
26
    category = ('aq-abelium', N_('Abelium'))
26
    category = 'interaction'
27 27
    label = None
28 28

  
29 29
    def render_as_line(self):
auquotidien/modules/clicrdv.py
183 183
class ClicRdvCreateAppointment(WorkflowStatusItem):
184 184
    description = N_('Create a ClicRDV Appointment')
185 185
    key = 'clicrdv-create'
186
    category = ('aq-clicrdv', N_('ClicRDV'))
186
    category = 'interaction'
187 187

  
188 188
    endpoint = False
189 189

  
......
312 312
class ClicRdvCancelAppointment(WorkflowStatusItem):
313 313
    description = N_('Cancel a ClicRDV Appointment')
314 314
    key = 'clicrdv-cancel'
315
    category = ('aq-clicrdv', N_('ClicRDV'))
315
    category = 'interaction'
316 316

  
317 317
    endpoint = False
318 318

  
auquotidien/modules/payments.py
209 209
    description = N_('Payment Creation')
210 210
    key = 'payment'
211 211
    endpoint = False
212
    category = ('aq-payment', N_('Payment'))
212
    category = 'interaction'
213 213
    support_substitution_variables = True
214 214

  
215 215
    subject = None
......
303 303
    description = N_('Payment Cancel')
304 304
    key = 'payment-cancel'
305 305
    endpoint = False
306
    category = ('aq-payment', N_('Payment'))
306
    category = 'interaction'
307 307

  
308 308
    reason = None
309 309
    regie_id = None
......
449 449
    description = N_('Payment Validation')
450 450
    key = 'payment-validation'
451 451
    endpoint = False
452
    category = ('aq-payment', N_('Payment'))
452
    category = 'interaction'
453 453

  
454 454
    next_status = None
455 455

  
456
-