add row num

This commit is contained in:
ivan deng
2018-09-30 05:22:35 +08:00
parent 329a88a3e0
commit f2ae0915ea
14 changed files with 276 additions and 26 deletions

View File

@@ -34,6 +34,7 @@ http://www.sunpop.cn
## 在符合odoo开源协议的前提下去除odoo版权信息自定义你的odoo
可完全自行设置下列 odoo 选项,让 odoo 看上去像是你的软件产品
支持odoo 12, 11, 10, 9 版本,社区版企业版通用
1. 删除菜单导航页脚的 Odoo 标签
2. 将弹出窗口中 "Odoo" 设置为自定义名称
3. 自定义用户菜单中的 Documentation, Support, About 的链接

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 292 KiB

View File

@@ -1,4 +1,4 @@
<section class="oe_container">
<section class="oe_container app">
<div class="oe_row oe_spaced" style="max-width: 95%;">
<div class="oe_span12">
<h2 class="oe_slogan">12 Ready!! App Odoo Customize</h2>
@@ -14,32 +14,35 @@
<p>Fix Login bug when install website.</p>
<p>Add 19. One Click to clear all data (Sometime pls click twice)</p>
<p>Add 18. Show/Hide Author and Website in Apps Dashboard</p>
<h1>More Powerful addons:
<a class="btn btn-primary mb16" href="http://www.odoo.com/apps/modules/browse?author=Sunpop.cn">Sunpop.cn Addons</a>
</h1>
<div class="row">
<h1 class="col-md-6 text-primary">More Powerful addons:</h1>
<div class="col-md-6">
<a class="btn btn-block btn-success mt16 mb16" href="http://www.odoo.com/apps/modules/browse?author=Sunpop.cn">Sunpop.cn Awesome Odoo Addons</a>
</div>
</div>
<br>
<h3>Add Odoo 11 Support</h3>
<ul>
<li>1. Deletes Odoo label in footer</li>
<li>2. Replaces "Odoo" in Windows title</li>
<li>3. Customize Documentation, Support, About links and title in usermenu</li>
<li>4. Adds "Developer mode" link to the top right-hand User Menu.</li>
<li>5. Adds Quick Language Switcher to the top right-hand User Menu.</li>
<li>6. Adds Country flags to the top right-hand User Menu.</li>
<li>7. Adds English and Chinese user documentation access to the top right-hand User Menu.</li>
<li>8. Adds developer documentation access to the top right-hand User Menu.</li>
<li>9. Customize "My odoo.com account" button</li>
<li>10. Standalone setting panel, easy to setup.</li>
<li>11. Provide 236 country flags.</li>
<li>12. Multi-language Support.</li>
<li>13. Change Powered by Odoo in login screen.(Please change '../views/app_odoo_customize_view.xml' #15)</li>
<li>14. Quick delete test data in Apps: Sales/POS/Purchase/MRP/Inventory/Accounting/Project/Base Models.</li>
<li>15. Reset All the Sequence to beginning of 1: SO/PO/MO/Invoice...</li>
<li>16. Fix odoo reload module translation bug while enable english language</li>
<li>17. Stop Odoo Auto Subscribe(Performance Improve)</li>
<li>18. Show/Hide Author and Website in Apps Dashboard (odoo 11 only)</li>
<li>19. One Click to clear all data (Sometime pls click twice)</li>
<li>20. Set System Icon (odoo 10 only)</li>
<h3>Add Odoo 12, 11 Support</h3>
<ul class="list-group">
<li class="list-group-item">1. Deletes Odoo label in footer</li>
<li class="list-group-item">2. Replaces "Odoo" in Windows title</li>
<li class="list-group-item">3. Customize Documentation, Support, About links and title in usermenu</li>
<li class="list-group-item">4. Adds "Developer mode" link to the top right-hand User Menu.</li>
<li class="list-group-item">5. Adds Quick Language Switcher to the top right-hand User Menu.</li>
<li class="list-group-item">6. Adds Country flags to the top right-hand User Menu.</li>
<li class="list-group-item">7. Adds English and Chinese user documentation access to the top right-hand User Menu.</li>
<li class="list-group-item">8. Adds developer documentation access to the top right-hand User Menu.</li>
<li class="list-group-item">9. Customize "My odoo.com account" button</li>
<li class="list-group-item">10. Standalone setting panel, easy to setup.</li>
<li class="list-group-item">11. Provide 236 country flags.</li>
<li class="list-group-item">12. Multi-language Support.</li>
<li class="list-group-item">13. Change Powered by Odoo in login screen.(Please change '../views/app_odoo_customize_view.xml' #15)</li>
<li class="list-group-item">14. Quick delete test data in Apps: Sales/POS/Purchase/MRP/Inventory/Accounting/Project/Base Models.</li>
<li class="list-group-item">15. Reset All the Sequence to beginning of 1: SO/PO/MO/Invoice...</li>
<li class="list-group-item">16. Fix odoo reload module translation bug while enable english language</li>
<li class="list-group-item">17. Stop Odoo Auto Subscribe(Performance Improve)</li>
<li class="list-group-item">18. Show/Hide Author and Website in Apps Dashboard (odoo 11 only)</li>
<li class="list-group-item">19. One Click to clear all data (Sometime pls click twice)</li>
<li class="list-group-item">20. Set System Icon (odoo 10 only)</li>
</ul>
<p>
This module can help to white label the Odoo.

View File

@@ -0,0 +1,5 @@
.app .list-group .list-group-item {
border: 0;
border-bottom: 1px solid #00A09D;
padding: 10px;
}

View File

@@ -3,6 +3,7 @@
<data>
<template id="switch_language" name="switch_language assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/app_odoo_customize/static/src/css/index.css"/>
<link rel="stylesheet" href="/app_odoo_customize/static/src/css/app.css"/>
<script type="text/javascript" src="/app_odoo_customize/static/src/js/app_window_title.js"/>
<script type="text/javascript" src="/app_odoo_customize/static/src/js/customize_user_menu.js"></script>