Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
11946 มุมมอง

I have a binary field, and I want to allow the user to upload only zip files to it. I'm trying to do it this way:

source_file = fields.Binary('Source File', filters='*.zip')

But I've read that this only worked for the old GTK Client. Is there a great way to manage this on version 8?

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

I'm with the same problem and don't find a solution as simple as the one you mention. But there is a solution as i think simple enough : use the api.constrains. Here is my modus operandi:


1) I save the file's name

My model:

files = fields.Binary(string="Download Zip")
filename = fields.Char()

My view:

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


2) I use the api.constrains to verify the extension

@api.one
@api.constrains('filename')
def _check_filename(self):
    if self.files:
        if not self.filename:
	    raise exceptions.ValidationError(_("There is no file"))
	else:
	    # Check the file's extension
	    tmp = self.filename.split('.')
	    ext = tmp[len(tmp)-1]
	    if ext != 'zip':
	        raise exceptions.ValidationError(_("The file must be a zip file"))


I know, it's not a very beautiful way to do it but it's an alternative solution to your problem.

Hope that help you.

อวตาร
ละทิ้ง

Yes nice ....post its working...

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ส.ค. 17
7618
0
เม.ย. 18
5535
0
มิ.ย. 16
3773
1
มี.ค. 15
7085
0
ก.ค. 25
657