RegOpz / RegOpzAPI

1 stars 3 forks source link

DocumentController.py - capture report not capturing all static values #9

Open RegOpz opened 7 years ago

RegOpz commented 7 years ago

Capture report not capturing all static values if no merged cell in the report. load_report_template method to include following statement to address this issue: Line 90: if len(rng_startcell) > 0 and cell_ref not in rng_startcell:

to be amended as: if (len(rng_startcell) > 0 and cell_ref not in rng_startcell) or len(rng_startcell)==0: