From 7631600521b80f608252c11f6a650f32cb71aa55 Mon Sep 17 00:00:00 2001 From: merdan Date: Wed, 2 Mar 2022 15:04:31 +0500 Subject: [PATCH] payment methods finish fx --- packages/Sarga/Payment/Config/paymentmethods.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/Sarga/Payment/Config/paymentmethods.php b/packages/Sarga/Payment/Config/paymentmethods.php index 3791716c3..afa4b2059 100644 --- a/packages/Sarga/Payment/Config/paymentmethods.php +++ b/packages/Sarga/Payment/Config/paymentmethods.php @@ -1,7 +1,7 @@ [ - 'code' => 'cashbeforedelivery', + 'code' => 'cash100', 'title' => "I\\'ll pay by cash with deposit 100%", 'description' => 'Pay deposit 100% to gain 10% discount', 'class' => 'Sarga\Payment\Methods\Cash100', @@ -9,7 +9,7 @@ return [ 'sort' => 2, ], 'cash50' =>[ - 'code' => 'cashbeforedelivery', + 'code' => 'cash50', 'title' => "I\\'ll pay by cash with deposit 50%", 'description' => 'Pay deposit 50%', 'class' => 'Sarga\Payment\Methods\Cash50', @@ -17,7 +17,7 @@ return [ 'sort' => 2, ], 'terminal100' => [ - 'code' => 'terminal', + 'code' => 'terminal100', 'title' => "I\\'ll pay by card on terminal", 'description' => '50% deposit is taken before delivery', 'class' => 'Sarga\Payment\Methods\Terminal100', @@ -25,7 +25,7 @@ return [ 'sort' => 3, ], 'terminal50' => [ - 'code' => 'terminal', + 'code' => 'terminal50', 'title' => "I\\'ll pay by card on terminal", 'description' => '50% deposit is taken before delivery', 'class' => 'Sarga\Payment\Methods\Terminal50',