diff --git a/app_account_invoice_product_multi_add/__init__.py b/app_account_invoice_product_multi_add/__init__.py new file mode 100644 index 00000000..c6f04b45 --- /dev/null +++ b/app_account_invoice_product_multi_add/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +from . import controllers +from . import models +from . import ir +from . import res \ No newline at end of file diff --git a/app_account_invoice_product_multi_add/__manifest__.py b/app_account_invoice_product_multi_add/__manifest__.py new file mode 100644 index 00000000..f9ee5768 --- /dev/null +++ b/app_account_invoice_product_multi_add/__manifest__.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-20 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# Copyright (C) 2009~2023 odooAi.cn + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +############################################################################## +# Copyright (C) 2009-TODAY odooAi.cn Ltd. https://www.odooai.cn +# Author: Ivan Deng,300883@qq.com +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# See . +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +############################################################################## + +{ + 'name': "App Account Invoice Product Multi Batch Add", + 'version': '16.23.10.20', + 'author': 'odooai.cn', + 'category': 'Base', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'price': 0.00, + 'currency': 'USD', + 'summary': """ + App Account Invoice Product Multi Batch Add + Odoo App of odooai.cn + """, + 'description': """ + App Account Invoice Product Multi Add + 1. One Click to add multi product to Account Invoice. + 2. All the product can filter and group. + 客户收据与供应商帐单批量增加产品 + 1. 可以一键快速将多个产品加到客户收据与供应商帐单中 + 2. 可对产品进行过滤、分组,然后批量加入 + """, + 'depends': [ + # 'app_web_one2many_multi_add', + 'account', + ], + 'images': ['static/description/account1.gif'], + 'data': [ + 'views/account_move_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': None, + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_account_invoice_product_multi_add/controllers/__init__.py b/app_account_invoice_product_multi_add/controllers/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_invoice_product_multi_add/controllers/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_invoice_product_multi_add/i18n/fr.po b/app_account_invoice_product_multi_add/i18n/fr.po new file mode 100644 index 00000000..a63c0402 --- /dev/null +++ b/app_account_invoice_product_multi_add/i18n/fr.po @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * app_account_invoice_product_multi_add +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-14 16:06+0000\n" +"PO-Revision-Date: 2021-07-05 16:06+0000\n" +"Last-Translator: remi-filament\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: app_account_invoice_product_multi_add +#: model_terms:ir.ui.view,arch_db:app_account_invoice_product_multi_add.app_invoice_form +#: model_terms:ir.ui.view,arch_db:app_account_invoice_product_multi_add.app_invoice_supplier_form +msgid "Multi Add Line" +msgstr "Ajouter plusieurs lignes" diff --git a/app_account_invoice_product_multi_add/i18n/zh_CN.po b/app_account_invoice_product_multi_add/i18n/zh_CN.po new file mode 100644 index 00000000..b22b9ac4 --- /dev/null +++ b/app_account_invoice_product_multi_add/i18n/zh_CN.po @@ -0,0 +1,23 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * app_account_invoice_product_multi_add +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0+e-20190301\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-14 16:06+0000\n" +"PO-Revision-Date: 2019-03-14 16:06+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" + +#. module: app_account_invoice_product_multi_add +#: model_terms:ir.ui.view,arch_db:app_account_invoice_product_multi_add.app_invoice_form +#: model_terms:ir.ui.view,arch_db:app_account_invoice_product_multi_add.app_invoice_supplier_form +msgid "Multi Add Line" +msgstr "批量添加" + diff --git a/app_account_invoice_product_multi_add/ir/__init__.py b/app_account_invoice_product_multi_add/ir/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_invoice_product_multi_add/ir/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_invoice_product_multi_add/models/__init__.py b/app_account_invoice_product_multi_add/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_invoice_product_multi_add/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_invoice_product_multi_add/report/__init__.py b/app_account_invoice_product_multi_add/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_account_invoice_product_multi_add/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_account_invoice_product_multi_add/res/__init__.py b/app_account_invoice_product_multi_add/res/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_account_invoice_product_multi_add/res/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_account_invoice_product_multi_add/static/description/account1.gif b/app_account_invoice_product_multi_add/static/description/account1.gif new file mode 100644 index 00000000..ed6ad818 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/account1.gif differ diff --git a/app_account_invoice_product_multi_add/static/description/banner.gif b/app_account_invoice_product_multi_add/static/description/banner.gif new file mode 100644 index 00000000..3796d869 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/banner.gif differ diff --git a/app_account_invoice_product_multi_add/static/description/banner.png b/app_account_invoice_product_multi_add/static/description/banner.png new file mode 100644 index 00000000..8b958c64 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/banner.png differ diff --git a/app_account_invoice_product_multi_add/static/description/cnreadme.jpg b/app_account_invoice_product_multi_add/static/description/cnreadme.jpg new file mode 100644 index 00000000..2be54766 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/cnreadme.jpg differ diff --git a/app_account_invoice_product_multi_add/static/description/example.png b/app_account_invoice_product_multi_add/static/description/example.png new file mode 100644 index 00000000..27ff6d0f Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/example.png differ diff --git a/app_account_invoice_product_multi_add/static/description/guide1.jpg b/app_account_invoice_product_multi_add/static/description/guide1.jpg new file mode 100644 index 00000000..0eb8ddee Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/guide1.jpg differ diff --git a/app_account_invoice_product_multi_add/static/description/icon.png b/app_account_invoice_product_multi_add/static/description/icon.png new file mode 100644 index 00000000..dfb3780c Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/icon.png differ diff --git a/app_account_invoice_product_multi_add/static/description/index.html b/app_account_invoice_product_multi_add/static/description/index.html new file mode 100644 index 00000000..0fa87088 --- /dev/null +++ b/app_account_invoice_product_multi_add/static/description/index.html @@ -0,0 +1,132 @@ +
+
+

