做个完结吧,odoo-bin.exe好像已经是删除了的(安装好后就是没有的)
sale_my用不了的问题,估计是我用记事本编辑的问题,编码格式不是utf8
用python编辑软件后就好了(编辑软件打开前边sale_my里的文件,,中文都是乱码)
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
    'name': 'sale_extension',
    'version': '12.0.1.0.0',
    'category': 'sale_extension',
    'description':'sale的from、tree模块显示内容的扩展',
    'sequence': 32,
    'license': 'AGPL-3',
    'depends': [
        'sale',
    ],
    'data': [
        'views/sale_order_extension.xml'
    ],
    'demo': [
    ],
    'installable': True,
    'auto_install': False,
    'application': False,
}