diff --git a/aps/__init__.py b/aps/__init__.py new file mode 100644 index 00000000..7a52ef17 --- /dev/null +++ b/aps/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import pre_init_hook +from .hooks import post_init_hook \ No newline at end of file diff --git a/aps/__manifest__.py b/aps/__manifest__.py new file mode 100644 index 00000000..eb4bdb8e --- /dev/null +++ b/aps/__manifest__.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-11-26 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo12在线用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/12.0/zh_CN/index.html + +# Odoo12在线开发者手册(长期更新) +# https://www.sunpop.cn/documentation/12.0/index.html + +# Odoo10在线中文用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "APS Advanced planning and scheduling,高级排产", + 'version': '11.19.04.18', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'https://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'price': 0.00, + 'currency': 'EUR', + 'images': ['static/description/banner.png'], + 'depends': [ + 'mrp', + ], + 'summary': """ + Normal APS + Odoo App of Sunpop.cn + """, + 'description': """ + 模块开发模板,目录结构与文件定义。 + """, + 'data': [ + # 'security/*.xml', + # 'views/*.xml', + # 'data/*.xml', + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'demo': [], + 'test': [], + 'css': [], + 'js': [], + 'pre_init_hook': 'pre_init_hook', + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/aps/hooks.py b/aps/hooks.py new file mode 100644 index 00000000..d2e1bafb --- /dev/null +++ b/aps/hooks.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-10-12 +# author: 广州尚鹏,https://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo在线中文用户手册(长期更新) +# https://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + +def pre_init_hook(cr): + pass + # cr.execute("") + +def post_init_hook(cr, registry): + pass + # cr.execute("") diff --git a/aps/i18n/zh_CN.po b/aps/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/aps/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-08 14:28+0000\n" +"PO-Revision-Date: 2018-01-08 14:28+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/aps/models/__init__.py b/aps/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/aps/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/aps/report/__init__.py b/aps/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/aps/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/aps/static/description/banner.png b/aps/static/description/banner.png new file mode 100644 index 00000000..25330384 Binary files /dev/null and b/aps/static/description/banner.png differ diff --git a/aps/static/description/banner2.png b/aps/static/description/banner2.png new file mode 100644 index 00000000..cf45ee4b Binary files /dev/null and b/aps/static/description/banner2.png differ diff --git a/aps/static/description/demo1.png b/aps/static/description/demo1.png new file mode 100644 index 00000000..31357af0 Binary files /dev/null and b/aps/static/description/demo1.png differ diff --git a/aps/static/description/demo2.png b/aps/static/description/demo2.png new file mode 100644 index 00000000..b105432d Binary files /dev/null and b/aps/static/description/demo2.png differ diff --git a/aps/static/description/icon.png b/aps/static/description/icon.png new file mode 100644 index 00000000..e940f442 Binary files /dev/null and b/aps/static/description/icon.png differ diff --git a/aps/static/description/index.html b/aps/static/description/index.html new file mode 100644 index 00000000..a272c9ee --- /dev/null +++ b/aps/static/description/index.html @@ -0,0 +1,74 @@ + + + + APS + Advanced planning and scheduling. Release soon + + Lastest update: v12.19.02.15 + + + + + + Key features: + + + + Put key function here. + + + + + + + + + + + + plan + + + + + + + + + + + + Technical Help & Support + + + + + For any type of technical help & support requests, Feel free to contact us + + guohuadeng@hotmail.com + + Via QQ: 300883 + + 300883@qq.com + + + + Visit our website for more support. + + https://www.sunpop.cn + + + + + More Powerful addons, Make your odoo very easy to use, easy customize: + Supop.cn Odoo Addons + + + + diff --git a/aps/static/img/icon_sunpop.png b/aps/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/aps/static/img/icon_sunpop.png differ diff --git a/aps/static/img/logo_sunpop.png b/aps/static/img/logo_sunpop.png new file mode 100644 index 00000000..bc32c24e Binary files /dev/null and b/aps/static/img/logo_sunpop.png differ