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

In odoo v10, use_tasks boolean field is used to AccountAnalyticAccount class file but removed that field to AccountAnalyticAccount class file.(odoo v11)

Let me know why removed use_tasks boolean field in odoo v11.


Code V10:

class AccountAnalyticAccount(models.Model):

    _inherit = 'account.analytic.account'

    _description = 'Analytic Account'


    use_tasks = fields.Boolean(string='Use Tasks', help="Check this box to manage internal activities through this project")

    company_uom_id = fields.Many2one('product.uom', related='company_id.project_time_mode_id', string="Company UOM")

    project_ids = fields.One2many('project.project', 'analytic_account_id', string='Projects')

    project_count = fields.Integer(compute='_compute_project_count', string='Project Count')


Code v11:

class AccountAnalyticAccount(models.Model):

    _inherit = 'account.analytic.account'

    _description = 'Analytic Account'


    company_uom_id = fields.Many2one('product.uom', related='company_id.project_time_mode_id', string="Company UOM")

    project_ids = fields.One2many('project.project', 'analytic_account_id', string='Projects')

    project_count = fields.Integer(compute='_compute_project_count', string='Project Count')


아바타
취소
베스트 답변

In the "Analytic Accounts" training with v.10 this flag creates automatically a project.

In version 11, if the project is not automatically created, what is missing? if the flag is no longer available.

I guess, it still should be working like that, isn't it?

Thanks,

Sam

아바타
취소
베스트 답변

If you have noticed now on wards Odoo haven't project issue. So by default only Tasks. And it make sense to by default activate tasks.

아바타
취소
관련 게시물 답글 화면 활동
1
3월 23
2354
3
8월 19
12783
READONLY PRICE UNIT 해결 완료
7
7월 19
4753
0
6월 19
3128
0
3월 19
5250