Account Invoice Product Multi Add

+

One Click to add multi product to Account Customer Invoice, Vendor Bill.

+

Important: This app is depends on a Paid App. + app_web_one2many_multi_add +

+
+
+

One Click to add multi product to Account Customer Invoice, Vendor Bill.

+
+
+ +
+
+
+

You may also like these free Apps for odoo.

+
    +
  • 1. One Click to add multi product to Sale Order. + Free Download from here.
  • +
  • 2. One Click to add multi product to Purchase Order. + Free Download from here.
  • +
  • 3. One Click to add multi product to MRP Bom. + Free Download from here.
  • +
  • 4. One Click to add multi product to Stock Picking Order. + Free Download from here.
  • +
  • 5. One Click to add multi product to Account Customer Invoice, Vendor Bill. + Free Download from here.
  • +
  • 6. You can also make any one2many field to get this feature by config the xml.
  • +
  • 7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order
  • +
+
+ +
+
+

Easy to Use. Click "Multi Add Items" in the one2many tree view.

+
+

Step1. Click "Multi Add Items" in any order form.

+ +
+

Step2. Select product (or any item you setup in xml).

+ +
+

Step3. Click "Select", then all product you select would add to the order.

+ +
+
+
+
+
+

1. One Click to add multi product to Sale Order.

+
+
+ +
+
+
+
+
+

2. One Click to add multi product to Purchase Order.

+
+
+ +
+
+
+
+
+

3. One Click to add multi product to MRP Bom.

+
+
+ +
+
+
+
+
+

4. One Click to add multi product to Stock Picking Order.

+
+
+ +
+
+
+
+
+

6. You can also make any one2many field to get this feature by config the xml.

+
+
+

Check this example.

+ +
+
+
+
+ + +
+
+
+

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + odoo@china.com +

+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+

https://www.odooai.cn

