[10] FIX format parameter (#84)

* FIX format parameter

To be able to print files in raw format it's needed to set this parameter.

Previous code was not able to print raw files, but it didn't get error because 'format' used on line 107 is assumed as a format funtion, because format parameter was not on this scope.

* FIX pep8
This commit is contained in:
Angel Moya - PESOL
2017-04-11 19:31:32 +02:00
committed by trisdoan
parent ae358a2e11
commit b2a7527b82

View File

@@ -95,10 +95,11 @@ class PrintingPrinter(models.Model):
finally:
os.close(fd)
return self.print_file(file_name, report=report, copies=copies)
return self.print_file(
file_name, report=report, copies=copies, format=format)
@api.multi
def print_file(self, file_name, report=None, copies=1):
def print_file(self, file_name, report=None, copies=1, format=None):
""" Print a file """
self.ensure_one()