Skip to content

Commit

Permalink
Merge branch 'develop' into feature/MOL-536
Browse files Browse the repository at this point in the history
  • Loading branch information
tdang1-shopmacher committed Nov 25, 2024
2 parents 12534c3 + 2dea91a commit 9e5ad04
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ const AvailabilityDetailsForm = (props: TAvailabilityDetailsFormProps) => {

clonedObject[selectedCountry][selectedCurrency].minAmount = '';
clonedObject[selectedCountry][selectedCurrency].maxAmount = '';
clonedObject[selectedCountry][selectedCurrency].surchargeCost = {
percentageAmount: 0,
fixedAmount: '',
};

formik.setValues(clonedObject);
};
Expand Down
4 changes: 2 additions & 2 deletions processor/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion processor/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shopmacher-mollie-processor",
"description": "Integration between commercetools and mollie payment service provider",
"version": "1.2.0-alpha21.11.24.1151",
"version": "1.2.0-alpha22.11.24.1410",
"main": "index.js",
"private": true,
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions processor/src/service/payment.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,8 @@ export const handleCreatePayment = async (ctPayment: Payment): Promise<Controlle

const ctActions = await getCreatePaymentUpdateAction(molliePayment, ctPayment, surchargeAmountInCent);

logger.debug('SCTM - handleCreatePayment - actionslogging', ctActions);

return {
statusCode: 201,
actions: ctActions,
Expand Down

0 comments on commit 9e5ad04

Please sign in to comment.