+
+
+
+
+ diff --git a/app_account_invoice_product_multi_add/static/description/mrp1.gif b/app_account_invoice_product_multi_add/static/description/mrp1.gif new file mode 100644 index 00000000..3fb5a814 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/mrp1.gif differ diff --git a/app_account_invoice_product_multi_add/static/description/purchase1.gif b/app_account_invoice_product_multi_add/static/description/purchase1.gif new file mode 100644 index 00000000..43cd2a3b Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/purchase1.gif differ diff --git a/app_account_invoice_product_multi_add/static/description/sale1.gif b/app_account_invoice_product_multi_add/static/description/sale1.gif new file mode 100644 index 00000000..f8db4f7d Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/sale1.gif differ diff --git a/app_account_invoice_product_multi_add/static/description/stock1.gif b/app_account_invoice_product_multi_add/static/description/stock1.gif new file mode 100644 index 00000000..debbca34 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/stock1.gif differ diff --git a/app_account_invoice_product_multi_add/static/description/use1.jpg b/app_account_invoice_product_multi_add/static/description/use1.jpg new file mode 100644 index 00000000..dc70f00f Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/use1.jpg differ diff --git a/app_account_invoice_product_multi_add/static/description/use2.jpg b/app_account_invoice_product_multi_add/static/description/use2.jpg new file mode 100644 index 00000000..74e49c8d Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/use2.jpg differ diff --git a/app_account_invoice_product_multi_add/static/description/use3.jpg b/app_account_invoice_product_multi_add/static/description/use3.jpg new file mode 100644 index 00000000..541828c1 Binary files /dev/null and b/app_account_invoice_product_multi_add/static/description/use3.jpg differ diff --git a/app_account_invoice_product_multi_add/views/account_move_views.xml b/app_account_invoice_product_multi_add/views/account_move_views.xml new file mode 100644 index 00000000..8e892a9f --- /dev/null +++ b/app_account_invoice_product_multi_add/views/account_move_views.xml @@ -0,0 +1,19 @@ + + + + + app.account.move.form + account.move + + + + + + + + + diff --git a/app_chatgpt/__manifest__.py b/app_chatgpt/__manifest__.py index 8cad6652..36a5a5c1 100644 --- a/app_chatgpt/__manifest__.py +++ b/app_chatgpt/__manifest__.py @@ -10,7 +10,7 @@ { 'name': 'ChatGPT4, China Ali,AiGC Center.Ai服务中心,聚合全网Ai', - 'version': '16.23.10.17', + 'version': '16.23.10.19', 'author': 'odooai.cn', 'company': 'odooai.cn', 'maintainer': 'odooai.cn', diff --git a/app_chatgpt/data/user_partner_data.xml b/app_chatgpt/data/user_partner_data.xml index bc5242bb..9c52057f 100644 --- a/app_chatgpt/data/user_partner_data.xml +++ b/app_chatgpt/data/user_partner_data.xml @@ -3,7 +3,7 @@ ChatGPT odoo - + chatgpt@example.com @@ -16,7 +16,7 @@ ChatGPT Coding - + @@ -31,7 +31,7 @@ ChatGPT Finance - + diff --git a/app_hr_ztree/__init__.py b/app_hr_ztree/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_hr_ztree/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_hr_ztree/__manifest__.py b/app_hr_ztree/__manifest__.py new file mode 100644 index 00000000..35faf405 --- /dev/null +++ b/app_hr_ztree/__manifest__.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-23 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +# Odoo13在线用户手册(长期更新) +# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html + +# Odoo13在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/13.0/index.html + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "App HR department ztree, parent children tree", + 'version': '16.23.10.23', + 'author': 'odooai.cn', + 'category': 'Base', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Use for parent children tree list select navigator. hr department employee tree. + ztree widget. + """, + 'description': """ + zTree widget. + Advance search with real parent children tree, ListView or KanbanView , + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'hr', + ], + 'images': ['static/description/banner.gif'], + 'data': [ + 'views/hr_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_hr_ztree/hooks.py b/app_hr_ztree/hooks.py new file mode 100644 index 00000000..4639ca91 --- /dev/null +++ b/app_hr_ztree/hooks.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-10-12 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +# Odoo13在线用户手册(长期更新) +# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html + +# Odoo13在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/13.0/index.html + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +def post_init_hook(cr, pool): + pass + # cr.execute("") diff --git a/app_hr_ztree/i18n/zh_CN.po b/app_hr_ztree/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_hr_ztree/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/app_hr_ztree/models/__init__.py b/app_hr_ztree/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_hr_ztree/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_hr_ztree/report/__init__.py b/app_hr_ztree/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_hr_ztree/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_hr_ztree/static/description/banner.gif b/app_hr_ztree/static/description/banner.gif new file mode 100644 index 00000000..ac3c0327 Binary files /dev/null and b/app_hr_ztree/static/description/banner.gif differ diff --git a/app_hr_ztree/static/description/demo1.jpg b/app_hr_ztree/static/description/demo1.jpg new file mode 100644 index 00000000..fd538628 Binary files /dev/null and b/app_hr_ztree/static/description/demo1.jpg differ diff --git a/app_hr_ztree/static/description/demo11.jpg b/app_hr_ztree/static/description/demo11.jpg new file mode 100644 index 00000000..72ad356b Binary files /dev/null and b/app_hr_ztree/static/description/demo11.jpg differ diff --git a/app_hr_ztree/static/description/demo12.jpg b/app_hr_ztree/static/description/demo12.jpg new file mode 100644 index 00000000..ecc58186 Binary files /dev/null and b/app_hr_ztree/static/description/demo12.jpg differ diff --git a/app_hr_ztree/static/description/demo2.jpg b/app_hr_ztree/static/description/demo2.jpg new file mode 100644 index 00000000..b856e71d Binary files /dev/null and b/app_hr_ztree/static/description/demo2.jpg differ diff --git a/app_hr_ztree/static/description/demo3.jpg b/app_hr_ztree/static/description/demo3.jpg new file mode 100644 index 00000000..e82b0990 Binary files /dev/null and b/app_hr_ztree/static/description/demo3.jpg differ diff --git a/app_hr_ztree/static/description/demo4.jpg b/app_hr_ztree/static/description/demo4.jpg new file mode 100644 index 00000000..4a4abce1 Binary files /dev/null and b/app_hr_ztree/static/description/demo4.jpg differ diff --git a/app_hr_ztree/static/description/demo5.jpg b/app_hr_ztree/static/description/demo5.jpg new file mode 100644 index 00000000..849b7841 Binary files /dev/null and b/app_hr_ztree/static/description/demo5.jpg differ diff --git a/app_hr_ztree/static/description/icon.png b/app_hr_ztree/static/description/icon.png new file mode 100644 index 00000000..57e223d0 Binary files /dev/null and b/app_hr_ztree/static/description/icon.png differ diff --git a/app_hr_ztree/static/description/index.html b/app_hr_ztree/static/description/index.html new file mode 100644 index 00000000..26bb86a6 --- /dev/null +++ b/app_hr_ztree/static/description/index.html @@ -0,0 +1,181 @@ +
+
+

App ztree widget, for parent children tree list. Demo for hr department employee

+

Very useful for parent child relationship, like product category, stock location, hr department

+
+
+ +
+
+
+
+ Key features: +
    +
  • + + Easy to make custom parent children tree. +
  • +
  • + + Free to Use in product category. +
  • +
  • + + Free to Use in stock location. +
  • +
  • + + Free to Use in hr department, employee. +
  • +
  • + + It's a widget, you can use it in anywhere in odoo. +
  • +
+
+
+ + + + Extend features. superbar advance search navigator + + +
    +
  • + + Easy to navigate product, employee in tree or kanban view. +
  • +
+
+ +
+
+
+ +
+
+

Use in hr department.

+
+ +
+
+
+ +
+
+

Use in hr employee.

+
+ +
+
+
+ +
+
+

Use in product.

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in stock location.

+
+ +
+
+
+ +
+
+

 

+

(!Need extra module and pay, release soon)Easy to navigator.

+

Product, employee in kanban view

+
+ +
+
+
+ +
+
+

(!Need extra module and pay, release soon)List view

+
+ +
+
+
+ +
+
+

Easy to setup just use widget='widget_select'. like this

+
+ +
+


Use follow param to setup widget:

+

ztree_parent_key: --the key field of parent children relation.

+

ztree_expend_level: --how many level to expend the tree for initialize. Default is 2

+

limit: --how many record to show ztree. Default is 16

+

order: --the field to order by

+
+
+
+
+
+

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + odoo@china.com +

+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+

https://www.odooai.cn

+
+
+
+
+ diff --git a/app_hr_ztree/static/description/setup1.jpg b/app_hr_ztree/static/description/setup1.jpg new file mode 100644 index 00000000..d5ade2b1 Binary files /dev/null and b/app_hr_ztree/static/description/setup1.jpg differ diff --git a/app_hr_ztree/static/img/icon_sunpop.png b/app_hr_ztree/static/img/icon_sunpop.png new file mode 100644 index 00000000..aa490954 Binary files /dev/null and b/app_hr_ztree/static/img/icon_sunpop.png differ diff --git a/app_hr_ztree/static/img/logo_sunpop.png b/app_hr_ztree/static/img/logo_sunpop.png new file mode 100644 index 00000000..90cbe0e2 Binary files /dev/null and b/app_hr_ztree/static/img/logo_sunpop.png differ diff --git a/app_hr_ztree/views/hr_views.xml b/app_hr_ztree/views/hr_views.xml new file mode 100644 index 00000000..39d13f8f --- /dev/null +++ b/app_hr_ztree/views/hr_views.xml @@ -0,0 +1,29 @@ + + + + + app.hr.department.form + hr.department + + + + + ztree_select + {'ztree_parent_key': 'parent_id','ztree_expend_level': '1', 'ztree_name_field': 'name'} + + + + + app.hr.employee.form + hr.employee + + + + + ztree_select + {'ztree_parent_key': 'parent_id','ztree_expend_level': '1', 'ztree_name_field': 'name'} + + + + + \ No newline at end of file diff --git a/app_module_superbar/__init__.py b/app_module_superbar/__init__.py new file mode 100644 index 00000000..86764a0e --- /dev/null +++ b/app_module_superbar/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import models +from .hooks import post_init_hook \ No newline at end of file diff --git a/app_module_superbar/__manifest__.py b/app_module_superbar/__manifest__.py new file mode 100644 index 00000000..8e63063e --- /dev/null +++ b/app_module_superbar/__manifest__.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-23 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +# Odoo13在线用户手册(长期更新) +# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html + +# Odoo13在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/13.0/index.html + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "Apps Navigator by Category, Module Navigator", + 'version': '16.23.10.23', + 'author': 'odooai.cn', + 'category': 'Base', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Browse Apps by category tree. Browse Module by category. Use for parent children tree list kanban navigator. + Easy to navigator and browse any data. Support list, kanban, pivot, graph view. + """, + 'description': """ + Superbar, zTree widget. + Advance search with real parent children tree, ListView or KanbanView. parent tree, children tree, + eg: Product category tree ,Department tree, stock location tree. + 超级方便的查询,树状视图。 + """, + 'price': 0.00, + 'currency': 'EUR', + 'depends': [ + 'base', + ], + 'images': ['static/description/banner.png'], + 'data': [ + 'views/module_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': 'post_init_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_module_superbar/hooks.py b/app_module_superbar/hooks.py new file mode 100644 index 00000000..ec42064c --- /dev/null +++ b/app_module_superbar/hooks.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-10-12 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +# Odoo13在线用户手册(长期更新) +# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html + +# Odoo13在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/13.0/index.html + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +def post_init_hook(cr, pool): + pass + # cr.execute("") diff --git a/app_module_superbar/i18n/zh_CN.po b/app_module_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..f1e36e3e --- /dev/null +++ b/app_module_superbar/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/app_module_superbar/models/__init__.py b/app_module_superbar/models/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_module_superbar/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_module_superbar/report/__init__.py b/app_module_superbar/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_module_superbar/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_module_superbar/static/description/account1.jpg b/app_module_superbar/static/description/account1.jpg new file mode 100644 index 00000000..28307428 Binary files /dev/null and b/app_module_superbar/static/description/account1.jpg differ diff --git a/app_module_superbar/static/description/banner.gif b/app_module_superbar/static/description/banner.gif new file mode 100644 index 00000000..48f55f93 Binary files /dev/null and b/app_module_superbar/static/description/banner.gif differ diff --git a/app_module_superbar/static/description/banner.png b/app_module_superbar/static/description/banner.png new file mode 100644 index 00000000..a6b12c98 Binary files /dev/null and b/app_module_superbar/static/description/banner.png differ diff --git a/app_module_superbar/static/description/base1.jpg b/app_module_superbar/static/description/base1.jpg new file mode 100644 index 00000000..ffda9f17 Binary files /dev/null and b/app_module_superbar/static/description/base1.jpg differ diff --git a/app_module_superbar/static/description/base2.jpg b/app_module_superbar/static/description/base2.jpg new file mode 100644 index 00000000..81a64eec Binary files /dev/null and b/app_module_superbar/static/description/base2.jpg differ diff --git a/app_module_superbar/static/description/base3.jpg b/app_module_superbar/static/description/base3.jpg new file mode 100644 index 00000000..4d5a5938 Binary files /dev/null and b/app_module_superbar/static/description/base3.jpg differ diff --git a/app_module_superbar/static/description/base4.jpg b/app_module_superbar/static/description/base4.jpg new file mode 100644 index 00000000..ed7155a0 Binary files /dev/null and b/app_module_superbar/static/description/base4.jpg differ diff --git a/app_module_superbar/static/description/base5.jpg b/app_module_superbar/static/description/base5.jpg new file mode 100644 index 00000000..d33631bd Binary files /dev/null and b/app_module_superbar/static/description/base5.jpg differ diff --git a/app_module_superbar/static/description/base6.jpg b/app_module_superbar/static/description/base6.jpg new file mode 100644 index 00000000..8fcb48f3 Binary files /dev/null and b/app_module_superbar/static/description/base6.jpg differ diff --git a/app_module_superbar/static/description/base7.jpg b/app_module_superbar/static/description/base7.jpg new file mode 100644 index 00000000..7c7d76f6 Binary files /dev/null and b/app_module_superbar/static/description/base7.jpg differ diff --git a/app_module_superbar/static/description/base8.jpg b/app_module_superbar/static/description/base8.jpg new file mode 100644 index 00000000..a002c442 Binary files /dev/null and b/app_module_superbar/static/description/base8.jpg differ diff --git a/app_module_superbar/static/description/base9.jpg b/app_module_superbar/static/description/base9.jpg new file mode 100644 index 00000000..cb98e140 Binary files /dev/null and b/app_module_superbar/static/description/base9.jpg differ diff --git a/app_module_superbar/static/description/contacts1.jpg b/app_module_superbar/static/description/contacts1.jpg new file mode 100644 index 00000000..4ac551a5 Binary files /dev/null and b/app_module_superbar/static/description/contacts1.jpg differ diff --git a/app_module_superbar/static/description/crm1.jpg b/app_module_superbar/static/description/crm1.jpg new file mode 100644 index 00000000..2d53c641 Binary files /dev/null and b/app_module_superbar/static/description/crm1.jpg differ diff --git a/app_module_superbar/static/description/demo2.jpg b/app_module_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..c34083e0 Binary files /dev/null and b/app_module_superbar/static/description/demo2.jpg differ diff --git a/app_module_superbar/static/description/demo_module1.jpg b/app_module_superbar/static/description/demo_module1.jpg new file mode 100644 index 00000000..1fc270fc Binary files /dev/null and b/app_module_superbar/static/description/demo_module1.jpg differ diff --git a/app_module_superbar/static/description/demo_module2.jpg b/app_module_superbar/static/description/demo_module2.jpg new file mode 100644 index 00000000..f06f79fd Binary files /dev/null and b/app_module_superbar/static/description/demo_module2.jpg differ diff --git a/app_module_superbar/static/description/hr1.jpg b/app_module_superbar/static/description/hr1.jpg new file mode 100644 index 00000000..19913106 Binary files /dev/null and b/app_module_superbar/static/description/hr1.jpg differ diff --git a/app_module_superbar/static/description/hr2.gif b/app_module_superbar/static/description/hr2.gif new file mode 100644 index 00000000..6690e747 Binary files /dev/null and b/app_module_superbar/static/description/hr2.gif differ diff --git a/app_module_superbar/static/description/icon.png b/app_module_superbar/static/description/icon.png new file mode 100644 index 00000000..23ac0bd7 Binary files /dev/null and b/app_module_superbar/static/description/icon.png differ diff --git a/app_module_superbar/static/description/index.html b/app_module_superbar/static/description/index.html new file mode 100644 index 00000000..4a5552c0 --- /dev/null +++ b/app_module_superbar/static/description/index.html @@ -0,0 +1,332 @@ +
+
+

Apps Navigator by Category, Module Navigator

+
+
+
+
+

!This moduld Do Need extra paid Apps + + Click to download. +

+
+

Apps Navigator by Category, Module Navigator is ready.

+
+ +
+
+ +
+
+

Advance Search, Advance Filter with Parent Children Tree.

+

Easy to navigator and browse any data. Support list, kanban, pivot, graph view.

+

Online demo user/password: demo/demo + + Click to get demo. +

+
+ +
+
+
+ Key features: + +
+
+
+
+ +
+
+ +
+
+

 

+

So Easy to navigator and search any data.

+

Product by category or type in kanban view

+
+ +
+
+
+ +
+
+

Free to Use in product category.

+
+ +
+
+
+ +
+
+

Free to Use in POS point of sale.

+
+ +
+

POS product and order.

+
+ +
+

POS report.

+
+ +
+
+
+
+
+

Use in HR employee.

+
+ +
+
+
+ +
+
+

Use in Account.

+
+ +
+
+
+ +
+
+

Use in Sale.

+
+ +
+
+
+ +
+
+

Use in purchase.

+
+ +
+
+
+ +
+
+

Use in contacts.

+
+ +
+
+
+ +
+
+

 

+

How to use! This app do need extra module. The price already included

+
+

1. Buy and Install zTree widget. + + Click to download. + +

+
+
+

2. Buy and Install app_web_superbar. Important! Reboot odoo after installed. +

+
+
+

3. Easy use of superbar

+
+

Show superbar in list view.

+
+
+
+ +
+
+
+

Show superbar in kanban view.

+
+
+
+ +
+
+
+

Show superbar in pivot view.

+
+
+
+ +
+
+
+

Show superbar in graph view.

+
+
+
+ +
+
+
+

Click switch to show or hide superbar.

+
+
+
+ +
+
+
+

Click checkbox to set whether to show child nodes data.

+
+
+
+ +
+
+
+

Press Ctrl(Windows) / Cmd(Mac) to Select Multi Nodes

+
+
+
+ +
+
+
+

Set multi field to search or filter

+
+
+
+ +
+
+
+

Set super bar position, left or right.

+
+
+
+ +
+
+
+
+

4. If you want to customize, Use follow param to setup widget(Extra pay for support):

+
+
+ +
+
    +
  • In search view xml, Write the <superbar> tag,
  • +
  • position: [left, right]
  • +
  • view_types: [kanban,tree, pivot, graph view.]
  • +
  • parent_key: key field name of parent child relation. leave blank would auto set.
  • +
  • level: how many level to expend the tree for initialize. Default is 2
  • +
  • limit: how many record to show ztree. Default is 16
  • +
  • order: the field name to order by
  • +
  • domain: set the domain for data, eg: [[('is_company', '=', 1)]]
  • +
+
+
+
+
+ +
+
+
+

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + odoo@china.com +

+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+

https://www.odooai.cn

+
+
+
+
+ diff --git a/app_module_superbar/static/description/mrp1.gif b/app_module_superbar/static/description/mrp1.gif new file mode 100644 index 00000000..f19e76cb Binary files /dev/null and b/app_module_superbar/static/description/mrp1.gif differ diff --git a/app_module_superbar/static/description/mrp1.jpg b/app_module_superbar/static/description/mrp1.jpg new file mode 100644 index 00000000..f2fce20d Binary files /dev/null and b/app_module_superbar/static/description/mrp1.jpg differ diff --git a/app_module_superbar/static/description/pos1.jpg b/app_module_superbar/static/description/pos1.jpg new file mode 100644 index 00000000..32aaf5f4 Binary files /dev/null and b/app_module_superbar/static/description/pos1.jpg differ diff --git a/app_module_superbar/static/description/pos2.jpg b/app_module_superbar/static/description/pos2.jpg new file mode 100644 index 00000000..19471a7e Binary files /dev/null and b/app_module_superbar/static/description/pos2.jpg differ diff --git a/app_module_superbar/static/description/pos3.jpg b/app_module_superbar/static/description/pos3.jpg new file mode 100644 index 00000000..8e63e208 Binary files /dev/null and b/app_module_superbar/static/description/pos3.jpg differ diff --git a/app_module_superbar/static/description/product1.jpg b/app_module_superbar/static/description/product1.jpg new file mode 100644 index 00000000..efa649a3 Binary files /dev/null and b/app_module_superbar/static/description/product1.jpg differ diff --git a/app_module_superbar/static/description/purchase1.jpg b/app_module_superbar/static/description/purchase1.jpg new file mode 100644 index 00000000..65a5d63a Binary files /dev/null and b/app_module_superbar/static/description/purchase1.jpg differ diff --git a/app_module_superbar/static/description/sale1.jpg b/app_module_superbar/static/description/sale1.jpg new file mode 100644 index 00000000..92555d06 Binary files /dev/null and b/app_module_superbar/static/description/sale1.jpg differ diff --git a/app_module_superbar/static/description/searchmore.jpg b/app_module_superbar/static/description/searchmore.jpg new file mode 100644 index 00000000..d37c652d Binary files /dev/null and b/app_module_superbar/static/description/searchmore.jpg differ diff --git a/app_module_superbar/static/description/stock1.jpg b/app_module_superbar/static/description/stock1.jpg new file mode 100644 index 00000000..0aeb92ff Binary files /dev/null and b/app_module_superbar/static/description/stock1.jpg differ diff --git a/app_module_superbar/static/description/superbar.gif b/app_module_superbar/static/description/superbar.gif new file mode 100644 index 00000000..07c2ff79 Binary files /dev/null and b/app_module_superbar/static/description/superbar.gif differ diff --git a/app_module_superbar/static/description/superbar_use.gif b/app_module_superbar/static/description/superbar_use.gif new file mode 100644 index 00000000..2ec5abde Binary files /dev/null and b/app_module_superbar/static/description/superbar_use.gif differ diff --git a/app_module_superbar/static/description/superbar_use.png b/app_module_superbar/static/description/superbar_use.png new file mode 100644 index 00000000..d5ffc980 Binary files /dev/null and b/app_module_superbar/static/description/superbar_use.png differ diff --git a/app_module_superbar/static/description/use.jpg b/app_module_superbar/static/description/use.jpg new file mode 100644 index 00000000..5b0e661b Binary files /dev/null and b/app_module_superbar/static/description/use.jpg differ diff --git a/app_module_superbar/static/description/use1.jpg b/app_module_superbar/static/description/use1.jpg new file mode 100644 index 00000000..d9c726da Binary files /dev/null and b/app_module_superbar/static/description/use1.jpg differ diff --git a/app_module_superbar/static/description/use2.jpg b/app_module_superbar/static/description/use2.jpg new file mode 100644 index 00000000..4d46d705 Binary files /dev/null and b/app_module_superbar/static/description/use2.jpg differ diff --git a/app_module_superbar/static/description/use3.jpg b/app_module_superbar/static/description/use3.jpg new file mode 100644 index 00000000..fe8b7ef7 Binary files /dev/null and b/app_module_superbar/static/description/use3.jpg differ diff --git a/app_module_superbar/static/description/use4.jpg b/app_module_superbar/static/description/use4.jpg new file mode 100644 index 00000000..606a5ce6 Binary files /dev/null and b/app_module_superbar/static/description/use4.jpg differ diff --git a/app_module_superbar/static/description/use5.jpg b/app_module_superbar/static/description/use5.jpg new file mode 100644 index 00000000..493769c2 Binary files /dev/null and b/app_module_superbar/static/description/use5.jpg differ diff --git a/app_module_superbar/static/description/use6.jpg b/app_module_superbar/static/description/use6.jpg new file mode 100644 index 00000000..da80eb13 Binary files /dev/null and b/app_module_superbar/static/description/use6.jpg differ diff --git a/app_module_superbar/static/description/use7.jpg b/app_module_superbar/static/description/use7.jpg new file mode 100644 index 00000000..e43b1b21 Binary files /dev/null and b/app_module_superbar/static/description/use7.jpg differ diff --git a/app_module_superbar/static/description/use8.jpg b/app_module_superbar/static/description/use8.jpg new file mode 100644 index 00000000..732cc71a Binary files /dev/null and b/app_module_superbar/static/description/use8.jpg differ diff --git a/app_module_superbar/static/description/use9.jpg b/app_module_superbar/static/description/use9.jpg new file mode 100644 index 00000000..9d7175bc Binary files /dev/null and b/app_module_superbar/static/description/use9.jpg differ diff --git a/app_module_superbar/static/description/usea.jpg b/app_module_superbar/static/description/usea.jpg new file mode 100644 index 00000000..b6279faa Binary files /dev/null and b/app_module_superbar/static/description/usea.jpg differ diff --git a/app_module_superbar/static/description/z_hr1.gif b/app_module_superbar/static/description/z_hr1.gif new file mode 100644 index 00000000..6d232374 Binary files /dev/null and b/app_module_superbar/static/description/z_hr1.gif differ diff --git a/app_module_superbar/static/description/z_product1.gif b/app_module_superbar/static/description/z_product1.gif new file mode 100644 index 00000000..e471a66c Binary files /dev/null and b/app_module_superbar/static/description/z_product1.gif differ diff --git a/app_module_superbar/static/description/z_stock1.gif b/app_module_superbar/static/description/z_stock1.gif new file mode 100644 index 00000000..14e9c101 Binary files /dev/null and b/app_module_superbar/static/description/z_stock1.gif differ diff --git a/app_module_superbar/views/module_views.xml b/app_module_superbar/views/module_views.xml new file mode 100644 index 00000000..67124df2 --- /dev/null +++ b/app_module_superbar/views/module_views.xml @@ -0,0 +1,18 @@ + + + + + ir.module.module.list.select + ir.module.module + + + + kanban,tree + + + + + + + + \ No newline at end of file diff --git a/app_mrp_bom_product_multi_add/__init__.py b/app_mrp_bom_product_multi_add/__init__.py new file mode 100644 index 00000000..c6f04b45 --- /dev/null +++ b/app_mrp_bom_product_multi_add/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +from . import controllers +from . import models +from . import ir +from . import res \ No newline at end of file diff --git a/app_mrp_bom_product_multi_add/__manifest__.py b/app_mrp_bom_product_multi_add/__manifest__.py new file mode 100644 index 00000000..bc34382f --- /dev/null +++ b/app_mrp_bom_product_multi_add/__manifest__.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-08-15 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# resource of odooai +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +# Odoo13在线用户手册(长期更新) +# https://www.odooai.cn/documentation/user/13.0/zh_CN/index.html + +# Odoo13在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/13.0/index.html + +# Odoo在线中文用户手册(长期更新) +# https://www.odooai.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# https://www.odooai.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# https://www.odooai.cn/odoo10_developer_document_offline/ +# description: + +{ + 'name': "App MRP Bom Product Multi Batch Add", + 'version': '16.23.10.23', + 'author': 'odooai.cn', + 'category': 'Base', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'price': 0.00, + 'currency': 'USD', + 'summary': """ + App MRP Bom Product Multi Batch Add, 制造Bom批量增加产品. + Odoo App of odooai.cn + """, + 'description': """ + App MRP Bom Product Multi Add. + 1. One Click to add multi product to MRP Bom. + 2. All the product can filter and group. + 制造Bom批量增加产品 + 1. 可以一键快速将多个产品加到制造Bom中 + 2. 可对产品进行过滤、分组,然后批量加入 + """, + 'depends': [ + # 'app_web_one2many_multi_add', + 'mrp', + ], + 'images': ['static/description/mrp1.gif'], + 'data': [ + 'views/mrp_bom_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + ], + 'js': [ + ], + 'post_load': None, + 'post_init_hook': None, + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_mrp_bom_product_multi_add/controllers/__init__.py b/app_mrp_bom_product_multi_add/controllers/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_mrp_bom_product_multi_add/controllers/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_mrp_bom_product_multi_add/i18n/zh_CN.po b/app_mrp_bom_product_multi_add/i18n/zh_CN.po new file mode 100644 index 00000000..8e99b37c --- /dev/null +++ b/app_mrp_bom_product_multi_add/i18n/zh_CN.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * app_mrp_bom_product_multi_add +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0+e-20190301\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-14 16:07+0000\n" +"PO-Revision-Date: 2019-03-14 16:07+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" + +#. module: app_mrp_bom_product_multi_add +#: model_terms:ir.ui.view,arch_db:app_mrp_bom_product_multi_add.app_mrp_bom_form_view +msgid "Add a line" +msgstr "添加明细行" + +#. module: app_mrp_bom_product_multi_add +#: model_terms:ir.ui.view,arch_db:app_mrp_bom_product_multi_add.app_mrp_bom_form_view +msgid "Multi add line" +msgstr "批量添加" + diff --git a/app_mrp_bom_product_multi_add/ir/__init__.py b/app_mrp_bom_product_multi_add/ir/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_mrp_bom_product_multi_add/ir/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_mrp_bom_product_multi_add/models/__init__.py b/app_mrp_bom_product_multi_add/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_mrp_bom_product_multi_add/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_mrp_bom_product_multi_add/report/__init__.py b/app_mrp_bom_product_multi_add/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_mrp_bom_product_multi_add/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_mrp_bom_product_multi_add/res/__init__.py b/app_mrp_bom_product_multi_add/res/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_mrp_bom_product_multi_add/res/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_mrp_bom_product_multi_add/static/description/account1.gif b/app_mrp_bom_product_multi_add/static/description/account1.gif new file mode 100644 index 00000000..ed6ad818 Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/account1.gif differ diff --git a/app_mrp_bom_product_multi_add/static/description/banner.png b/app_mrp_bom_product_multi_add/static/description/banner.png new file mode 100644 index 00000000..8b958c64 Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/banner.png differ diff --git a/app_mrp_bom_product_multi_add/static/description/cnreadme.jpg b/app_mrp_bom_product_multi_add/static/description/cnreadme.jpg new file mode 100644 index 00000000..2be54766 Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/cnreadme.jpg differ diff --git a/app_mrp_bom_product_multi_add/static/description/example.png b/app_mrp_bom_product_multi_add/static/description/example.png new file mode 100644 index 00000000..27ff6d0f Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/example.png differ diff --git a/app_mrp_bom_product_multi_add/static/description/guide1.jpg b/app_mrp_bom_product_multi_add/static/description/guide1.jpg new file mode 100644 index 00000000..0eb8ddee Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/guide1.jpg differ diff --git a/app_mrp_bom_product_multi_add/static/description/icon.png b/app_mrp_bom_product_multi_add/static/description/icon.png new file mode 100644 index 00000000..dfb3780c Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/icon.png differ diff --git a/app_mrp_bom_product_multi_add/static/description/index.html b/app_mrp_bom_product_multi_add/static/description/index.html new file mode 100644 index 00000000..d6a83e5f --- /dev/null +++ b/app_mrp_bom_product_multi_add/static/description/index.html @@ -0,0 +1,142 @@ +
+
+

App MRP Bom Product Multi Add

+

One Click to add multi product to MRP Bom.

+

Important: This app is depends on a Paid App. + app_web_one2many_multi_add +

+
+
+

One Click to add multi product to MRP Bom.

+
+
+ +
+
+
+

You may also like these free Apps for odoo.

+
    +
  • 1. One Click to add multi product to Sale Order. + Free Download from here.
  • +
  • 2. One Click to add multi product to Purchase Order. + Free Download from here.
  • +
  • 3. One Click to add multi product to MRP Bom. + Free Download from here.
  • +
  • 4. One Click to add multi product to Stock Picking Order. + Free Download from here.
  • +
  • 5. One Click to add multi product to Account Customer Invoice, Vendor Bill. + Free Download from here.
  • +
  • 6. You can also make any one2many field to get this feature by config the xml.
  • +
  • 7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order
  • +
+
+ +
+
+

Easy to Use. Click "Multi Add Items" in the one2many tree view.

+
+

Step1. Click "Multi Add Items" in any order form.

+ +
+

Step2. Select product (or any item you setup in xml).

+ +
+

Step3. Click "Select", then all product you select would add to the order.

+ +
+
+
+
+
+

1. One Click to add multi product to Sale Order.

+
+
+ +
+
+
+
+
+

2. One Click to add multi product to Purchase Order.

+
+
+ +
+
+
+
+
+

3. One Click to add multi product to MRP Bom.

+
+
+ +
+
+
+
+
+

4. One Click to add multi product to Stock Picking Order.

+
+
+ +
+
+
+
+
+

5. One Click to add multi product to Account Customer Invoice, Vendor Bill.

+
+
+ +
+
+
+
+
+

6. You can also make any one2many field to get this feature by config the xml.

+
+
+

Check this example.

+ +
+
+
+
+ + +
+
+
+

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + odoo@china.com +

+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)

