[REL] Flectra v1.3 Sunbeam
This commit is contained in:
parent
74910c1ef9
commit
28cd526602
26
CHANGELOG.md
26
CHANGELOG.md
@ -10,6 +10,32 @@ This changelog contains things those are improved version by version and also th
|
|||||||
So, users can consider this **CHANGELOG** to find the differences between **Flectra** and **Odoo(Community Edition)**.
|
So, users can consider this **CHANGELOG** to find the differences between **Flectra** and **Odoo(Community Edition)**.
|
||||||
|
|
||||||
|
|
||||||
|
## [1.3.0] - Sunbeam - 2018-06-21
|
||||||
|
### Added
|
||||||
|
- Blanket Sales Orders
|
||||||
|
- Blanket Purchase Orders
|
||||||
|
- Advance Pricelist Porting For Ecommerce
|
||||||
|
- Stock Ageing Report
|
||||||
|
- Stock Cycle Count
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- #60 Thumbnail Error
|
||||||
|
- #67 OAUTHLIB ERROR in Flectra Rest API for Windows
|
||||||
|
- #69 Menu Edit error
|
||||||
|
- #70 access_token header not found REST API
|
||||||
|
- #71 ERROR IN REST API AUTHENTICATION
|
||||||
|
- #73 REST API BUGS
|
||||||
|
- #74 ValueError for module license opl-1
|
||||||
|
- #75 Print current view with CTRL+P will also print the main menu
|
||||||
|
- [Invoicing] Fiscal Period is now visible in Invoicing Configuration
|
||||||
|
- [Invoicing] HSN calculation issue on gstr-2 summary
|
||||||
|
- [Invoicing] indian chart of account issue, gst traceback on partner form
|
||||||
|
- [Invoicing] singapore account tax group
|
||||||
|
- [Ecommerce] Search criteria can be cleared from ecommerce search bar
|
||||||
|
- [Ecommerce] Translation Issue of Theme Selector Dropdown
|
||||||
|
- [Ecommerce] Website Menu write() call fixed with unknown fields: 'is_homepage' while changing menu sequence on website
|
||||||
|
- [Ecommerce] product page filter for radio button
|
||||||
|
|
||||||
## [1.2.0] - WoodStar - 2018-04-23
|
## [1.2.0] - WoodStar - 2018-04-23
|
||||||
### Added
|
### Added
|
||||||
- Manage product category visibility on website by partners/customers tags
|
- Manage product category visibility on website by partners/customers tags
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
Metadata-Version: 1.1
|
Metadata-Version: 1.1
|
||||||
Name: OpenERP
|
Name: Flectra
|
||||||
Version: 6.0.0
|
Version: 1.2.0
|
||||||
Author: OpenERP S.A.
|
Author: FlectraHQ
|
||||||
Author-email: fp at openerp com
|
Author-email: info at flectrahq com
|
||||||
Maintainer: OpenERP S.A.
|
Maintainer: FlectraHQ
|
||||||
Maintainer-email: fp at openerp com
|
Maintainer-email: info at flectrahq com
|
||||||
Home-page: http://www.openerp.com
|
Home-page: https://flectrahq.com
|
||||||
Download-url: http://www.openerp.com/downloads.html
|
Download-url: https://flectrahq.com/download
|
||||||
Summary: OpenERP is an Enterprise Resource Management written entirely in python.
|
Summary: Flectra is an Enterprise Resource Management written entirely in python.
|
||||||
License: GPL-3
|
License: LGPL-3
|
||||||
Description: OpenERP is a complete ERP and CRM. The main features are accounting (analytic
|
Description: Flectra is a complete ERP and CRM. The main features are accounting (analytic
|
||||||
and financial), stock management, sales and purchases management, tasks
|
and financial), stock management, sales and purchases management, tasks
|
||||||
automation, marketing campaigns, help desk, POS, etc. Technical features include
|
automation, marketing campaigns, help desk, POS, etc. Technical features include
|
||||||
a distributed server, flexible workflows, an object database, a dynamic GUI,
|
a distributed server, flexible workflows, an object database, a dynamic GUI,
|
||||||
|
@ -12,7 +12,7 @@ RELEASE_LEVELS_DISPLAY = {ALPHA: ALPHA,
|
|||||||
# properly comparable using normal operarors, for example:
|
# properly comparable using normal operarors, for example:
|
||||||
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
|
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
|
||||||
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
|
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
|
||||||
version_info = (1, 2, 0, FINAL, 0, '')
|
version_info = (1, 3, 0, FINAL, 0, '')
|
||||||
version = '.'.join(str(s) for s in version_info[:2]) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5]
|
version = '.'.join(str(s) for s in version_info[:2]) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5]
|
||||||
series = serie = major_version = '.'.join(str(s) for s in version_info[:2])
|
series = serie = major_version = '.'.join(str(s) for s in version_info[:2])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user