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

how we can get data from Inherited table.

i have one Inherited module.

_inherit = 'account.invoice' 

Now, i want to get filed 'Origin'  for Particular Invoice.

How it's possible.


頭像
捨棄

Your question is rather confusing. Are you asking to inherit the field 'Origin' to change some attribute? Are you asking to inherit the field 'Origin' on the view in order to perform actions on it? Are you asking to get the data from the field 'Origin' on an invoice or? Please add some more info / code.

yenthe,

i am  asking to get the data from the field 'origin'.
i have develop one inherit module and create one new ref = field.char,
on this field i want to assign value as in Origin field.
means  ref value = origin value.
 

On Fri, Apr 8, 2016 at 11:45 AM, Yenthe <yenthespam@gmail.com> wrote:

Your question is rather confusing. Are you asking to inherit the field 'Origin' to change some attribute? Are you asking to inherit the field 'Origin' on the view in order to perform actions on it? Are you asking to get the data from the field 'Origin' on an invoice or? Please add some more info / code.

--
Yenthe

Sent by Odoo S.A. using Odoo





最佳答案
def function_name (self,cr,uid,contex=None):
     account_obj = self.pool.get('account.invoice')
     account_search = account_obj.search(cr,uid,[])
     for account in account_obj(cr,uid,account_search):
         print account.origin
# or

def funcion_name (self,cr,uid,context=None):
    account_obj = self.pool.get('account.invoice')
    account = account_obj.browse(cr,uid,id_account_invoice)
    print account.origin

I hope it helps you. regards

頭像
捨棄
最佳答案

u are already inherit account.invoice, and why u create another field to get some field in same object?

u can rename the origin field and change with something that u need,

it can be different if that origin field will use in another object u can use self.pool.get and browse

頭像
捨棄

or in the new api: self.en['model.name'].search

相關帖文 回覆 瀏覽次數 活動
1
11月 22
2226
0
2月 21
1833
0
9月 24
140
2
12月 24
570
2
4月 25
536