Skip to content

Commit

Permalink
Merge pull request #2446 from solverat/unit_solidifier_check
Browse files Browse the repository at this point in the history
fix unit solidifier paths
  • Loading branch information
dpfaffenbauer authored Nov 14, 2023
2 parents f8771f2 + 532d632 commit 6350c21
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ coreshop.product.workflow.variantUnitDefinitionSolidifier = Class.create({
this.data = object.data;

Ext.Ajax.request({
url: Routing.generate('coreshop_admin_purchsable_variant_unit_solidifier_check', {objectid: this.object.general.o_id}),
url: Routing.generate('coreshop_admin_purchsable_variant_unit_solidifier_check', {objectId: this.object.general.o_id}),
method: 'GET',
success: function (response) {
var res = Ext.decode(response.responseText);
Expand Down Expand Up @@ -58,7 +58,7 @@ coreshop.product.workflow.variantUnitDefinitionSolidifier = Class.create({
this.panel.setLoading(t('loading'));

Ext.Ajax.request({
url: Routing.generate('coreshop_admin_purchsable_variant_unit_solidifier_apply', {objectid: this.object.general.o_id}),
url: Routing.generate('coreshop_admin_purchsable_variant_unit_solidifier_apply', {objectId: this.object.general.o_id}),
method: 'PUT',
success: function (response) {

Expand Down

0 comments on commit 6350c21

Please sign in to comment.