コード例 #1
0
 def __init__(self, pdf):
     render.__init__(self)
     self.pdf = pdf
     self.output_type = 'pdf'
コード例 #2
0
ファイル: report_soap.py プロジェクト: landoo-es/HAPPCC
 def __init__(self, pdf, doc_format='pdf'):
     render.__init__(self)
     self.content = pdf
     self.output_type = doc_format
コード例 #3
0
 def __init__(self, pdf):
     render.__init__(self)
     self.pdf = pdf
     self.output_type = 'pdf'
コード例 #4
0
ファイル: account_balance_txt.py プロジェクト: guzzi235/saas3
 def __init__(self, txt):
     render.__init__(self)
     self.txt = txt
     self.output_type = "txt"
コード例 #5
0
 def __init__(self, xls):
     render.__init__(self)
     self.xls = xls
     self.output_type = 'xls'
コード例 #6
0
ファイル: account_balance_xls.py プロジェクト: Nucleoos/saas3
 def __init__(self, xls):
     render.__init__(self)
     self.xls = xls
     self.output_type='xls'
コード例 #7
0
 def __init__(self, pdf, doc_format='pdf'):
     render.__init__(self)
     self.content = pdf
     self.output_type = doc_format
コード例 #8
0
ファイル: account_balance_txt.py プロジェクト: guzzi235/saas3
 def __init__(self, txt):
     render.__init__(self)
     self.txt = txt
     self.output_type = 'txt'