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

Update installment interest rates #423

Merged
merged 1 commit into from
Dec 6, 2023
Merged
Changes from all commits
Commits
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
12 changes: 6 additions & 6 deletions includes/backends/class-omise-backend-installment.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@ public function initiate()
'installment_first_choice' => array(
'bank_code' => 'first_choice',
'title' => __('Krungsri First Choice', 'omise'),
'interest_rate' => 1.3,
'interest_rate' => 1.16,
'min_allowed_amount' => 300.00,
),

'installment_bay' => array(
'bank_code' => 'bay',
'title' => __('Krungsri', 'omise'),
'interest_rate' => 0.8,
'interest_rate' => 0.74,
'min_allowed_amount' => 500.00,
),

'installment_ktc' => array(
'bank_code' => 'ktc',
'title' => __('Krungthai Card (KTC)', 'omise'),
'interest_rate' => 0.8,
'interest_rate' => 0.74,
'min_allowed_amount' => 300.00,
),

'installment_bbl' => array(
'bank_code' => 'bbl',
'title' => __('Bangkok Bank', 'omise'),
'interest_rate' => 0.8,
'interest_rate' => 0.74,
'min_allowed_amount' => 500.00,
),

Expand Down Expand Up @@ -73,14 +73,14 @@ public function initiate()
'installment_ttb' => array(
'bank_code' => 'ttb',
'title' => __('TMBThanachart Bank', 'omise'),
'interest_rate' => 0,
'interest_rate' => 0.8,
'min_allowed_amount' => 500.00,
),

'installment_uob' => array(
'bank_code' => 'uob',
'title' => __('United Overseas Bank', 'omise'),
'interest_rate' => 0,
'interest_rate' => 0.64,
'min_allowed_amount' => 500.00,
),

Expand Down
Loading