Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add configurable support #264

Open
wants to merge 33 commits into
base: 10.0
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3224dc8
[WIP] add configurable inheritage
PierrickBrun Oct 10, 2017
7792275
[IMP] product attribute prices
PierrickBrun Oct 26, 2017
19fdd94
[FIX] improvements & tests
PierrickBrun Nov 20, 2017
ed69b05
[IMP] Add flag on product.product created from a configurable parent …
PierrickBrun Jan 8, 2018
546a40d
[IMP] adds possibility to search for inactive product.product as conf…
PierrickBrun Jan 9, 2018
4ee68cd
add possibility to store attribute name/code in different fields easily
PierrickBrun Jan 9, 2018
656c15a
fix use another field for attribute code
PierrickBrun Jan 9, 2018
0097921
fix use another name field
PierrickBrun Jan 9, 2018
3b85df7
[FIX] better handling of templates unlink
PierrickBrun Feb 6, 2018
6fe9685
[WIP] add configurable inheritage
PierrickBrun Oct 10, 2017
85c1a63
[IMP] product attribute prices
PierrickBrun Oct 26, 2017
c6d5aad
[FIX] improvements & tests
PierrickBrun Nov 20, 2017
0c44ece
[IMP] Add flag on product.product created from a configurable parent …
PierrickBrun Jan 8, 2018
6732263
[IMP] adds possibility to search for inactive product.product as conf…
PierrickBrun Jan 9, 2018
316db3c
add possibility to store attribute name/code in different fields easily
PierrickBrun Jan 9, 2018
43555be
fix use another field for attribute code
PierrickBrun Jan 9, 2018
3405c1d
fix use another name field
PierrickBrun Jan 9, 2018
b897dd9
[FIX] better handling of templates unlink
PierrickBrun Feb 6, 2018
3e84eb9
fix flake8
PierrickBrun Feb 6, 2018
c992a55
Merge branch '10-configurable' of https://github.com/akretion/connect…
PierrickBrun Feb 6, 2018
7f32947
[FIX] remove useless parameter
PierrickBrun Feb 7, 2018
d46dbf7
[FIX] only unlink selected templates if they are not referenced
PierrickBrun Feb 12, 2018
2882424
[FIX] allowed the creation of several product.attribute.line for a un…
PierrickBrun Feb 19, 2018
eb55905
[WIP] add magento.product.template
PierrickBrun Mar 8, 2018
641c13f
[IMP] big refactoring : fixed conflicts with ERP and added support of…
PierrickBrun Mar 9, 2018
ea9f218
[FIX] product.attribute.lines not created
PierrickBrun Mar 12, 2018
c4ffd66
[IMP] add magento fields on product_template view
PierrickBrun Mar 12, 2018
b3051c4
[FIX] use magento.product.template in tests
PierrickBrun Mar 12, 2018
f115574
[FIX] tests
PierrickBrun Mar 13, 2018
33f682c
[FIX] small fixes
PierrickBrun Mar 15, 2018
abc95a6
fix conflict
PierrickBrun Mar 15, 2018
5d0bc1f
[FIX] setting the variable "variant_managed_by_magento" should be don…
sebastienbeau Apr 18, 2018
6ddabd3
[IMP] add hack to not import description
sebastienbeau Nov 12, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[FIX] remove useless parameter
  • Loading branch information
PierrickBrun committed Feb 7, 2018
commit 7f329470be9947f3c45e9081cdd6081cba240ae4
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ def _get_magento_product_attribute_line(self,
return line

def _import_magento_product_attribute_line(self,
record, variant,
record,
attribute, value):
line = self._get_magento_product_attribute_line(
attribute,
@@ -86,7 +86,6 @@ def run(self, filters=None):
]])
self._import_magento_product_attribute_line(
record,
variant,
attribute,
value,
)