2
我需要關於odoo中的錯誤的幫助。 我已經爲odoo中的圖像創建了模型和xml。如何在odoo中創建和顯示圖像
這是我的模型
class Test(osv.osv):
_name = "digital.test"
_description = "Test"
_columns = {
'Servicename': fields.char('Service Name'),
'prodescription': fields.html('Product description'),
'Subservicename': fields.char('Sub-Service Name'),
'subprodescription': fields.html('Product Desc.'),
}
# image: all image fields are base64 encoded and PIL-supported
image = openerp.fields.Binary("Photo", attachment=True,
help="This field holds the image used as photo for the test, limited to 1024x1024px.")
image_medium = openerp.fields.Binary("Medium-sized photo", attachment=True,
help="Medium-sized photo of the test. It is automatically "\
"resized as a 128x128px image, with aspect ratio preserved. "\
"Use this field in form views or some kanban views.")
image_small = openerp.fields.Binary("Small-sized photo", attachment=True,
help="Small-sized photo of the test. It is automatically "\
"resized as a 64x64px image, with aspect ratio preserved. "\
"Use this field anywhere a small image is required.")
def _get_default_image(self, cr, uid, context=None):
image_path = get_module_resource('mymodule', 'static/src/img', 'default_image.png')
return tools.image_resize_image_big(open(image_path, 'rb').read().encode('base64'))
defaults = {
'active': 1,
'image': _get_default_image,
'color': 0,
}
@api.model
def create(self, vals):
tools.image_resize_images(vals)
return super(digital.test, self).create(vals)
,這我的XML
<record id="view_test_form" model="ir.ui.view">
<field name="name">digital.test.form</field>
<field name="model">digital.test</field>
<field name="arch" type="xml">
<form string="Test">
<sheet>
<field name="image" widget='image' class="oe_avatar" options='{"preview_image":"image_medium"}'/>
<div class="oe_title">
<label for="Service Name" class="oe_edit_only"/>
<h1>
<field name="Servicename" placeholder="Service Name"/>
</h1>
</div>
<notebook>
<page string="Product Description">
<group string="Service Name">
<field name="prodescription" type="html"/>
</group>
<group string="Sub-Service Name">
<field name="Subservicename"/>
<field name="subprodescription" widget="html"/>
</group>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
但是,我的代碼是,當我創建這樣 enter image description here
我可以保存數據的新數據 錯誤,當我刪除@ api.model def創建 但是,我的圖像無法保存。
謝謝
是的,我錯了sintax。 Ty爲你的答案。 –