diff --git a/app_mrp_bom_location/__manifest__.py b/app_mrp_bom_location/__manifest__.py index ef9e02c9..fd3e196d 100644 --- a/app_mrp_bom_location/__manifest__.py +++ b/app_mrp_bom_location/__manifest__.py @@ -44,8 +44,6 @@ ], 'js': [ ], - 'images': [ - ], 'post_load': None, 'post_init_hook': None, 'installable': True, diff --git a/app_purchase_report/__manifest__.py b/app_purchase_report/__manifest__.py index 13bac920..7e6802d2 100644 --- a/app_purchase_report/__manifest__.py +++ b/app_purchase_report/__manifest__.py @@ -47,8 +47,6 @@ ], 'js': [ ], - 'images': [ - ], 'post_load': None, 'post_init_hook': None, 'installable': True, diff --git a/app_stock_picking_type_group/__manifest__.py b/app_stock_picking_type_group/__manifest__.py index c5cd19aa..c7240795 100644 --- a/app_stock_picking_type_group/__manifest__.py +++ b/app_stock_picking_type_group/__manifest__.py @@ -49,8 +49,6 @@ ], 'js': [ ], - 'images': [ - ], 'installable': True, 'application': True, 'auto_install': False, diff --git a/app_stock_putaway/__init__.py b/app_stock_putaway/__init__.py new file mode 100644 index 00000000..fa9f002c --- /dev/null +++ b/app_stock_putaway/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- + +from . import models +from . import ir +from . import res \ No newline at end of file diff --git a/app_stock_putaway/__manifest__.py b/app_stock_putaway/__manifest__.py new file mode 100644 index 00000000..89303cd1 --- /dev/null +++ b/app_stock_putaway/__manifest__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- + +# Created on 2018-11-05 +# author: 广州尚鹏,http://www.sunpop.cn +# email: 300883@qq.com +# resource of Sunpop +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +# Odoo在线中文用户手册(长期更新) +# http://www.sunpop.cn/documentation/user/10.0/zh_CN/index.html + +# Odoo10离线中文用户手册下载 +# http://www.sunpop.cn/odoo10_user_manual_document_offline/ +# Odoo10离线开发手册下载-含python教程,jquery参考,Jinja2模板,PostgresSQL参考(odoo开发必备) +# http://www.sunpop.cn/odoo10_developer_document_offline/ +# description: + + +{ + 'name': "App stock putaway show. 单独的上架策略界面及菜单", + 'version': '11.0.3.24', + 'author': 'Sunpop.cn', + 'category': 'Base', + 'website': 'http://www.sunpop.cn', + 'license': 'LGPL-3', + 'sequence': 2, + 'summary': """ + Show stock putaway strategy in stock menu. + """, + 'description': """ + 上架策略菜单。 + 广州尚鹏,Sunpop.cn 的odoo模块。 + """, + 'depends': ['stock'], + 'images': [], + + 'data': [ + 'views/product_putaway_views.xml', + ], + 'demo': [ + ], + 'test': [ + ], + 'css': [ + ], + 'qweb': [ + ], + 'js': [ + ], + 'installable': True, + 'application': True, + 'auto_install': True, +} diff --git a/app_stock_putaway/i18n/zh_CN.po b/app_stock_putaway/i18n/zh_CN.po new file mode 100644 index 00000000..9f736e7e --- /dev/null +++ b/app_stock_putaway/i18n/zh_CN.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * app_stock_putaway +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0+e-20180915\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-11-04 20:04+0000\n" +"PO-Revision-Date: 2018-11-04 20:04+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_stock_putaway +#: model:ir.actions.act_window,help:app_stock_putaway.action_product_putaway +msgid "Click to define a new picking type group." +msgstr "点击创建一条新的记录." + +#. module: app_stock_putaway +#: model:ir.ui.view,arch_db:app_stock_putaway.app_view_strock_putaway_tree +msgid "Stock Put Away Strategy" +msgstr "上架策略" + +#. module: app_stock_putaway +#: model:ir.actions.act_window,name:app_stock_putaway.action_product_putaway +#: model:ir.ui.menu,name:app_stock_putaway.menu_putaway +msgid "Stock Putaway Strategy" +msgstr "上架策略" + diff --git a/app_stock_putaway/ir/__init__.py b/app_stock_putaway/ir/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_stock_putaway/ir/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_stock_putaway/models/__init__.py b/app_stock_putaway/models/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_stock_putaway/models/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_stock_putaway/report/__init__.py b/app_stock_putaway/report/__init__.py new file mode 100644 index 00000000..633f8661 --- /dev/null +++ b/app_stock_putaway/report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/app_stock_putaway/res/__init__.py b/app_stock_putaway/res/__init__.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/app_stock_putaway/res/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/app_stock_putaway/static/description/icon.png b/app_stock_putaway/static/description/icon.png new file mode 100644 index 00000000..2a04f219 Binary files /dev/null and b/app_stock_putaway/static/description/icon.png differ diff --git a/app_stock_putaway/static/description/index.html b/app_stock_putaway/static/description/index.html new file mode 100644 index 00000000..8d53dcc0 --- /dev/null +++ b/app_stock_putaway/static/description/index.html @@ -0,0 +1,71 @@ +
+
+
+

App stock picking type group

+
+

This moduld allows user to .

+

More Powerful addons: + Supop.cn Odoo Addons +

+
+

Lastest update: v10.0.3.27, 2018-03-27

+
    +
  • 1. Manager picking type groups
  • +
  • 2. Group by picking type groups in stock dashboard
  • +
+
+ +
+

Base setup:

+
    +
  • 1. Go to Inventory->Configuration->Warehouse Management
  • +
  • 2. Set Picking Type Group for the certain type
  • +
+ +
+
+ +
+

After setup, the view would look like:

+ +
+
+
+ +
+
+
+
+ +
+
+
+

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.

+ + http://www.sunpop.cn +
+
+
+
+ diff --git a/app_stock_putaway/views/product_putaway_views.xml b/app_stock_putaway/views/product_putaway_views.xml new file mode 100644 index 00000000..9e6aede3 --- /dev/null +++ b/app_stock_putaway/views/product_putaway_views.xml @@ -0,0 +1,28 @@ + + + + Stock Putaway Strategy + product.putaway + + + + + + + + + + Stock Putaway Strategy + product.putaway + ir.actions.act_window + form + list,form + +

+ Click to define a new picking type group. +

+
+
+ + +