智能工厂的销售模块添加业务平台订单对象
This commit is contained in:
@@ -1 +1,2 @@
|
|||||||
# -*-coding:utf-8-*-
|
# -*-coding:utf-8-*-
|
||||||
|
from . import models
|
||||||
|
|||||||
27
sf_bf_connect/__manifest__.py
Normal file
27
sf_bf_connect/__manifest__.py
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
{
|
||||||
|
'name': '机企猫智能工厂 同步模块',
|
||||||
|
'version': '1.0',
|
||||||
|
'summary': '智能工厂同步模块',
|
||||||
|
'sequence': 1,
|
||||||
|
'description': """
|
||||||
|
在本模块,同步资源库
|
||||||
|
""",
|
||||||
|
'category': 'YZ',
|
||||||
|
'website': 'https://www.sf.cs.jikimo.com',
|
||||||
|
'depends': ['account', 'sf_base', 'base'],
|
||||||
|
'data': [
|
||||||
|
'views/sf_sync_config_settings_views.xml',
|
||||||
|
'data/sf_cron.xml'
|
||||||
|
|
||||||
|
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
],
|
||||||
|
'installable': True,
|
||||||
|
'application': False,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
3
sf_bf_connect/models/__init__.py
Normal file
3
sf_bf_connect/models/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# from . import sf_process_order
|
||||||
|
|
||||||
|
|
||||||
39
sf_bf_connect/models/sf_process_order.py
Normal file
39
sf_bf_connect/models/sf_process_order.py
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
from odoo import models,fields
|
||||||
|
from odoo.exceptions import ValidationError
|
||||||
|
|
||||||
|
|
||||||
|
class Order(models.Model):
|
||||||
|
_name = 'sf.order'
|
||||||
|
|
||||||
|
_inherit = ['portal.mixin', 'mail.thread', 'mail.activity.mixin', 'utm.mixin']
|
||||||
|
_description = '业务平台订单'
|
||||||
|
|
||||||
|
order_number = fields.Char('订单号')
|
||||||
|
date_order = fields.Datetime('订购日期')
|
||||||
|
validity_date = fields.Date('到期')
|
||||||
|
partner_id = fields.Many2one(
|
||||||
|
'res.partner', string='客户',
|
||||||
|
domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]", )
|
||||||
|
|
||||||
|
sale_order_template_id = fields.Many2one('sf.order.template', '报价单模板')
|
||||||
|
pricelist_id = fields.Many2one('sf.pricelist', string='付款条款', )
|
||||||
|
deadline_of_delivery= fields.Datetime('交货截止日期')
|
||||||
|
order_line = fields.One2many('sale.order.line', 'order_id', string='Order Lines', states={'cancel': [('readonly', True)], 'done': [('readonly', True)]}, copy=True, auto_join=True)
|
||||||
|
|
||||||
|
|
||||||
|
class OrderTemplate(models.Model):
|
||||||
|
_name = "sf.order.template"
|
||||||
|
_description = "报价单模板"
|
||||||
|
|
||||||
|
name = fields.Char('名称', required=True)
|
||||||
|
active = fields.Boolean('有效', default=True)
|
||||||
|
|
||||||
|
|
||||||
|
class Pricelist(models.Model):
|
||||||
|
_name = "sf.pricelist"
|
||||||
|
_description = "付款条款"
|
||||||
|
|
||||||
|
name = fields.Char('名称')
|
||||||
|
active = fields.Boolean('有效', default=True)
|
||||||
|
|
||||||
|
|
||||||
20
sf_bf_connect/models/sf_process_order_line.py
Normal file
20
sf_bf_connect/models/sf_process_order_line.py
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
|
from datetime import timedelta
|
||||||
|
|
||||||
|
from odoo import api, fields, models, _
|
||||||
|
from odoo.exceptions import UserError
|
||||||
|
from odoo.tools.misc import get_lang
|
||||||
|
from odoo.osv import expression
|
||||||
|
from odoo.tools import float_is_zero, float_compare, float_round
|
||||||
|
|
||||||
|
|
||||||
|
class OrderLine(models.Model):
|
||||||
|
_name = 'sf.order.line'
|
||||||
|
_description = '订单行'
|
||||||
|
|
||||||
|
order_id = fields.Many2one('sf.order')
|
||||||
|
name = fields.Text(string='说明', required=True)
|
||||||
|
product_uom_qty = fields.Float('单价')
|
||||||
|
|
||||||
39
sf_bf_connect/views/bf_process_order_view.xml
Normal file
39
sf_bf_connect/views/bf_process_order_view.xml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<record model="ir.actions.act_window" id="action_sale_process_order">
|
||||||
|
<field name="name">业务平台订单</field>
|
||||||
|
<field name="res_model">sale.order</field>
|
||||||
|
<field name="view_mode">tree,form,pivot,graph</field>
|
||||||
|
<field name="domain">[]</field>
|
||||||
|
<field name="context">{}</field>
|
||||||
|
<field name="help" type="html">
|
||||||
|
<p class="o_view_nocontent_smiling_face">
|
||||||
|
[业务平台订单] 还没有哦!点左上角的[创建]按钮,沙发归你了!
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- <record id="view_sf_bfm_order_form" model="ir.ui.view">-->
|
||||||
|
<!-- <field name="name">sf.order.form</field>-->
|
||||||
|
<!-- <field name="model">sf.order</field>-->
|
||||||
|
<!-- <field name="arch" type="xml">-->
|
||||||
|
<!-- <form string="Sales Order" class="o_sale_order" js_class="sale_discount_form">-->
|
||||||
|
<!-- </form>-->
|
||||||
|
<!-- </field>-->
|
||||||
|
<!-- </record>-->
|
||||||
|
|
||||||
|
<menuitem id="sale_business_process_order_menu"
|
||||||
|
name="业务平台订单"
|
||||||
|
parent="sale.sale_order_menu"
|
||||||
|
action="action_sale_process_order"
|
||||||
|
sequence="2"
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
Reference in New Issue
Block a user