Skip to content

Commit

Permalink
Release of V0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BadPixxel committed Jul 10, 2020
1 parent fbc1e05 commit 91bb1cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion odoo/addons/splashsync/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{
'name': 'splashsync',
'summary': 'SplashSync Connector for Odoo',
'version': '0.0.1',
'version': '0.1.0',
'category': 'Technical Settings',
'website': 'https://www.splashsync.com/',
'author': 'SplashSync',
Expand Down
5 changes: 3 additions & 2 deletions odoo/addons/splashsync/objects/products/relations.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ def buildRelationFields(self):
if "public_categ_ids" in self.getModel().fields_get():
FieldFactory.create(const.__SPL_T_VARCHAR__, "public_categ_ids", "Categorie Id")
FieldFactory.microData("http://schema.org/Product", "publicCategoryId")
FieldFactory.isNotTested()
FieldFactory.create(const.__SPL_T_VARCHAR__, "public_categ", "Public Categorie")
FieldFactory.isReadOnly()
FieldFactory.create(const.__SPL_T_INLINE__, "public_categ", "Public Categorie")
FieldFactory.microData("http://schema.org/Product", "publicCategory")
FieldFactory.addChoices(M2OHelper.get_name_values("product.public.category"))
FieldFactory.isNotTested()
# ==================================================================== #
# Website Alternate Products
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='splashsync',
version="0.0.1",
version="0.1.0",
packages=find_packages(),
namespace_packages=['odoo.addons.splashsync'],
install_requires=["splashpy"],
Expand Down

0 comments on commit 91bb1cc

Please sign in to comment.