~peter-langenberg/openerp-belgium-localization/trunk

« back to all changes in this revision

Viewing changes to l10n_be_intrastat/models/company.py

  • Committer: Niels Huylebroeck
  • Date: 2013-01-18 13:08:15 UTC
  • Revision ID: nh@agaplan.eu-20130118130815-27n2jjdy2921ases
[MERGE] l10n_be_intrastat: merged the changes made by Noviat (l10n_be_intrastat) and Akretion (intrastat_base)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
            (2, '2. Waals gewest'),
11
11
            (3, '3. Brussels hoofdstedelijk gewest'),
12
12
            ], string='Gewest'),
 
13
        'data_source': fields.selection([
 
14
            ('move', 'Generate report from Stock Moves'),
 
15
            ('invoice', 'Generate report from Invoices'),
 
16
            ], string='Report Data Source', required=True),
13
17
        'intrastat_belgium_arrival': fields.boolean('Arrival Declaration', help="Is this company required to send arrival declarations ?"),
14
18
        'intrastat_belgium_departure': fields.boolean('Departure Declaration', help="Is this company required to send departure declarations ?"),
15
19
        'intrastat_belgium_arrival_extended': fields.boolean('Extended Arrival Declaration', help="Does this company require an extended arrival declaration ?"),
16
20
        'intrastat_belgium_departure_extended': fields.boolean('Extended Departure Declaration', help="Does this company require an extended departure declaration ?"),
17
21
    }
 
22
    
 
23
    _defaults = {
 
24
        'data_source': 'move',
 
25
    }
 
26
 
18
27
report_belgium_company()