+ + 300883@qq.com +
+
+

+ Visit our website for more support.

+

https://www.odooai.cn

+
+
+
+
+ diff --git a/app_mrp_bom_product_multi_add/static/description/mrp1.gif b/app_mrp_bom_product_multi_add/static/description/mrp1.gif new file mode 100644 index 00000000..3fb5a814 Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/mrp1.gif differ diff --git a/app_mrp_bom_product_multi_add/static/description/purchase1.gif b/app_mrp_bom_product_multi_add/static/description/purchase1.gif new file mode 100644 index 00000000..43cd2a3b Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/purchase1.gif differ diff --git a/app_mrp_bom_product_multi_add/static/description/sale1.gif b/app_mrp_bom_product_multi_add/static/description/sale1.gif new file mode 100644 index 00000000..f8db4f7d Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/sale1.gif differ diff --git a/app_mrp_bom_product_multi_add/static/description/stock1.gif b/app_mrp_bom_product_multi_add/static/description/stock1.gif new file mode 100644 index 00000000..debbca34 Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/stock1.gif differ diff --git a/app_mrp_bom_product_multi_add/static/description/use1.jpg b/app_mrp_bom_product_multi_add/static/description/use1.jpg new file mode 100644 index 00000000..dc70f00f Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/use1.jpg differ diff --git a/app_mrp_bom_product_multi_add/static/description/use2.jpg b/app_mrp_bom_product_multi_add/static/description/use2.jpg new file mode 100644 index 00000000..74e49c8d Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/use2.jpg differ diff --git a/app_mrp_bom_product_multi_add/static/description/use3.jpg b/app_mrp_bom_product_multi_add/static/description/use3.jpg new file mode 100644 index 00000000..541828c1 Binary files /dev/null and b/app_mrp_bom_product_multi_add/static/description/use3.jpg differ diff --git a/app_mrp_bom_product_multi_add/views/mrp_bom_views.xml b/app_mrp_bom_product_multi_add/views/mrp_bom_views.xml new file mode 100644 index 00000000..65702ebe --- /dev/null +++ b/app_mrp_bom_product_multi_add/views/mrp_bom_views.xml @@ -0,0 +1,21 @@ + + + + app.mrp.bom.form + mrp.bom + + + + + + + + + + + + \ No newline at end of file