This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # FOR VERSION 10,11,12,13,... | |
| # Set sessions ids between the brackets, separated by a coma | |
| # I.E. SESSION_ID = [12, 18, 132] or SESSION_ID = [4] | |
| SESSION_ID = [] | |
| MODE = 'check' | |
| # DO NOT MODIFY | |
| VALID_VERSIONS = (10, 11, 12, 13,) | |
| VALID_SESSION_STATES = ('opened', 'closing_control') | |
| VALID_MODES = ('check', 'repair') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # FOR VERSION 12, 12.3, 13 | |
| # Set sessions ids between the brackets, separated by a coma | |
| # I.E. SESSION_ID = [12, 18, 132] or SESSION_ID = [4] | |
| SESSION_IDS = [] | |
| FIELDS_TO_DISPLAY_IN_CSV = [ # Comment the field you don't want to see | |
| 'name', | |
| 'price_unit', | |
| 'tax_is', | |
| 'tax_should_be', | |
| 'diff_tax', |