跳至内容
Odoo 菜单
  • 登录
  • 免费试用
  • 应用程序
    财务
    • 会计
    • 发票
    • 费用
    • 电子表格 (BI)
    • 文档
    • 电子签名
    销售
    • 客户关系管理
    • 销售
    • POS 销售点管理-零售
    • POS 销售点管理 - 餐厅
    • 订阅
    • 租赁
    网站
    • 网站设计
    • 电子商务
    • 博客
    • 论坛
    • 在线客服
    • 在线学习
    供应链
    • 库存
    • 制造
    • 产品生命周期
    • 采购
    • 维护保养
    • 品控
    人力资源
    • 员工
    • 招聘
    • 休假
    • 评价
    • 内部推荐
    • 车队
    营销
    • 社媒营销
    • 电邮营销
    • 短信营销
    • 近期活动
    • 营销自动化
    • 网上调查
    服务
    • 项目管理
    • 工时单
    • 现场服务
    • 服务台
    • 排期
    • 预约
    生产力
    • 讨论
    • 批核
    • IoT物联网
    • VoIP
    • 知识库
    • WhatsApp
    第三方应用软件 Odoo 定制 Odoo云端平台
  • 行业
    零售
    • 书店
    • 服装店
    • 家具店
    • 食品杂货店
    • 五金店
    • 玩具店
    餐饮与酒店服务
    • 酒吧及酒馆
    • 餐厅
    • 快餐
    • 民宿
    • 饮品分销商
    • 酒店
    房地产
    • 房地产代理
    • 建筑师事务所
    • 建造业
    • 地产管理
    • 园艺
    • 业主协会
    咨询
    • 会计师事务所
    • Odoo合作伙伴
    • 市场推广公司
    • 律师事务所
    • 人才招聘
    • 审核 & 认证
    制造
    • 纺织
    • 金属
    • 家具
    • 食品
    • 啤酒厂
    • 企业礼品
    保健与健身
    • 体育俱乐部
    • 眼镜店
    • 健身中心
    • 健康从业者
    • 药房
    • 发型屋
    商贸服务
    • 维修人员
    • IT 硬件及支持
    • 太阳能系统
    • 鞋匠
    • 清洁服务
    • 暖通空调服务
    其他
    • 非营利组织
    • 环境机构
    • 广告牌租赁
    • 摄影服务
    • 自行车租赁
    • 软件经销商
    浏览所有行业
  • 社区
    学习
    • 教学视频
    • 文档
    • 认证
    • 培训
    • 博客
    • 播客
    赋能教育
    • 教育计划
    • Scale Up! 商业游戏
    • 参观Odoo
    获取软件
    • 下载
    • 版本对比
    • 发布
    合作
    • Github
    • 论坛
    • 近期活动
    • 翻译
    • 成为合作伙伴
    • 合作伙伴服务
    • 注册您的会计事务所
    获取服务
    • 寻找合作伙伴
    • 查找会计服务
    • 预约顾问咨询
    • 安装及推行服务
    • 客户参考
    • 支持
    • 升级
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    获取演示
  • 定价
  • 技术支持

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • 客户关系管理
  • e-Commerce
  • 会计
  • 库存
  • PoS
  • 项目
  • MRP
All apps
只限注册用戶才可与社群互动。
所有帖文 人 徽章
标签 (查看所有)
odoo accounting v14 pos v15
关于此论坛区
只限注册用戶才可与社群互动。
所有帖文 人 徽章
标签 (查看所有)
odoo accounting v14 pos v15
关于此论坛区
帮助

[SOLVED] New API Search/Browse - how?

订阅

此帖文有活动时,接收通知

此问题已终结
searchbrowseodoo8.0newAPI
6 回复
38172 查看
形象
Dr Obx

Guys, I'm a beginner so sometimes I have a problem with some things. I would like to get a value from sale_order_line.

In my table I have a column named: item_location

How to get data from this column?

class sale_order_line(models.Model):
    _inherit = 'sale.order.line'

    item_location = fields.Char(compute='get_location', string = 'Item location', type='Char')

    def get_location(self):
        location = self.env['sale.order.line'].search([('product_id','=',self.product_id.id)])
        print ' Self product ID :', self.product_id.id# Ok
        print ' Self ID :', self.id # ok
        print ' Location ID :', location.id # ok
        print ' Location name :', location.item_location # False
        res = location.item_location # this is what I need

        return res

sale_order_line()

but I still missing something because I can't get a value from the item_location column.

How to do it with a new API ?

GOT IT!

You guys are right, I don't have to do it using Search or Browse in this case ;) because that field is available directly :)

Ii's another valuable lesson for me, THANK YOU GUYS


1
形象
丢弃
Dr Obx
编写者

I managed to make it works but for some reason I can't see it in order form(table), any ideas why ?

PY

(I edited your code you readability.)

Dr Obx
编写者

PY: Where ?

PY

just the display, your code, can't you see the code is now in a proper code block (pre tag) ? easier to read when well indented and all

Dr Obx
编写者

Yes I think everything is done correctly, I still cant see the content of 'location' field. But I can see "item_location" instead so 'location' is not required anymore ;) Thanks for help :)

形象
Axel Mendoza
最佳答案

Hi @Dr Obx

You need put the model of that query and the domain like:

