update ver
6
app_account_invoice_product_multi_add/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import controllers
|
||||||
|
from . import models
|
||||||
|
from . import ir
|
||||||
|
from . import res
|
||||||
63
app_account_invoice_product_multi_add/__manifest__.py
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Created on 2018-08-15
|
||||||
|
# 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 Account Invoice Product Multi Batch Add, 客户收据与供应商帐单批量增加产品",
|
||||||
|
'version': '12.0.8.15',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'http://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'USD',
|
||||||
|
'summary': """
|
||||||
|
App Account Invoice Product Multi Batch Add, 客户收据与供应商帐单批量增加产品.
|
||||||
|
Odoo App of Sunpop.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_invoice_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': None,
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
16
app_account_invoice_product_multi_add/i18n/zh_CN.po
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * felive_home
|
||||||
|
#
|
||||||
|
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"
|
||||||
1
app_account_invoice_product_multi_add/ir/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
1
app_account_invoice_product_multi_add/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_account_invoice_product_multi_add/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
1
app_account_invoice_product_multi_add/res/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 78 KiB |
@@ -0,0 +1,128 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">Account Invoice Product Multi Add</h2>
|
||||||
|
<h3>One Click to add multi product to Account Customer Invoice, Vendor Bill.</h3>
|
||||||
|
<h2>Important: This app is depends on a Paid App.
|
||||||
|
<a class="btn btn-danger mb4" href="http://www.odoo.com/apps/modules/12.0/app_web_one2many_multi_add/" target="_blank">app_web_one2many_multi_add</a>
|
||||||
|
</h2>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>One Click to add multi product to Account Customer Invoice, Vendor Bill.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h3>You may also like these free Apps for odoo.</h3>
|
||||||
|
<ul>
|
||||||
|
<li>1. One Click to add multi product to Sale Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_sale_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>2. One Click to add multi product to Purchase Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_purchase_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>3. One Click to add multi product to MRP Bom.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_mrp_bom_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>4. One Click to add multi product to Stock Picking Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_stock_picking_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_account_invoice_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>6. You can also make any one2many field to get this feature by config the xml.</li>
|
||||||
|
<li>7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order</li>
|
||||||
|
</ul>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="cnreadme.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Easy to Use. Click "Multi Add Items" in the one2many tree view.</h3>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="use1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>1. One Click to add multi product to Sale Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>2. One Click to add multi product to Purchase Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>3. One Click to add multi product to MRP Bom.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="mrp1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>4. One Click to add multi product to Stock Picking Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>6. You can also make any one2many field to get this feature by config the xml.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<p>Check this example.</p>
|
||||||
|
<img src="guide1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="http://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>http://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
After Width: | Height: | Size: 2.9 MiB |
|
After Width: | Height: | Size: 5.8 MiB |
|
After Width: | Height: | Size: 4.5 MiB |
|
After Width: | Height: | Size: 3.3 MiB |
|
After Width: | Height: | Size: 31 KiB |
@@ -0,0 +1,29 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<!-- Inherit Form View to Modify it -->
|
||||||
|
<record id="app_invoice_form" model="ir.ui.view">
|
||||||
|
<field name="name">app.account.invoice.form</field>
|
||||||
|
<field name="model">account.invoice</field>
|
||||||
|
<field name="inherit_id" ref="account.invoice_form"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//page/field[@name='invoice_line_ids']" position="attributes">
|
||||||
|
<attribute name="widget">multi_select_tree</attribute>
|
||||||
|
<attribute name="res_model">product.product</attribute>
|
||||||
|
<attribute name="res_field">product_id</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<record id="app_invoice_supplier_form" model="ir.ui.view">
|
||||||
|
<field name="name">app.account.invoice.supplier.form</field>
|
||||||
|
<field name="model">account.invoice</field>
|
||||||
|
<field name="inherit_id" ref="account.invoice_supplier_form"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//page/field[@name='invoice_line_ids']" position="attributes">
|
||||||
|
<attribute name="widget">multi_select_tree</attribute>
|
||||||
|
<attribute name="res_model">product.product</attribute>
|
||||||
|
<attribute name="res_field">product_id</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
6
app_mrp_bom_product_multi_add/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import controllers
|
||||||
|
from . import models
|
||||||
|
from . import ir
|
||||||
|
from . import res
|
||||||
63
app_mrp_bom_product_multi_add/__manifest__.py
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Created on 2018-08-15
|
||||||
|
# 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 MRP Bom Product Multi Batch Add, 制造Bom批量增加产品",
|
||||||
|
'version': '12.0.8.15',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'http://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'USD',
|
||||||
|
'summary': """
|
||||||
|
App MRP Bom Product Multi Batch Add, 制造Bom批量增加产品.
|
||||||
|
Odoo App of Sunpop.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,
|
||||||
|
}
|
||||||
1
app_mrp_bom_product_multi_add/controllers/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
16
app_mrp_bom_product_multi_add/i18n/zh_CN.po
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * felive_home
|
||||||
|
#
|
||||||
|
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"
|
||||||
1
app_mrp_bom_product_multi_add/ir/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
1
app_mrp_bom_product_multi_add/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_mrp_bom_product_multi_add/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
1
app_mrp_bom_product_multi_add/res/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
BIN
app_mrp_bom_product_multi_add/static/description/account1.gif
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
BIN
app_mrp_bom_product_multi_add/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
app_mrp_bom_product_multi_add/static/description/cnreadme.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app_mrp_bom_product_multi_add/static/description/example.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
app_mrp_bom_product_multi_add/static/description/guide1.jpg
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
app_mrp_bom_product_multi_add/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
138
app_mrp_bom_product_multi_add/static/description/index.html
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">App MRP Bom Product Multi Add</h2>
|
||||||
|
<h3>One Click to add multi product to MRP Bom.</h3>
|
||||||
|
<h2>Important: This app is depends on a Paid App.
|
||||||
|
<a class="btn btn-danger mb4" href="http://www.odoo.com/apps/modules/12.0/app_web_one2many_multi_add/" target="_blank">app_web_one2many_multi_add</a>
|
||||||
|
</h2>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>One Click to add multi product to MRP Bom.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="mrp1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h3>You may also like these free Apps for odoo.</h3>
|
||||||
|
<ul>
|
||||||
|
<li>1. One Click to add multi product to Sale Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_sale_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>2. One Click to add multi product to Purchase Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_purchase_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>3. One Click to add multi product to MRP Bom.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_mrp_bom_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>4. One Click to add multi product to Stock Picking Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_stock_picking_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_account_invoice_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>6. You can also make any one2many field to get this feature by config the xml.</li>
|
||||||
|
<li>7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order</li>
|
||||||
|
</ul>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="cnreadme.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Easy to Use. Click "Multi Add Items" in the one2many tree view.</h3>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="use1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>1. One Click to add multi product to Sale Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>2. One Click to add multi product to Purchase Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>3. One Click to add multi product to MRP Bom.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="mrp1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>4. One Click to add multi product to Stock Picking Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>6. You can also make any one2many field to get this feature by config the xml.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<p>Check this example.</p>
|
||||||
|
<img src="guide1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="http://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>http://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_mrp_bom_product_multi_add/static/description/mrp1.gif
Normal file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
app_mrp_bom_product_multi_add/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 5.8 MiB |
BIN
app_mrp_bom_product_multi_add/static/description/sale1.gif
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
app_mrp_bom_product_multi_add/static/description/stock1.gif
Normal file
|
After Width: | Height: | Size: 3.3 MiB |
BIN
app_mrp_bom_product_multi_add/static/description/use1.jpg
Normal file
|
After Width: | Height: | Size: 31 KiB |
18
app_mrp_bom_product_multi_add/views/mrp_bom_views.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<record id="app_mrp_bom_form_view" model="ir.ui.view">
|
||||||
|
<field name="name">app.mrp.bom.form</field>
|
||||||
|
<field name="model">mrp.bom</field>
|
||||||
|
<field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//field[@name='bom_line_ids']" position="attributes">
|
||||||
|
<!-- Add your fields or attributes here -->
|
||||||
|
<attribute name="widget">multi_select_tree</attribute>
|
||||||
|
<attribute name="res_model">product.product</attribute>
|
||||||
|
<attribute name="res_field">product_id</attribute>
|
||||||
|
</xpath>
|
||||||
|
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
6
app_purchase_product_multi_add/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import controllers
|
||||||
|
from . import models
|
||||||
|
from . import ir
|
||||||
|
from . import res
|
||||||
63
app_purchase_product_multi_add/__manifest__.py
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Created on 2018-08-15
|
||||||
|
# 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 Purchase Order Product Multi Batch Add, 采购订单批量增加产品",
|
||||||
|
'version': '12.0.8.15',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'http://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'USD',
|
||||||
|
'summary': """
|
||||||
|
App Purchase Order Product Multi Batch Add, 采购订单批量增加产品.
|
||||||
|
Odoo App of Sunpop.cn
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
App Purchase Order Product Multi Add.
|
||||||
|
1. One Click to add multi product to Purchase Order.
|
||||||
|
2. All the product can filter and group.
|
||||||
|
采购订单批量增加产品
|
||||||
|
1. 可以一键快速将多个产品加到采购订单中
|
||||||
|
2. 可对产品进行过滤、分组,然后批量加入
|
||||||
|
""",
|
||||||
|
'depends': [
|
||||||
|
# 'app_web_one2many_multi_add',
|
||||||
|
'purchase',
|
||||||
|
],
|
||||||
|
'images': ['static/description/purchase1.gif'],
|
||||||
|
'data': [
|
||||||
|
'views/purchase_order_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': None,
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
1
app_purchase_product_multi_add/controllers/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
16
app_purchase_product_multi_add/i18n/zh_CN.po
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * felive_home
|
||||||
|
#
|
||||||
|
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"
|
||||||
1
app_purchase_product_multi_add/ir/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
1
app_purchase_product_multi_add/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_purchase_product_multi_add/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
1
app_purchase_product_multi_add/res/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
BIN
app_purchase_product_multi_add/static/description/account1.gif
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
BIN
app_purchase_product_multi_add/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
app_purchase_product_multi_add/static/description/cnreadme.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app_purchase_product_multi_add/static/description/example.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
app_purchase_product_multi_add/static/description/guide1.jpg
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
app_purchase_product_multi_add/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
138
app_purchase_product_multi_add/static/description/index.html
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">App Purchase Order Product Multi Add</h2>
|
||||||
|
<h3>One Click to add multi product to Purchase Order.</h3>
|
||||||
|
<h2>Important: This app is depends on a Paid App.
|
||||||
|
<a class="btn btn-danger mb4" href="http://www.odoo.com/apps/modules/12.0/app_web_one2many_multi_add/" target="_blank">app_web_one2many_multi_add</a>
|
||||||
|
</h2>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>One Click to add multi product to Purchase Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h3>You may also like these free Apps for odoo.</h3>
|
||||||
|
<ul>
|
||||||
|
<li>1. One Click to add multi product to Sale Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_sale_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>2. One Click to add multi product to Purchase Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_purchase_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>3. One Click to add multi product to MRP Bom.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_mrp_bom_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>4. One Click to add multi product to Stock Picking Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_stock_picking_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_account_invoice_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>6. You can also make any one2many field to get this feature by config the xml.</li>
|
||||||
|
<li>7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order</li>
|
||||||
|
</ul>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="cnreadme.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Easy to Use. Click "Multi Add Items" in the one2many tree view.</h3>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="use1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>1. One Click to add multi product to Sale Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>2. One Click to add multi product to Purchase Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>3. One Click to add multi product to MRP Bom.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="mrp1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>4. One Click to add multi product to Stock Picking Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>6. You can also make any one2many field to get this feature by config the xml.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<p>Check this example.</p>
|
||||||
|
<img src="guide1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="http://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>http://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_purchase_product_multi_add/static/description/mrp1.gif
Normal file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
app_purchase_product_multi_add/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 5.8 MiB |
BIN
app_purchase_product_multi_add/static/description/sale1.gif
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
app_purchase_product_multi_add/static/description/stock1.gif
Normal file
|
After Width: | Height: | Size: 3.3 MiB |
BIN
app_purchase_product_multi_add/static/description/use1.jpg
Normal file
|
After Width: | Height: | Size: 31 KiB |
@@ -0,0 +1,17 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<record id="app_purchase_order_form" model="ir.ui.view">
|
||||||
|
<field name="name">app.purchase.order.form</field>
|
||||||
|
<field name="model">purchase.order</field>
|
||||||
|
<field name="inherit_id" ref="purchase.purchase_order_form"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//page/field[@name='order_line']" position="attributes">
|
||||||
|
<attribute name="widget">multi_select_tree</attribute>
|
||||||
|
<attribute name="res_model">product.product</attribute>
|
||||||
|
<attribute name="res_field">product_id</attribute>
|
||||||
|
</xpath>
|
||||||
|
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
6
app_sale_product_multi_add/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import controllers
|
||||||
|
from . import models
|
||||||
|
from . import ir
|
||||||
|
from . import res
|
||||||
63
app_sale_product_multi_add/__manifest__.py
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Created on 2018-08-15
|
||||||
|
# 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 Sale Order Product Multi Batch Add, 销售订单批量增加产品",
|
||||||
|
'version': '12.0.8.15',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'http://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'USD',
|
||||||
|
'summary': """
|
||||||
|
App Sale Order Product Multi Batch Add, 销售订单批量增加产品.
|
||||||
|
Odoo App of Sunpop.cn
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
App Sale Order Product Multi Add.
|
||||||
|
1. One Click to add multi product to Sale Order.
|
||||||
|
2. All the product can filter and group.
|
||||||
|
销售订单批量增加产品.
|
||||||
|
1. 可以一键快速将多个产品加到销售订单中
|
||||||
|
2. 可对产品进行过滤、分组,然后批量加入
|
||||||
|
""",
|
||||||
|
'depends': [
|
||||||
|
# 'app_web_one2many_multi_add',
|
||||||
|
'sale_management',
|
||||||
|
],
|
||||||
|
'images': ['static/description/sale1.gif'],
|
||||||
|
'data': [
|
||||||
|
'views/sale_order_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': None,
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
1
app_sale_product_multi_add/controllers/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
16
app_sale_product_multi_add/i18n/zh_CN.po
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * felive_home
|
||||||
|
#
|
||||||
|
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"
|
||||||
1
app_sale_product_multi_add/ir/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
1
app_sale_product_multi_add/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_sale_product_multi_add/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
1
app_sale_product_multi_add/res/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
BIN
app_sale_product_multi_add/static/description/account1.gif
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
BIN
app_sale_product_multi_add/static/description/banner.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
app_sale_product_multi_add/static/description/cnreadme.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app_sale_product_multi_add/static/description/example.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
app_sale_product_multi_add/static/description/guide1.jpg
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
app_sale_product_multi_add/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
138
app_sale_product_multi_add/static/description/index.html
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">App Sale Order Product Multi Add</h2>
|
||||||
|
<h3>One Click to add multi product to Sale Order.</h3>
|
||||||
|
<h2>Important: This app is depends on a Paid App.
|
||||||
|
<a class="btn btn-danger mb4" href="http://www.odoo.com/apps/modules/12.0/app_web_one2many_multi_add/" target="_blank">app_web_one2many_multi_add</a>
|
||||||
|
</h2>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>One Click to add multi product to Sale Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h3>You may also like these free Apps for odoo.</h3>
|
||||||
|
<ul>
|
||||||
|
<li>1. One Click to add multi product to Sale Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_sale_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>2. One Click to add multi product to Purchase Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_purchase_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>3. One Click to add multi product to MRP Bom.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_mrp_bom_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>4. One Click to add multi product to Stock Picking Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_stock_picking_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_account_invoice_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>6. You can also make any one2many field to get this feature by config the xml.</li>
|
||||||
|
<li>7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order</li>
|
||||||
|
</ul>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="cnreadme.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Easy to Use. Click "Multi Add Items" in the one2many tree view.</h3>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="use1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>1. One Click to add multi product to Sale Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>2. One Click to add multi product to Purchase Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>3. One Click to add multi product to MRP Bom.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="mrp1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>4. One Click to add multi product to Stock Picking Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>6. You can also make any one2many field to get this feature by config the xml.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<p>Check this example.</p>
|
||||||
|
<img src="guide1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="http://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>http://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_sale_product_multi_add/static/description/mrp1.gif
Normal file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
app_sale_product_multi_add/static/description/purchase1.gif
Normal file
|
After Width: | Height: | Size: 5.8 MiB |
BIN
app_sale_product_multi_add/static/description/sale1.gif
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
app_sale_product_multi_add/static/description/stock1.gif
Normal file
|
After Width: | Height: | Size: 3.3 MiB |
BIN
app_sale_product_multi_add/static/description/use1.jpg
Normal file
|
After Width: | Height: | Size: 31 KiB |
18
app_sale_product_multi_add/views/sale_order_views.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
|
||||||
|
<!-- sale,Inherit Form View to Modify it -->
|
||||||
|
<record id="app_view_order_form" model="ir.ui.view">
|
||||||
|
<field name="name">app.sale.order.form</field>
|
||||||
|
<field name="model">sale.order</field>
|
||||||
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//page/field[@name='order_line']" position="attributes">
|
||||||
|
<attribute name="widget">multi_select_tree</attribute>
|
||||||
|
<attribute name="res_model">product.product</attribute>
|
||||||
|
<attribute name="res_field">product_id</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
||||||
6
app_stock_picking_product_multi_add/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import controllers
|
||||||
|
from . import models
|
||||||
|
from . import ir
|
||||||
|
from . import res
|
||||||
63
app_stock_picking_product_multi_add/__manifest__.py
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Created on 2018-08-15
|
||||||
|
# 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 Picking Order Product Multi Batch Add, 库存调拨单批量增加产品",
|
||||||
|
'version': '12.0.8.15',
|
||||||
|
'author': 'Sunpop.cn',
|
||||||
|
'category': 'Base',
|
||||||
|
'website': 'http://www.sunpop.cn',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'sequence': 2,
|
||||||
|
'price': 0.00,
|
||||||
|
'currency': 'USD',
|
||||||
|
'summary': """
|
||||||
|
App Stock Picking Order Product Multi Batch Add, 库存调拨单批量增加产品.
|
||||||
|
Odoo App of Sunpop.cn
|
||||||
|
""",
|
||||||
|
'description': """
|
||||||
|
App Stock Picking Order Product Multi Add.
|
||||||
|
1. One Click to add multi product to Stock Picking Order.
|
||||||
|
2. All the product can filter and group.
|
||||||
|
库存调拨单批量增加产品.
|
||||||
|
1. 可以一键快速将多个产品加到库存调拨单中
|
||||||
|
2. 可对产品进行过滤、分组,然后批量加入
|
||||||
|
""",
|
||||||
|
'depends': [
|
||||||
|
# 'app_web_one2many_multi_add',
|
||||||
|
'stock',
|
||||||
|
],
|
||||||
|
'images': ['static/description/stock1.gif'],
|
||||||
|
'data': [
|
||||||
|
'views/stock_picking_views.xml',
|
||||||
|
],
|
||||||
|
'demo': [
|
||||||
|
],
|
||||||
|
'test': [
|
||||||
|
],
|
||||||
|
'css': [
|
||||||
|
],
|
||||||
|
'qweb': [
|
||||||
|
],
|
||||||
|
'js': [
|
||||||
|
],
|
||||||
|
'post_load': None,
|
||||||
|
'post_init_hook': None,
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
16
app_stock_picking_product_multi_add/i18n/zh_CN.po
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * felive_home
|
||||||
|
#
|
||||||
|
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"
|
||||||
1
app_stock_picking_product_multi_add/ir/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
1
app_stock_picking_product_multi_add/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
2
app_stock_picking_product_multi_add/report/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
1
app_stock_picking_product_multi_add/res/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 39 KiB |
BIN
app_stock_picking_product_multi_add/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
@@ -0,0 +1,138 @@
|
|||||||
|
<section class="oe_container">
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<h2 class="oe_slogan" style="color:#875A7B;">App Stock Picking Order Product Multi Add</h2>
|
||||||
|
<h3>One Click to add multi product to Stock Picking Order.</h3>
|
||||||
|
<h2>Important: This app is depends on a Paid App.
|
||||||
|
<a class="btn btn-danger mb4" href="http://www.odoo.com/apps/modules/12.0/app_web_one2many_multi_add/" target="_blank">app_web_one2many_multi_add</a>
|
||||||
|
</h2>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>One Click to add multi product to Stock Picking Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h3>You may also like these free Apps for odoo.</h3>
|
||||||
|
<ul>
|
||||||
|
<li>1. One Click to add multi product to Sale Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_sale_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>2. One Click to add multi product to Purchase Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_purchase_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>3. One Click to add multi product to MRP Bom.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_mrp_bom_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>4. One Click to add multi product to Stock Picking Order.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_stock_picking_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.
|
||||||
|
<a class="btn btn-primary mb4" href="http://www.odoo.com/apps/modules/12.0/app_account_invoice_product_multi_add/" target="_blank">Free Download from here.</a></li>
|
||||||
|
<li>6. You can also make any one2many field to get this feature by config the xml.</li>
|
||||||
|
<li>7. You can filter or group the product / object, in the pop windows, and the multi select and add to the order</li>
|
||||||
|
</ul>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="cnreadme.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
<h3 class="oe_slogan">Easy to Use. Click "Multi Add Items" in the one2many tree view.</h3>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="use1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>1. One Click to add multi product to Sale Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="sale1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>2. One Click to add multi product to Purchase Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="purchase1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>3. One Click to add multi product to MRP Bom.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="mrp1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>4. One Click to add multi product to Stock Picking Order.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="stock1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>5. One Click to add multi product to Account Customer Invoice, Vendor Bill.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<img src="account1.gif" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="oe_row oe_spaced" style="max-width: 95%;">
|
||||||
|
<div class="oe_demo"
|
||||||
|
style="margin: 20px auto; padding: 0 15px 0 0; border:none; border-top:solid 1px #dedede; width: 96%; ">
|
||||||
|
<h2 class='oe_mt32'>6. You can also make any one2many field to get this feature by config the xml.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="oe_demo oe_screenshot">
|
||||||
|
<p>Check this example.</p>
|
||||||
|
<img src="guide1.jpg" style="border:1px solid black"/>
|
||||||
|
<br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="oe_container oe_dark">
|
||||||
|
<div class="oe_row oe_spaced text-center">
|
||||||
|
<div class="oe_span12">
|
||||||
|
<h2 class="oe_slogan">Technical Help & Support</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 pad0">
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
For any type of technical help & support requests, Feel free to contact us</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:guohuadeng@hotmail.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> guohuadeng@hotmail.com</a>
|
||||||
|
<p><h4>
|
||||||
|
Via QQ: 300883</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="mailto:300883@qq.com"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-envelope"></i> 300883@qq.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="oe_mt16">
|
||||||
|
<p><h4>
|
||||||
|
Visit our website for more support.</h4></p>
|
||||||
|
<a style="background: #002e5a none repeat scroll 0% 0%; color: rgb(255, 255, 255);position: relative; overflow: hidden;"
|
||||||
|
class="btn btn-warning btn-lg" rel="nofollow" href="http://www.sunpop.cn" target="_blank"><span
|
||||||
|
style="height: 354px; width: 354px; top: -147.433px; left: -6.93335px;" class="o_ripple"></span>
|
||||||
|
<i class="fa fa-web"></i>http://www.sunpop.cn</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
BIN
app_stock_picking_product_multi_add/static/description/mrp1.gif
Normal file
|
After Width: | Height: | Size: 2.9 MiB |