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

I create a custom module which create a function in product module 

to import products from cvs file and it work fine in community version 

import csv
from odoo import api, models

class ProductProduct(models.Model):
_inherit = 'product.template'

def process_csv_file(self, file_path):
# and rest of code

but when I convert it to zip and import it in enterprise version
I get this Error

AttributeError: 'product.template' object has no attribute 'process_csv_file'

so why this error



아바타
취소
베스트 답변

Hi amr,

Add depends as product in __manifest__.py file, then try to import zip.

Thanks!

아바타
취소
관련 게시물 답글 화면 활동
4
10월 20
9014
3
2월 24
10453
1
6월 23
3632
0
2월 23
2718
0
1월 24
3836