settings: added bank info
This commit is contained in:
parent
b9fbd69689
commit
aa18c74e4e
|
|
@ -59,7 +59,7 @@
|
|||
{{ 'account.bank_tax_code'|_ }}:
|
||||
</div>
|
||||
<div class="bank_text">
|
||||
101161000041
|
||||
{{ tax_code }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="bank_group">
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
{{ 'account.bank_manat_account'|_}}:
|
||||
</div>
|
||||
<div class="bank_text">
|
||||
23201934160147100066000
|
||||
{{ manat_account }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="bank_group">
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
{{ 'account.bank_bab'|_ }}:
|
||||
</div>
|
||||
<div class="bank_text">
|
||||
390101601
|
||||
{{ bab }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="bank_group">
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
{{ 'account.bank_correspondent_account'|_ }}:
|
||||
</div>
|
||||
<div class="bank_text">
|
||||
21101934110100700005000
|
||||
{{ correspondent_account }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ class Settings extends Model
|
|||
|
||||
public $settingsCode = 'birzha_settings';
|
||||
|
||||
public $translatable = ['address','site_name', 'short_name'];
|
||||
public $translatable = ['address','site_name', 'short_name', 'bank_address'];
|
||||
|
||||
/**
|
||||
* Get setting value
|
||||
|
|
|
|||
|
|
@ -54,3 +54,24 @@ tabs:
|
|||
label: Product display duration
|
||||
comment: In days
|
||||
span: right
|
||||
tax_code:
|
||||
tab: Bank Info
|
||||
label: Salgyt kody (Налоговый код)
|
||||
span: left
|
||||
bab:
|
||||
tab: Bank Info
|
||||
label: BAB (МФО)
|
||||
span: right
|
||||
manat_account:
|
||||
tab: Bank Info
|
||||
label: Manat hasaby (Манатный счёт)
|
||||
span: left
|
||||
correspondent_account:
|
||||
tab: Bank Info
|
||||
label: Korrespondent hasaby (Корреспондент счет)
|
||||
span: right
|
||||
bank_address:
|
||||
tab: Bank Info
|
||||
label: Bank address
|
||||
span: left
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,10 @@ function onStart(){
|
|||
$this['email'] = TPS\Birzha\Models\Settings::getValue('email');
|
||||
$this['address'] = TPS\Birzha\Models\Settings::getValue('address');
|
||||
$this['short_name'] = TPS\Birzha\Models\Settings::getValue('short_name');
|
||||
$this['tax_code'] = TPS\Birzha\Models\Settings::getValue('tax_code');
|
||||
$this['bab'] = TPS\Birzha\Models\Settings::getValue('bab');
|
||||
$this['manat_account'] = TPS\Birzha\Models\Settings::getValue('manat_account');
|
||||
$this['correspondent_account'] = TPS\Birzha\Models\Settings::getValue('correspondent_account');
|
||||
}
|
||||
?>
|
||||
==
|
||||
|
|
|
|||
Loading…
Reference in New Issue