16 lines
545 B
Python
16 lines
545 B
Python
# -*- coding: utf-8 -*-
|
|
import logging
|
|
from odoo import models, fields, api, _
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class SfDemandPlanDetailWizard(models.TransientModel):
|
|
_name = 'sf.demand.plan.detail.wizard'
|
|
_description = u'需求计划详情向导'
|
|
|
|
demand_plan_line_ids = fields.Many2many(comodel_name="sf.production.demand.plan",
|
|
string="需求计划明细", readonly=True)
|
|
|
|
mrp_production_ids = fields.Many2many('mrp.production', string='关联制造订单', readonly=True)
|