구매 주문 클래스를 두 가지 유형으로 상속해야합니다. 하나는 으로 만 판매되는 제품의 구매 주문이며 다른 하나는 으로 구입할 수있는 제품의 구매 주문입니다.openerp에서 클래스를 여러 번 상속하는 방법은 무엇입니까?
코어 purchase.order
개체를 두 개의 새로운 사용자 지정 개체로 상속하려고했습니다. 그러나 그것은 작동하지 않습니다.
내 코드가
입니다from osv import fields, osv
class purchase_order_saleok(osv.osv):
_inherit = 'purchase.order'
_name = 'purchase.order.saleok'
STATE_SELECTION = [
('draft', 'Draft PO'),
('pending', 'Pending'),
('sent', 'RFQ Sent'),
('confirmed', 'Waiting Approval'),
('approved', 'Confirmed'),
('except_picking', 'Shipping Exception'),
('except_invoice', 'Invoice Exception'),
('done', 'Ordered'),
('cancel', 'Cancelled')]
_columns = {
'state': fields.selection(
STATE_SELECTION,
'Status',
readonly=True,
help="The status of the purchase order or the quotation request. A quotation is a purchase order in a 'Draft' status. Then the order has to be confirmed by the user, the status switch to 'Confirmed'. Then the supplier must confirm the order to change the status to 'Approved'. When the purchase order is paid and received, the status becomes 'Done'. If a cancel action occurs in the invoice or in the reception of goods, the status becomes in exception.",
select=True
)
}
purchase_order_saleok()
class purchase_order_line_saleok(osv.osv):
_inherit = 'purchase.order.line'
_name = 'purchase.order.line.saleok'
purchase_order_line_saleok()
누군가가 나를 도울 수 있습니까?
코드에서 작동하지 않는 항목은 무엇입니까? OpenERP가 데이터베이스에 purchase_order_saleok 테이블을 생성합니까? purchase_order 테이블과 동일합니까? –
데이터베이스에 테이블이 없습니다. – samaswin
내 서버 (6.1)에서 제대로 작동합니다. 그것은'purchase_order_saleok' 테이블을 만들었지 만 하나 이상의 컬럼을 추가 할 때 두번째 테이블이 생성 될 것입니다. 파일을'__init __. py' 파일에 추가 했습니까? 서버와 업데이트 된 모듈을 다시 시작 했습니까? –