What I wanted is to parse the xml data using Element tree.
Can you give me some example on how to apply the etree?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- ลูกค้าสัมพันธ์
- e-Commerce
- ระบบบัญชี
- สินค้าคงคลัง
- PoS
- Project
- MRP
คำถามนี้ถูกตั้งค่าสถานะ
1
ตอบกลับ
4464
มุมมอง
Hi,
As per the etree code you can import the etree and finding of the xml arch, in those cases it will be using full.
import xml.etree.ElementTree as xee
from lxml import etree
view_id = self.env.ref('model.model_view_name')
view_arch = str(view_id.arch_base)
doc = xee.fromstring(view_arch)
field_list = []
field_list_1 = []
for tag in doc.findall('.//field'):
field_list.append(tag.attrib['name'])
if 'attrs' in tag.attrib or not 'invisible' in tag.attrib['attrs']:
field_list_1.append(tag.attrib['name'])
//You can add your own conditions here
model_id = self.env['ir.model'].sudo().search(
[('model', '=', 'model_name')])
return [('model_id', '=', model_id.id), ('state', '=', 'base'),
('name', 'in', field_list)]
Regards
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
|
1
ส.ค. 24
|
1474 | ||
|
1
มี.ค. 15
|
4625 | ||
|
0
ส.ค. 24
|
4 | ||
|
3
มี.ค. 24
|
26703 | ||
|
0
พ.ย. 16
|
5510 |