location = self.env['sale.order.line'].search([('product_id','=',self.product_id.id)])

bolded are the changes to your code, the model is sale.order.line like every other api model method interaction and the domain need to be changed to pass exactly the id value of the product_id relation field because the domain parser will not do it for you, you need to pass exactly the value in the param #3 of the domain tuple.

Also if your item_location field is on the sale.order.line model you need to access it like:

location.item_location

if it's on the product.product model then you could get it (using your actual code) like:

location.product_id.item_location

but you could directly access the product if you don't need the sale.order.line changing your search like:

product = self.env['product.product'].search([('id','=',self.product_id.id)])
item_location = product.item_location

this last is guessing where is located the field item_location because was not clear to me in your answer

Hope this helps

********************************** Update*****************************************

Seeing your code changes seems that you are doing more than needed for get the item_location.

1- The item_location is on your sale.order.line so you could access it directly from the outside of the model, you don't need a computed field for that.

2- The search is not necessary because search usually is for get the ids and you already have the id, so a search with that domain will produce the same self.id value but with the browse applied so you could directly use the browse like:

location = self.env['sale.order.line'].browse(self.id)

But I repeat you could directly get the value from the outside without using a computed field. Also for the same thing there is a field definition way that will cause that Odoo get the value of others fields in the table or walking through many2one relations fields, like:

item_location = fields.Char(related='item_location', string = 'Item location')

And nothing more is needed

The thing appears to be that the sale order line doesn't have a value for the item_location field

6
形象
丢弃
Dr Obx
编写者

Hi Axel, I changed it a bit but it seems not working. I can browse the name, state etc but I can't get item_location. Field is in table 100% but for some reason i cant get the value from it ;(

from openerp import fields, tools, models, api, _

class sale_order_line(models.Model):
	_inherit = 'sale.order.line'
	item_location = fields.Char()
	location = fields.Char(compute='get_location', string = 'Location', type='Char')
	
	def get_location(self):
		location = self.env['sale.order.line'].search([('id','=',self.id)])
		print '== item location ==============================================================='
		print '   Self product ID   :', self.product_id.id
		print '   Product name      :', location.name
		print '   Location ID       :', location.id
		print '   Location name     :', location.item_location
		print '================================================================================'
		res = location.id
		return res
sale_order_line()
Result:
== item location ===============================================================
   Self product ID   : 694
   Product name      : Intel Celeron D 331 2.66GHz 256K FSB 533Mhz Skt LGA 775 pin SL7TV CPU Processor
   Location ID       : 425
   Location name     : False
================================================================================
Axel Mendoza

please see my answer update

Dr Obx
编写者

I can see it printed on screen but I can't see it in Odoo ...

Axel Mendoza

worked then?

Dr Obx
编写者

Yes Axel it worked but there was no data in table 'item_location' :) That's why I was getting 'False' instead of the actual location name :) But like I said, I can see it now on screen in CMD but it won't show location name in form ;(

形象
Anil Kesariya
最佳答案

DR Obx,


If you are calling your method on compute attribute, it will work like functional field.

This method will automatically load for sale order line model self, because you already using that method in same model so you don't need to call search method in sale.order line.


Here you go,

Do one thing,

set api.multi decorator on your method.

So, your method will look lik,

@api.multi
get_location(self):
for line in self:
#self will work for all sale order line you can directly check in line record, line itself will appear as browse record

Second note, if your sale order line does not having any location value in that case of course it will give you false value, you have to put if condition for that, if you location than move further for next execution.

Hope this might help you.


Regards,

Anil.

4
形象
丢弃
Dr Obx
编写者

Thank you Anil, So I don't need search just pick self.item_location ? :)

喜欢讨论吗?不要只阅读,加入进来!

立即创建账户,享受专属功能,与我们的精彩社区互动!

注册
相关帖文 回复 查看 活动
Search function getting right value in many2one field? 已解决
function search browse
形象
形象
2
10月 15
9630
why ORM methods not working properly in custom module
search browse ORM v15
形象
形象
1
3月 22
3702
What is 'better': search or browse? 已解决
v7 orm search browse
形象
形象
1
12月 23
21753
fulltext search FTS migrate to odoo 8.0, full text search support in forum 已解决
search forum fulltext odoo8.0
形象
形象
2
3月 17
10072
group_by filter doesn't work
search group_by search_view odoo8.0
形象
0
3月 17
4140
社区
  • 教学视频
  • 文档
  • 论坛
开源
  • 下载
  • Github
  • Runbot
  • 翻译
服务
  • Odoo.sh 托管
  • 支持
  • 升级
  • 自定义开发服务
  • 教育
  • 查找会计服务
  • 寻找合作伙伴
  • 成为合作伙伴
关于我们
  • 我们的公司
  • 品牌资产
  • 联系我们
  • 招聘
  • 近期活动
  • 播客
  • 博客
  • 客户
  • 法律 • 隐私
  • 安全
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo致力于为企业管理提供高效智能的开源解决方案,是全球业内高速成长的软件服务商之一,逾七百五十万用户选择Odoo进行数字化升级。通过一系列全业务链覆盖、高度集成、简单易用的商业应用,助力企业实现信息化改革、降本增效并释放公司增长潜力。

Odoo独特的价值在于是一款非常容易使用又完全集成的应用。

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now