需求计划详情

This commit is contained in:
guanhuan
2025-07-15 11:51:14 +08:00
parent e5404efb60
commit 0c3407572f
3 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details. # Part of Odoo. See LICENSE file for full copyright and licensing details.
# jikimo_printing
{ {
'name': '机企猫智能工厂 需求计划', 'name': '机企猫智能工厂 需求计划',
'version': '1.1', 'version': '1.1',
@@ -11,7 +10,7 @@
""", """,
'category': 'sf', 'category': 'sf',
'website': 'https://www.sf.jikimo.com', 'website': 'https://www.sf.jikimo.com',
'depends': ['sf_plan' ], 'depends': ['sf_plan','jikimo_printing'],
'data': [ 'data': [
'security/ir.model.access.csv', 'security/ir.model.access.csv',
'data/stock_route_group.xml', 'data/stock_route_group.xml',

View File

@@ -901,3 +901,6 @@ class SfProductionDemandPlan(models.Model):
'demand_plan_line_id': self.id 'demand_plan_line_id': self.id
} }
return values return values
def button_plan_detail(self):
pass

View File

@@ -108,6 +108,9 @@
class="btn-primary" class="btn-primary"
attrs="{'invisible': [('hide_release_production_order', '=', False)]}" attrs="{'invisible': [('hide_release_production_order', '=', False)]}"
/> />
<button string="详情" name="button_plan_detail" type="object"
class="btn-primary"
/>
</tree> </tree>
</field> </field>
</page> </page>