forked from Danoosh/bankmellat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bankmellat.php
543 lines (489 loc) · 24 KB
/
bankmellat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<?php
/*
* 2013 Presta-Shop.ir
*
* Do not edit or remove author copyright
* if you have any problem contact us at presta-shop.ir/forum/Thread-2487.html
*
* @author Danoosh Miralayi @ Presta-Shop.ir <[email protected]>
* @copyright 2013 Presta-Shop.ir
* نکته مهم:
* حذف یا تغییر این اطلاعات به هر شکلی ممنوع بوده و پیگرد قانونی دارد
*/
class BankMellat extends PaymentModule
{
private $_html = ''; //Test
private $_webservice = 'https://pgws.bpm.bankmellat.ir/pgwchannel/services/pgw?wsdl';
private $_new_webservice = 'https://pgwsf.bpm.bankmellat.ir:1443/pgwchannel/services/pgw?wsdl';
private $_shaparak_webservice = 'https://bpm.shaparak.ir/pgwchannel/services/pgw?wsdl';
private $_startPay = 'https://pgw.bpm.bankmellat.ir/pgwchannel/startpay.mellat';
private $_startPay_shaparak = 'https://bpm.shaparak.ir/pgwchannel/startpay.mellat';
private $_postErrors = array();
private $_namespace = 'http://interfaces.core.sw.bps.com/';
public function __construct(){
$this->name = 'bankmellat';
$this->tab = 'payments_gateways';
$this->version = '2.8.2';
$this->author = 'Danoosh @ Presta-Shop.IR';
$this->currencies = true;
$this->currencies_mode = 'checkbox';
parent::__construct();
$this->context = Context::getContext();
$this->page = basename(__FILE__, '.php');
$this->displayName = $this->l('Mellat Payment');
$this->description = $this->l('A free module to pay online for Mellat.');
$this->confirmUninstall = $this->l('Are you sure, you want to delete your details?');
if (!sizeof(Currency::checkPaymentCurrencies($this->id)))
$this->warning = $this->l('No currency has been set for this module');
$config = Configuration::getMultiple(array('Bank_Mellat_TerminalId', ''));
if (!isset($config['Bank_Mellat_TerminalId']))
$this->warning = $this->l('Your Mellat TerminalId must be configured in order to use this module');
$config = Configuration::getMultiple(array('Bank_Mellat_UserName', ''));
if (!isset($config['Bank_Mellat_UserName']))
$this->warning = $this->l('Your Mellat username must be configured in order to use this module');
$config = Configuration::getMultiple(array('Bank_Mellat_UserPassword', ''));
if (!isset($config['Bank_Mellat_UserPassword']))
$this->warning = $this->l('Your Mellat password must be configured in order to use this module');
if ($_SERVER['SERVER_NAME'] == 'localhost')
$this->warning = $this->l('Your are in localhost, Mellat Payment can\'t validate order');
$use_new_webservise = Configuration::get('Bank_Mellat_newWebservice');
$use_shaparak = Configuration::get('Bank_Mellat_SHAPARAK');
if($use_shaparak)
{
$this->webservice = $this->_shaparak_webservice;
$this->link = $this->_startPay_shaparak;
}
else
{
$this->webservice = ($use_new_webservise ? $this->_new_webservice : $this->_webservice);
$this->link = $this->_startPay;
}
}
public function install(){
if (!parent::install()
OR !Configuration::updateValue('Bank_Mellat_TerminalId', '')
OR !Configuration::updateValue('Bank_Mellat_UserName', '')
OR !Configuration::updateValue('Bank_Mellat_UserPassword', '')
OR !Configuration::updateValue('Bank_Mellat_BP_Test_Payment', 0)
OR !Configuration::updateValue('Bank_Mellat_newWebservice', 0)
OR !Configuration::updateValue('Bank_Mellat_SHAPARAK', 1)
OR !Configuration::updateValue('Bank_Mellat_phpDisplayErrors', 0)
OR !$this->registerHook('payment')
OR !$this->registerHook('paymentReturn')){
return false;
}else{
return true;
}
}
public function uninstall(){
if (!Configuration::deleteByName('Bank_Mellat_TerminalId')
OR !Configuration::deleteByName('Bank_Mellat_UserName')
OR !Configuration::deleteByName('Bank_Mellat_UserPassword')
OR !Configuration::deleteByName('Bank_Mellat_newWebservice')
OR !Configuration::deleteByName('Bank_Mellat_SHAPARAK')
OR !Configuration::deleteByName('Bank_Mellat_BP_Test_Payment')
OR !Configuration::deleteByName('Bank_Mellat_phpDisplayErrors')
OR !parent::uninstall())
return false;
return true;
}
public function displayFormSettings()
{
$this->_html .= '
<form action="'.$_SERVER['REQUEST_URI'].'" method="post">
<fieldset>
<legend><img src="../img/admin/cog.gif" alt="" class="middle" />'.$this->l('Settings').'</legend>
<label>'.$this->l('terminalId').'</label>
<div class="margin-form"><input type="text" size="30" name="terminalId" value="'.Configuration::get('Bank_Mellat_TerminalId').'" /></div>
<label>'.$this->l('userName').'</label>
<div class="margin-form"><input type="text" size="30" name="userName" value="'.Configuration::get('Bank_Mellat_UserName').'" /></div>
<label>'.$this->l('userPassword').'</label>
<div class="margin-form"><input type="password" size="30" name="userPassword" value="'.Configuration::get('Bank_Mellat_UserPassword').'" /></div>
<label>'.$this->l('وب سرویس شاپرک').'</label>
<div class="margin-form"><input type="radio" value="1" name="shaparak" '.(Configuration::get('Bank_Mellat_SHAPARAK')=='1' ? "checked" : "").' /> <span>'.$this->l('Yes').'</span>
<input type="radio" value="0" name="shaparak" '.(Configuration::get('Bank_Mellat_SHAPARAK')=='0' ? "checked" : "").' /> <span>'.$this->l('No').'</span><p class="span" name="help_box">از دی ماه 1392 بانک های کشور از سیستم شاپرک استفاده می کنند. در صورت نیاز و یا تغییر در آینده می توانید با غیرفعال سازی شاپرک از وب سرویس های قدیمی استفاده کنید.</p></div>
<div style=" '.(Configuration::get('Bank_Mellat_SHAPARAK')=='0' ? "" : "display:none;").' "><label>'.$this->l('وب سرویس').'</label>
<div class="margin-form"><input type="radio" value="1" name="newWebservice" '.(Configuration::get('Bank_Mellat_newWebservice')=='1' ? "checked" : "").' /> <span>'.$this->l('دوم').'</span>
<input type="radio" value="0" name="newWebservice" '.(Configuration::get('Bank_Mellat_newWebservice')=='0' ? "checked" : "").' /> <span>'.$this->l('اول').'</span><span class="hint" name="help_box">این وب سرویس مناسب هاست های خارج کشور است. فقط در صورتی که در اتصال به بانک مشکل دارید فعال کنید. قبل از فعال سازی از تست پایین صفحه استفاده کنید.</span></div></div>
<label>'.$this->l('تست متد reversal').'</label>
<div class="margin-form"><input value="1" type="radio" name="bpTestPayment" '.(Configuration::get('Bank_Mellat_BP_Test_Payment')=='1' ? "checked" : "").' /> <span>'.$this->l('Yes').'</span>
<input type="radio" value="0" name="bpTestPayment" '.(Configuration::get('Bank_Mellat_BP_Test_Payment')=='0' ? "checked" : "").' /> <span>'.$this->l('No').'</span><span class="hint" name="help_box">جهت تست تابع Reversal در هنگام پرداخت. این گزینه فقط به درخواست شرکت به پرداخت باید فعال شود.</span></div>
<label>'.$this->l('خطایابی PHP').'</label>
<div class="margin-form"><input type="radio" value="1" name="phpDisplayErrors" '.(Configuration::get('Bank_Mellat_phpDisplayErrors')=='1' ? "checked" : "").' /> <span>'.$this->l('Yes').'</span>
<input type="radio" value="0" name="phpDisplayErrors" '.(Configuration::get('Bank_Mellat_phpDisplayErrors')=='0' ? "checked" : "").' /> <span>'.$this->l('No').'</span><span class="hint" name="help_box">جهت کشف خطاهای سرور و یا پرستاشاپ مناسب است. فقط در صورتی که در اتصال به بانک مشکل دارید فعال کنید. فراموش نکنید بعد از رفع مشکل آن را غیرفعال کنید.</span></div>
<center><input type="submit" name="submitMellat" value="'.$this->l('Update Settings').'" class="button" /></center>
</fieldset>
</form>';
}
public function checkWebservices()
{
$this->_html .= '<form action="'.$_SERVER['REQUEST_URI'].'" method="post"><br />
<fieldset>
<legend><img src="../img/admin/cog.gif" alt="" class="middle" />'.$this->l('بررسی وب سرویس').'</legend>
<p>نکته: این تست اعتبار کامل ندارد و ممکن است در عمل نتیجه متفاوتی بگیرید.</p><p>';
if (Tools::getValue('submitCheck'))
{
$connection = @fsockopen('pgws.bpm.bankmellat.ir', '443');
if (is_resource($connection))
$this->_html .= 'وب سرویس قدیمی: بله</p><p>';
else $this->_html .= 'وب سرویس قدیمی: خیر</p><p>';
$connection = @fsockopen('pgwsf.bpm.bankmellat.ir', '1443');
if (is_resource($connection))
$this->_html .= 'وب سرویس جدید: بله</p>';
else $this->_html .= 'وب سرویس جدید: خیر</p>';
}
$this->_html .= '
<center><input type="submit" name="submitCheck" value="'.$this->l('بررسی امکان اتصال به وب سرویس').'" class="button" />
<p style="text-align:center;">این عمل ممکن است مدتی طول بکشد. شکیبا باشید.</p></center>
</fieldset></form>
<p></p>
<fieldset>
<legend>اطلاعات</legend>
<p><a href="http://presta-shop.ir/forum/Thread-2487.html"> + پشتیبانی در انجمن</a></p>
<p> + کپی رایت : <a href="http://presta-shop.ir">پرستاشاپ پارسی</a></p>
<p> + نویسنده: دانوش میرعلایی مطلق</p>
</fieldset>
';
}
public function displayConf()
{
$this->_html .= '<div class="conf confirm"> '.$this->l('Settings updated').'</div>';
}
public function displayErrors()
{
foreach ($this->_postErrors AS $err)
$this->_html .= '<div class="alert error">'. $err .'</div>';
}
public function getContent()
{
$this->_html = '<h2>'.$this->l('Mellat Payment').'</h2>';
if (isset($_POST['submitMellat']))
{
if (empty($_POST['terminalId']))
$this->_postErrors[] = $this->l('Mellat TerminalId is required.');
if (empty($_POST['userName']))
$this->_postErrors[] = $this->l('Your username is required.');
if (empty($_POST['userPassword']))
$this->_postErrors[] = $this->l('Your password is required.');
if (!sizeof($this->_postErrors))
{
Configuration::updateValue('Bank_Mellat_TerminalId', $_POST['terminalId']);
Configuration::updateValue('Bank_Mellat_UserName', $_POST['userName']);
Configuration::updateValue('Bank_Mellat_UserPassword', $_POST['userPassword']);
Configuration::updateValue('Bank_Mellat_newWebservice', $_POST['newWebservice']);
Configuration::updateValue('Bank_Mellat_SHAPARAK', $_POST['shaparak']);
Configuration::updateValue('Bank_Mellat_BP_Test_Payment', $_POST['bpTestPayment']);
Configuration::updateValue('Bank_Mellat_phpDisplayErrors', $_POST['phpDisplayErrors']);
$this->displayConf();
}
else
$this->displayErrors();
}
$this->displayFormSettings();
//$this->checkWebservices();
return $this->_html;
}
public function prePayment()
{
include_once('lib/nusoap.php');
$soapclient = new nusoap_client($this->webservice,'wsdl');
if (!$err = $soapclient->getError())
$soapProxy = $soapclient->getProxy() ;
if ( (!$soapclient) OR $err ) {
$this->_postErrors[] = $this->l('Could not connect to bank or service.');
return $this->_postErrors;
}
else
{
$purchase_currency = new Currency(Currency::getIdByIsoCode('IRR'));
$current_currency = new Currency($this->context->cookie->id_currency);
if($current_currency->id == $purchase_currency->id)
$PurchaseAmount= number_format($this->context->cart->getOrderTotal(true, 3), 0, '', '');
else
$PurchaseAmount= number_format($this->convertPriceFull($this->context->cart->getOrderTotal(true, 3), $current_currency, $purchase_currency), 0, '', '');
$additionalData = "Cart Number: ".$this->context->cart->id." Customer ID: ".$this->context->cart->id_customer;
$params = array(
'terminalId' => Configuration::get('Bank_Mellat_TerminalId'),
'userName' => Configuration::get('Bank_Mellat_UserName'),
'userPassword' => Configuration::get('Bank_Mellat_UserPassword'),
'orderId' => ($this->context->cart->id).date('YmdHis'),
'amount' => (int)$PurchaseAmount,
'callBackUrl' => $this->context->link->getModuleLink('bankmellat', 'validation'),
'localDate' => date('Ymd'),
'localTime' => date("His"),
'additionalData' => $additionalData,
'payerId' => 0
);
$res = $soapclient->call('bpPayRequest', $params, $this->_namespace);
if ($soapclient->fault OR $err = $soapclient->getError())
{
$this->_postErrors[] = $this->l('Could not connect to bank or service.');
$this->displayErrors();
return $this->_postErrors;
}
else
{
// Display the result
if (is_array($res))
$ress = explode (',',$res['return']);
else
$ress = explode (',',$res);
$ResCode = $ress[0];
$RefId = $ress[1];
if ($ResCode == "0")
{
$this->context->cookie->__set("RefId", $RefId);
$this->context->cookie->__set("amount", (int)$PurchaseAmount);
$this->context->smarty->assign(array(
'redirect_link' => $this->link,
'ref_id' => $RefId
));
return true;
}
else {
$this->showMessages($ResCode);
return $this->_postErrors;
}
}
}
}
public function verify($saleOrderId,$saleReferenceId,$soapclient = NULL)
{
if(!$soapclient)
{
include_once('lib/nusoap.php');
$soapclient = new nusoap_client($this->webservice,'wsdl');
}
if (!$soapclient)
{
$this->_postErrors[] = $this->l('اتصال به بانک برقرار نشد');
// if(!empty($err))
// $this->_postErrors[] = $err;
return $this->_postErrors;
// return $return;
}
// Params For Verify
$params = array(
'terminalId' => Configuration::get('Bank_Mellat_TerminalId'),
'userName' => Configuration::get('Bank_Mellat_UserName'),
'userPassword' => Configuration::get('Bank_Mellat_UserPassword'),
'orderId' => ($this->context->cart->id).date('YmdHis'),
'saleOrderId' => $saleOrderId,
'saleReferenceId' => $saleReferenceId
);
$result = $soapclient->call('bpVerifyRequest', $params, $this->_namespace);
if ($soapclient->fault OR $err = $soapclient->getError())
{
$this->_postErrors[] = $this->l('Could not connect to bank or service.');
return $this->_postErrors;
}
if ($result['return'] != "0"){
$this->showMessages($result['return']);
return $this->_postErrors;
}
return true;
}
public function settle($saleOrderId,$saleReferenceId, $soapclient = NULL)
{
if(!$soapclient)
{
include_once('lib/nusoap.php');
$soapclient = new nusoap_client($this->webservice,'wsdl');
}
if (!$soapclient)
{
$this->_postErrors[] = $this->l('اتصال به بانک برقرار نشد');
// if(!empty($err))
// $this->_postErrors[] = $err;
return $this->_postErrors;
// return $return;
}
//Params for settle
$params = array(
'terminalId' => Configuration::get('Bank_Mellat_TerminalId'),
'userName' => Configuration::get('Bank_Mellat_UserName'),
'userPassword' => Configuration::get('Bank_Mellat_UserPassword'),
'orderId' => ($this->context->cart->id).date('YmdHis'),
'saleOrderId' => $saleOrderId,
'saleReferenceId' => $saleReferenceId
);
$result = $soapclient->call('bpSettleRequest', $params, $this->_namespace);
if ($soapclient->fault OR $err = $soapclient->getError())
{
$this->_postErrors[] = $this->l('Could not connect to bank or service.');
return $this->_postErrors;
}
if ($result['return'] != "0"){
$this->showMessages($result['return']);
return $this->_postErrors;
//return $return;
}
return true;
}
public function inquiry($saleOrderId,$saleReferenceId, $soapclient =NULL)
{
if(!$soapclient)
{ include_once('lib/nusoap.php');
$soapclient = new nusoap_client($this->webservice,'wsdl');
}
if (!$soapclient)
{
$this->_postErrors[] = $this->l('اتصال به بانک برقرار نشد');
// if(!empty($err))
// $this->_postErrors[] = $err;
return $this->_postErrors;
// return $return;
}
//Params for inquiry
$params = array(
'terminalId' => Configuration::get('Bank_Mellat_TerminalId'),
'userName' => Configuration::get('Bank_Mellat_UserName'),
'userPassword' => Configuration::get('Bank_Mellat_UserPassword'),
'orderId' => ($this->context->cart->id).date('YmdHis'),
'saleOrderId' => $saleOrderId,
'saleReferenceId' => $saleReferenceId
);
$result = $soapclient->call('bpInquiryRequest', $params, $this->_namespace);
if ($soapclient->fault OR $err = $soapclient->getError())
{
$this->_postErrors[] = $this->l('Could not connect to bank or service.');
return $this->_postErrors;
}
if ($result['return'] != "0"){
$this->showMessages($result['return']);
return $this->_postErrors;
}
return true;
}
public function reverse($saleOrderId,$saleReferenceId, $soapclient = NULL)
{
if(!$soapclient)
{ include_once('lib/nusoap.php');
$soapclient = new nusoap_client($this->webservice,'wsdl');
}
if (!$soapclient)
{
$this->_postErrors[] = $this->l('اتصال به بانک برقرار نشد');
// if(!empty($err))
// $this->_postErrors[] = $err;
return $this->_postErrors;
// return $return;
}
//Params for reversal
$params = array(
'terminalId' => Configuration::get('Bank_Mellat_TerminalId'),
'userName' => Configuration::get('Bank_Mellat_UserName'),
'userPassword' => Configuration::get('Bank_Mellat_UserPassword'),
'orderId' => ($this->context->cart->id).date('YmdHis'),
'saleOrderId' => $saleOrderId,
'saleReferenceId' => $saleReferenceId
);
$result = $soapclient->call('bpReversalRequest', $params, $this->_namespace);
if ($soapclient->fault OR $err = $soapclient->getError())
{
$this->_postErrors[] = $this->l('Could not connect to bank or service.');
return $this->_postErrors;
}
if ($result['return'] != "0"){
$this->showMessages($result['return']);
return $this->_postErrors;
}
return true;
}
public function showMessages($result)
{
switch($result)
{
case 0: $this->_postErrors[]=$this->l('تراکنش با موفقیت انحام شد'); break;
case 11: $this->_postErrors[]=$this->l('شماره کارت نامعتبر است'); break;
case 12: $this->_postErrors[]=$this->l('موجودی کافی نیست'); break;
case 13: $this->_postErrors[]=$this->l('رمز نادرست است'); break;
case 14: $this->_postErrors[]=$this->l('تعداد دفعات وارد کردن رمز بیش از حد مجاز است'); break;
case 15: $this->_postErrors[]=$this->l('کارت نامعتبر است'); break;
case 16: $this->_postErrors[]=$this->l('دفعات برداشت وجه بیش از حد مجاز است'); break;
case 17: $this->_postErrors[]=$this->l('کاربر از انجام تراکنش منصرف شده است'); break;
case 18: $this->_postErrors[]=$this->l('تاریخ انقضای کارت گذشته است'); break;
case 19: $this->_postErrors[]=$this->l('مبلغ برداشت وجه بیش از حد مجاز است'); break;
case 111: $this->_postErrors[]=$this->l('صادر کننده کارت نامعتبر است'); break;
case 112: $this->_postErrors[]=$this->l('خطای سوییچ صادر کننده کارت'); break;
case 113: $this->_postErrors[]=$this->l('پاسخی از صادر کننده کارت دریافت نشد'); break;
case 114: $this->_postErrors[]=$this->l('دارنده کارت مجاز به انجام این تراکنش نیست'); break;
case 21: $this->_postErrors[]=$this->l('پذیرنده نامعتبر است'); break;
case 23: $this->_postErrors[]=$this->l('خطای امنیتی رخ داده است'); break;
case 24: $this->_postErrors[]=$this->l('اطلاعات کاربری پذیرنده نامعتبر است'); break;
case 25: $this->_postErrors[]=$this->l('مبلغ نامعتبر است'); break;
case 31: $this->_postErrors[]=$this->l('پاسخ نامعتبر است'); break;
case 32: $this->_postErrors[]=$this->l('فرمت اطلاعات وارد شده صحیح نمی باشد'); break;
case 33: $this->_postErrors[]=$this->l('حساب نامعتبر است'); break;
case 34: $this->_postErrors[]=$this->l('خطای سیستمی'); break;
case 35: $this->_postErrors[]=$this->l('تاریخ نامعتبر است'); break;
case 41: $this->_postErrors[]=$this->l('شماره درخواست تکراری است'); break;
case 42: $this->_postErrors[]=$this->l('تراکنش Sale یافت نشد'); break;
case 43: $this->_postErrors[]=$this->l('قبلا درخواست Verify داده شده است'); break;
case 44: $this->_postErrors[]=$this->l('درخواست Verify یافت نشد'); break;
case 45: $this->_postErrors[]=$this->l('تراکنش Settle شده است'); break;
case 46: $this->_postErrors[]=$this->l('تراکنش Settle نشده است'); break;
case 47: $this->_postErrors[]=$this->l('تراکنش Settle یافت نشد'); break;
case 48: $this->_postErrors[]=$this->l('تراکنش Reverse شده است'); break;
case 49: $this->_postErrors[]=$this->l('تراکنش Refund یافت شند'); break;
case 412: $this->_postErrors[]=$this->l('شناسه قبض نادرست است'); break;
case 413: $this->_postErrors[]=$this->l('شناسه پرداخت نادرست است'); break;
case 414: $this->_postErrors[]=$this->l('سازمان صادر کننده قبض نامعتبر است'); break;
case 415: $this->_postErrors[]=$this->l('زمان جلسه کاری به پایان رسیده است'); break;
case 416: $this->_postErrors[]=$this->l('خطا در ثبت اطلاعات'); break;
case 417: $this->_postErrors[]=$this->l('شناسه پرداخت کننده نامعتبر است'); break;
case 418: $this->_postErrors[]=$this->l('اشکال در تعریف اطلاعات مشتری'); break;
case 419: $this->_postErrors[]=$this->l('تعداد دفعات ورود اطلاعات از حد مجاز گذشته است'); break;
case 421: $this->_postErrors[]=$this->l('IP نامعتبر است'); break;
case 51: $this->_postErrors[]=$this->l('تراکنش تکراری است'); break;
case 54: $this->_postErrors[]=$this->l('تراکنش مرجع موجود نیست'); break;
case 55: $this->_postErrors[]=$this->l('تراکنش نامعتبر است'); break;
case 61: $this->_postErrors[]=$this->l('خطا در واریز'); break;
}
return $this->_postErrors;
}
// to show only one error
public function showErrorMessages($result)
{
$Message = $this->showMessages($result);
$this->_html = '';
$this->_postErrors = array();
return $Message;
}
public function hookPayment($params){
if (!$this->active)
return ;
return $this->display(__FILE__, 'payment.tpl');
}
public function hookPaymentReturn($params)
{
return ;
}
/**
*
* @return float converted amount from a currency to an other currency
* @param float $amount
* @param Currency $currency_from if null we used the default currency
* @param Currency $currency_to if null we used the default currency
*/
public static function convertPriceFull($amount, Currency $currency_from = null, Currency $currency_to = null)
{
if ($currency_from === $currency_to)
return $amount;
if ($currency_from === null)
$currency_from = new Currency(Configuration::get('PS_CURRENCY_DEFAULT'));
if ($currency_to === null)
$currency_to = new Currency(Configuration::get('PS_CURRENCY_DEFAULT'));
if ($currency_from->id == Configuration::get('PS_CURRENCY_DEFAULT'))
$amount *= $currency_to->conversion_rate;
else
{
$conversion_rate = ($currency_from->conversion_rate == 0 ? 1 : $currency_from->conversion_rate);
// Convert amount to default currency (using the old currency rate)
$amount = Tools::ps_round($amount / $conversion_rate, 2);
// Convert to new currency
$amount *= $currency_to->conversion_rate;
}
return Tools::ps_round($amount, 2);
}
}