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

added wages to zarinpal #275

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion README-FA.md
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,8 @@ class MyDriver extends Driver
);

// Also we can change multiple configs at the same time.
$payment->config(['key1' => 'value1', 'key2' => 'value2'])->purchase(
# wages for zarinpal add like this
$payment->config(['wages' => ['value1','value2'], 'key2' => 'value2'])->purchase(
$invoice,
function($driver, $transactionId) {
// We can store $transactionId in database.
Expand Down
3 changes: 2 additions & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,8 @@ try {
);

// Also we can change multiple configs at the same time.
$payment->config(['key1' => 'value1', 'key2' => 'value2'])->purchase(
# wages for zarinpal add like this
$payment->config(['wages' => ['value1','value2'], 'key2' => 'value2'])->purchase(
$invoice,
function($driver, $transactionId) {
// We can store $transactionId in database.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,8 @@ try {
);

// Also we can change multiple configs at the same time.
$payment->config(['key1' => 'value1', 'key2' => 'value2'])->purchase(
# wages for zarinpal add like this
$payment->config(['wages' => ['value1','value2'], 'key2' => 'value2'])->purchase(
$invoice,
function($driver, $transactionId) {
// We can store $transactionId in database.
Expand Down
7 changes: 6 additions & 1 deletion src/Drivers/Zarinpal/Strategies/Normal.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public function purchase()
"description" => $description,
"metadata" => $this->metadata(),
];
if (isset($this->settings->wages)){
$data['wages'] = $this->settings->wages;
}

$response = $this
->client
Expand Down Expand Up @@ -224,18 +227,20 @@ private function translateStatus($status)
$translations = [
'100' => 'تراکنش با موفقیت انجام گردید',
'101' => 'عمليات پرداخت موفق بوده و قبلا عملیات وریفای تراكنش انجام شده است',
'-9' => 'خطای اعتبار سنجی',
'-9' => 'خطای اعتبار سنجی - مقادیر ورودی ها را کنترل کنید!',
'-10' => 'ای پی و يا مرچنت كد پذيرنده صحيح نمی باشد',
'-11' => 'مرچنت کد فعال نیست لطفا با تیم پشتیبانی ما تماس بگیرید',
'-12' => 'تلاش بیش از حد در یک بازه زمانی کوتاه',
'-15' => 'ترمینال شما به حالت تعلیق در آمده با تیم پشتیبانی تماس بگیرید',
'-16' => 'سطح تاييد پذيرنده پايين تر از سطح نقره ای می باشد',
'-18' => 'دامنه callback با دامنه ثبت شده یکسان نمی باشد',
'-30' => 'اجازه دسترسی به تسویه اشتراکی شناور ندارید',
'-31' => 'حساب بانکی تسویه را به پنل اضافه کنید مقادیر وارد شده برای تسهیم صحيح نمی باشد',
'-32' => 'مقادیر وارد شده برای تسهیم صحيح نمی باشد',
'-33' => 'درصد های وارد شده صحيح نمی باشد',
'-34' => 'مبلغ از کل تراکنش بیشتر است',
'-35' => 'تعداد افراد دریافت کننده تسهیم بیش از حد مجاز است',
'-39' => 'Wages خطا دارد',
'-40' => 'پارامترهای اضافی نامعتبر، expire_in معتبر نیست',
'-50' => 'مبلغ پرداخت شده با مقدار مبلغ در وریفای متفاوت است',
'-51' => 'پرداخت ناموفق',
Expand Down