콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
6 답글
3328 화면

What is 'states' used in the following definition in the class AccountInvoice?

partner_bank_id = fields.Many2one('res.partner.bank', string='Bank Account',
        help='Bank Account Number to which the invoice will be paid. A Company bank account if this is a Customer Invoice or Vendor Refund, otherwise a Partner bank account number.',
        readonly=True, states={'draft': [('readonly', False)]})

As I understand the field must be readonly except when the field 'states' is equal to 'draft' but this class has not got the field 'states'. Or am I wrong?


And I want to change partner_bank_id field of account.invoice to be writable but it does not work, the field stays the same.

# -*- coding: utf-8 -*-
from openerp import api, fields, models, _
class AccountInvoice(models.Model):
    _inherit = "account.invoice"
    partner_bank_id = fields.Many2one('res.partner.bank', string='Account',readonly=False)
아바타
취소

partner_bank_id is invisible on the form.

Are you sure you don't want to modify the journal_id field?

작성자

I added it to my form and want to edit.

작성자

Thanks a lot to for help.

Sorry I am not sure I am seeing the whole picture. What functionality are you trying to achieve? Is it the ability to add a bank account to a partner via the invoice form or is it the ability to select the bank account for a partner from multiple configured?

Also, what does the view definition look like? Perhaps you have the partner_bank_id field twice?

작성자

I want to choose the bank account to print it in an invoice.

작성자

Yeh, the partner_bank_id field is already in the invoice_supplier_form on 'other info' page.

Fields don't work correctly if they are visible more than once on a form. Have you tried to show the field only once?

작성자

Everything works perfectly. Thanks.

베스트 답변

Hi,

States works with the special field state.  Try this

partner_bank_id = fields.Many2one('res.partner.bank', string='Account',readonly=False, states={})


and try to restart and upgrade your modules ...

Hope this could helps



아바타
취소

FYI, You should only need to modify the parts of the field that you want to change.

i.e. partner_bank_id = fields.Many2one(readonly=False, states={})

should be enough.

작성자

I'm confused. I added just the partner_bank_id field to the sale invoice form and any value was not stored in this field despite my invoice was 'draft'.

The partner_bank_id field is mentioned in the 'create' method so I think nothing works because of this.

작성자

Thanks a lot to for help.