跳至內容
選單
此問題已被標幟
1 回覆
23291 瀏覽次數

gentextfile = fields.Binary(string='Text File')


file = open("sampletext.txt", 'w')

file.write("Hello World")

file.close()


How can I save it to the Binary Field declared?

頭像
捨棄
最佳答案

Hello Dee Yoj,

Please check below code. I hope it will work.

E.g: 

Take two fields in .py file like below:

       import base64

        name : fields.Char(string='Name', size=64)

        gentextfile : fields.Binary('Click On Save As Button To Download File', readonly=True)

In .xml file:

                    <group>

                        <field name="name" invisible="1" />

                        <field name="gentextfile" filename="name"/>

                    </group>

write or Save your .txt file in binary field:

        file = open("sampletext.txt", "rb")

        out = file.read()

        file.close()

        gentextfile = base64.b64encode(out)

        name = 'sampletext.txt'

        OR

         record_set.write({'gentextfile': base64.b64encode(out), 'name': 'sampletext.txt'})

Thanks

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
2月 25
3484
0
5月 24
46
1
4月 24
3323
4
9月 23
4807
2
9月 23
7025