Skip to content

Commit

Permalink
quickfix for postfinder
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Lauterbach committed Dec 10, 2015
1 parent c5c0395 commit 057150b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3253,12 +3253,12 @@ PlentyFramework.cssClasses = {
{
if ( shippingAddress.Street == "PACKSTATION" )
{
shippingAddress.isPackstation = 1;
shippingAddress.IsPackstation = 1;
shippingAddress.PackstationNo = shippingAddress.HouseNo;
}
else if ( shippingAddress.Street == "POSTFILIALE" )
{
shippingAddress.isPostfiliale = 1;
shippingAddress.IsPostfiliale = 1;
shippingAddress.PostfilialNo = shippingAddress.HouseNo;
}

Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plentymarketsCMStools",
"license": "AGPL-3.0",
"version": "1.0.1",
"version": "1.0.2",
"repository": "https://github.com/plentymarkets/plenty-cms-library.git",
"devDependencies": {
"grunt": "^0.4.5",
Expand Down
4 changes: 2 additions & 2 deletions src/services/CheckoutService.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@
{
if ( shippingAddress.Street == "PACKSTATION" )
{
shippingAddress.isPackstation = 1;
shippingAddress.IsPackstation = 1;
shippingAddress.PackstationNo = shippingAddress.HouseNo;
}
else if ( shippingAddress.Street == "POSTFILIALE" )
{
shippingAddress.isPostfiliale = 1;
shippingAddress.IsPostfiliale = 1;
shippingAddress.PostfilialNo = shippingAddress.HouseNo;
}

Expand Down

0 comments on commit 057150b

Please sign in to comment.