art61 : Article 61 job supplyments

The lino_welfare.modlib.art61 plugin adds support for managing Art61 job supplyments.

This page is a tested document and the following instructions are used for initialization:

>>> from lino import startup
>>> startup('lino_welfare.projects.mathieu.settings.demo')
>>> from lino.api.doctest import *

What are article 61 job supplyments?

A “job supplyment using article 61” (in French “mise au travail en application de l’article 61”) is a project where the PCSW collaborates with a third-party employer in order to fulfill its duty of supplying a job for a coached client. (www.mi-is.be)

There are different formulas of subsidization:

>>> rt.show('art61.Subsidizations', language="fr")
======= ========= =================
 value   name      text
------- --------- -----------------
 10      hiring    Aide à l'emploi
 20      tutorat   Tutorat
 30      region    Région Wallonne
======= ========= =================

Document templates

art61/Contract/contract.body.html

This file is used as body_template on the excerpt type used to print a lino_welfare.modlib.art61.Contract. The default content is in lino_welfare/modlib/art61/config/art61/Contract/contract.body.html.

The printed document

>>> obj = art61.Contract.objects.filter(sub_10_amount__isnull=False).first()
>>> obj.sub_10_amount
Decimal('250.00')
>>> ar = rt.login('romain')
>>> html = ar.get_data_value(obj.printed_by, 'preview')
>>> soup = BeautifulSoup(html, 'lxml')
>>> for h in soup.find_all('h1'):
...     print(str(h))
<h1>Mise à l'emploi art.61
</h1>
>>> for h in soup.find_all('h2'):
...     print(h)
<h2>Article 1</h2>
<h2>Article 2</h2>
<h2>Article 3</h2>
<h2>Article 4 (sans tutorat)</h2>
<h2>Article 5 (activa)</h2>
<h2>Article 6 (activa)</h2>
<h2>Article 7 (sans tutorat)</h2>
<h2>Article 8</h2>
<h2>Article 9</h2>
<h2>Article 10</h2>
<h2>Article 11</h2>
<h2>Article 12</h2>
<h2>Article 13</h2>
<h2>Article 14</h2>

Art61 job supplyments

An “Art61 job supplyment” is an agreement between the PCSW and a private company about one of the clients of the PCSW.

class lino_welfare.modlib.art61.Contract

The Django database model.

get_subsidizations(self)

Yield a list of all subsidizations activated for this contract.

class lino_welfare.modlib.art61.ContractsByClient

Shows the Art61 job supplyments for this client.

class lino_welfare.modlib.art61.ContractType

This is the homologue of isip.ContractType (see there for general documentation).

The demo database comes with these contract types:

>>> rt.show('art61.ContractTypes')
======================== =================== ====================== ===========
 Désignation              Désignation (de)    Désignation (en)       Référence
------------------------ ------------------- ---------------------- -----------
 Mise à l'emploi art.61   Art.61-Konvention   Art61 job supplyment
======================== =================== ====================== ===========