Hi,
How can I reset the checkbox for the next period?
The comments can stay in the next period.
For example:
Code:
Consistentiecheck
{% assign checklist_DETConsistentie_array = "Dubbele facturen|Relatiecontrole|Verkoopfacturen volledig|Consistent gebruik grootboekrekening en BTW codes|Bankverwerkingsregels geöptimaliseerd|BTW-nummers op verkoopfacturen steeds opgenomen?|MAR bijgewerkt|MAR % in orde gezet|Klantspecifieke opmerkingen bijgewerkt|Kwaliteitsmonitor bijgewerkt|Checklist backoffice Yuki doorlopen"|split:"|"%} {% assign keyDETConsistentie_array = "Zowel aan- als verkopen nagekeken?|Ongebruikte adressen wegwerken, zeker de 5 categoriën nagekeken?|Verkoopfacturen volledig?|Consistent gebruik nagekeken?|Foutieve regels gewist?|BTW-nummers opgenomen?|MAR bijgewerkt?|MAR% in orde?|Klantspecifieke opmerkingen nagekeken?|Kwaliteitsmonitor in orde?|Checklist backoffice Yuki in orde?" |split:"|" %}{% stripnewlines %}
|
|
|
| Check
| Comment
{% newline %}
|----1%----
|----5%----
----1%----: |
---|
----50%----+ |
{% newline %}
{% assign no = 0 %}
{% for item in keyDETConsistentie_array %}
| {% if custom.checklist_boolean.[item] != true %}{% unreconciled 1 as: indicator unreconciled_text:“Obligated” %}{% endif %}
| {% input custom.checklist_boolean.[item] as:boolean %}
| {% assign no = no+1 %}
{{ no | integer }}.
| {{ checklist_DETConsistentie_array[forloop.index0] }}
| {% input custom.comment.[item] as:text default:item %}
{% newline %}
{% endfor %}
{% endstripnewlines %}
To reset the custom.checklist_boolean.[item] I wanted to use this code, but it doesn’t work:
{% rollforward nil custom.checklist_boolean.[item] %}
What should I do to make the code work?