Admin almost ready, exports ready
This commit is contained in:
parent
8bc0db4d75
commit
db429915af
|
|
@ -62,7 +62,7 @@ protected function setupListOperation()
|
|||
CRUD::column('country');
|
||||
|
||||
$this->crud->addButtonFromModelFunction('line', 'preview_button', 'preview', 'beginning');
|
||||
|
||||
$this->crud->addButtonFromModelFunction('line', 'export_button', 'export_account', 'beginning');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -71,6 +71,30 @@ protected function setupListOperation()
|
|||
'type' => 'account_profile_name',
|
||||
'label' => 'Account',
|
||||
],
|
||||
[ // SelectMultiple = n-n relationship (with pivot table)
|
||||
'label' => "Account type",
|
||||
'type' => 'select',
|
||||
'name' => 'account_type', // the method that defines the relationship in your Model
|
||||
'entity' => 'account', // the method that defines the relationship in your Model
|
||||
'model' => "App\Models\Account", // foreign key model
|
||||
'attribute' => 'type',
|
||||
],
|
||||
[ // SelectMultiple = n-n relationship (with pivot table)
|
||||
'label' => "Legalization number",
|
||||
'type' => 'select',
|
||||
'name' => 'account_legnumber', // the method that defines the relationship in your Model
|
||||
'entity' => 'account', // the method that defines the relationship in your Model
|
||||
'model' => "App\Models\Account", // foreign key model
|
||||
'attribute' => 'legalization_number',
|
||||
],
|
||||
[ // SelectMultiple = n-n relationship (with pivot table)
|
||||
'label' => "Legalization number",
|
||||
'type' => 'select',
|
||||
'name' => 'account_exp_date', // the method that defines the relationship in your Model
|
||||
'entity' => 'account', // the method that defines the relationship in your Model
|
||||
'model' => "App\Models\Account", // foreign key model
|
||||
'attribute' => 'expires_at',
|
||||
],
|
||||
[
|
||||
'name' => 'state',
|
||||
'label' => 'State',
|
||||
|
|
|
|||
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\App;
|
||||
|
||||
class LocalizationController extends Controller
|
||||
{
|
||||
public function setLang(Request $request){
|
||||
if($request->lang == 'ru'){
|
||||
$request->session()->put('locale', $request->lang);
|
||||
App::setLocale('ru');
|
||||
}
|
||||
elseif($request->lang == 'tm'){
|
||||
$request->session()->put('locale', $request->lang);
|
||||
App::setLocale('tm');
|
||||
}
|
||||
else{
|
||||
$request->session()->put('locale', $request->lang);
|
||||
App::setLocale('en');
|
||||
}
|
||||
return redirect()->back();
|
||||
}
|
||||
}
|
||||
|
|
@ -97,7 +97,7 @@ protected function setupCreateOperation()
|
|||
],
|
||||
[
|
||||
'name' => 'content',
|
||||
'type' => 'textarea',
|
||||
'type' => 'summernote',
|
||||
'label' => 'Content'
|
||||
],
|
||||
[
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Account;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\View;
|
||||
use App\View\Composers\ProfileComposer;
|
||||
|
||||
class ExportController extends Controller
|
||||
{
|
||||
public function exportAccount($id){
|
||||
$account = Account::with('profile')->find($id);
|
||||
//dd(json_decode($account->bank));
|
||||
|
||||
if($account->type == 'business'){
|
||||
$headers = array(
|
||||
"Content-type"=>"text/html",
|
||||
"Content-Disposition"=>"attachment;Filename=" . $account->profile->name . "_" . $account->profile->surname . ".doc"
|
||||
);
|
||||
$content = view('oprosniki.business', ['account' => $account])->render();
|
||||
}
|
||||
else{
|
||||
$headers = array(
|
||||
"Content-type"=>"text/html",
|
||||
"Content-Disposition"=>"attachment;Filename=" . $account->profile->name . ".doc"
|
||||
);
|
||||
$content = view('oprosniki.company', ['account' => $account])->render();
|
||||
}
|
||||
return \Response::make($content,200, $headers);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -36,6 +36,7 @@ class Kernel extends HttpKernel
|
|||
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
|
||||
\App\Http\Middleware\VerifyCsrfToken::class,
|
||||
\Illuminate\Routing\Middleware\SubstituteBindings::class,
|
||||
'web_localization',
|
||||
],
|
||||
|
||||
'api' => [
|
||||
|
|
@ -66,6 +67,7 @@ class Kernel extends HttpKernel
|
|||
'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
|
||||
'auth.client' => \App\Http\Middleware\ClientUserProvider::class,
|
||||
'localization' => \App\Http\Middleware\Localization::class,
|
||||
'web_localization' => \App\Http\Middleware\WebLocalization::class
|
||||
];
|
||||
|
||||
protected $middlewarePriority = [
|
||||
|
|
|
|||
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Session;
|
||||
use Config;
|
||||
use App;
|
||||
|
||||
class WebLocalization
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
|
||||
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
|
||||
*/
|
||||
public function handle(Request $request, Closure $next)
|
||||
{
|
||||
$raw_locale = $request->session()->get('locale');
|
||||
if (in_array($raw_locale, Config::get('app.locales'))) {
|
||||
$locale = $raw_locale;
|
||||
}
|
||||
else $locale = Config::get('app.locale');
|
||||
$request->session()->put('locale', $locale ?? 'en');
|
||||
app()->setLocale($locale);
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
@ -47,6 +47,14 @@ public function preview(){
|
|||
Preview</a>';
|
||||
}
|
||||
|
||||
public function export_account(){
|
||||
return '<a class="btn btn-sm btn-link" href="/export-account-to-word/'. $this->id .'" data-toggle="tooltip">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-filetype-docx" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5Zm-6.839 9.688v-.522a1.54 1.54 0 0 0-.117-.641.861.861 0 0 0-.322-.387.862.862 0 0 0-.469-.129.868.868 0 0 0-.471.13.868.868 0 0 0-.32.386 1.54 1.54 0 0 0-.117.641v.522c0 .256.04.47.117.641a.868.868 0 0 0 .32.387.883.883 0 0 0 .471.126.877.877 0 0 0 .469-.126.861.861 0 0 0 .322-.386 1.55 1.55 0 0 0 .117-.642Zm.803-.516v.513c0 .375-.068.7-.205.973a1.47 1.47 0 0 1-.589.627c-.254.144-.56.216-.917.216a1.86 1.86 0 0 1-.92-.216 1.463 1.463 0 0 1-.589-.627 2.151 2.151 0 0 1-.205-.973v-.513c0-.379.069-.704.205-.975.137-.274.333-.483.59-.627.257-.147.564-.22.92-.22.357 0 .662.073.916.22.256.146.452.356.59.63.136.271.204.595.204.972ZM1 15.925v-3.999h1.459c.406 0 .741.078 1.005.235.264.156.46.382.589.68.13.296.196.655.196 1.074 0 .422-.065.784-.196 1.084-.131.301-.33.53-.595.689-.264.158-.597.237-.999.237H1Zm1.354-3.354H1.79v2.707h.563c.185 0 .346-.028.483-.082a.8.8 0 0 0 .334-.252c.088-.114.153-.254.196-.422a2.3 2.3 0 0 0 .068-.592c0-.3-.04-.552-.118-.753a.89.89 0 0 0-.354-.454c-.158-.102-.361-.152-.61-.152Zm6.756 1.116c0-.248.034-.46.103-.633a.868.868 0 0 1 .301-.398.814.814 0 0 1 .475-.138c.15 0 .283.032.398.097a.7.7 0 0 1 .273.26.85.85 0 0 1 .12.381h.765v-.073a1.33 1.33 0 0 0-.466-.964 1.44 1.44 0 0 0-.49-.272 1.836 1.836 0 0 0-.606-.097c-.355 0-.66.074-.911.223-.25.148-.44.359-.571.633-.131.273-.197.6-.197.978v.498c0 .379.065.704.194.976.13.271.321.48.571.627.25.144.555.216.914.216.293 0 .555-.054.785-.164.23-.11.414-.26.551-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.765a.8.8 0 0 1-.117.364.699.699 0 0 1-.273.248.874.874 0 0 1-.401.088.845.845 0 0 1-.478-.131.834.834 0 0 1-.298-.393 1.7 1.7 0 0 1-.103-.627v-.495Zm5.092-1.76h.894l-1.275 2.006 1.254 1.992h-.908l-.85-1.415h-.035l-.852 1.415h-.862l1.24-2.015-1.228-1.984h.932l.832 1.439h.035l.823-1.439Z"/>
|
||||
</svg>
|
||||
Export</a>';
|
||||
}
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| RELATIONS
|
||||
|
|
|
|||
|
|
@ -36,13 +36,13 @@
|
|||
'mailers' => [
|
||||
'smtp' => [
|
||||
'transport' => 'smtp',
|
||||
'host' => env('MAIL_HOST', 'smtp.yandex.ru'),
|
||||
'port' => env('MAIL_PORT', 587),
|
||||
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'host' => config('settings.smtp_host'),
|
||||
'port' => config('settings.smtp_port'),
|
||||
'encryption' => config('settings.smtp_encryption'),
|
||||
'username' => config('settings.smtp_username'),
|
||||
'password' => config('settings.smtp_password'),
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'birzha@digital-tps.tk'),
|
||||
'address' => config('settings.smtp_username'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Birzha legalizasia'),
|
||||
],
|
||||
],
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('exportformats', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->enum('type',['company', 'business'])->default('business');
|
||||
$table->longText('schema')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('exportformats');
|
||||
}
|
||||
};
|
||||
|
|
@ -0,0 +1,170 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute must be greater than or equal to :value characters.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'lt' => [
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute must be less than or equal to :value.',
|
||||
'string' => 'The :attribute must be less than or equal to :value characters.',
|
||||
],
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'The :attribute must not have more than :max items.',
|
||||
'file' => 'The :attribute must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute must not be greater than :max.',
|
||||
'string' => 'The :attribute must not be greater than :max characters.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
],
|
||||
'multiple_of' => 'The :attribute must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid timezone.',
|
||||
'unique' => 'Такой :attribute уже занят.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute must be a valid URL.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
<?php
|
||||
|
||||
|
||||
return [
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
'email_not_found' => 'This email not found',
|
||||
|
||||
];
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<?php
|
||||
|
||||
|
||||
return [
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
'email_not_found' => 'Email пользователя не найден',
|
||||
];
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
<?php
|
||||
|
||||
|
||||
return [
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
'email_not_found' => 'This email not found',
|
||||
|
||||
];
|
||||
|
|
@ -1,19 +1,830 @@
|
|||
<html>
|
||||
|
||||
<head><meta charset="utf-8"></head>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style type="text/css">p { line-height: 115%; text-align: left; orphans: 2; widows: 2; margin-bottom: 0.1in; direction: ltr; background: transparent }p.western { font-family: "Times New Roman", serif; font-size: 12pt }p.cjk { font-family: "Times New Roman"; font-size: 12pt; so-language: ru-RU }p.ctl { font-family: "Times New Roman"; font-size: 12pt }</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in" align="center">
|
||||
<font style="font-size: 10pt" size="2"><b>Вопросник</b></font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in" align="center">
|
||||
<font style="font-size: 10pt" size="2"><b>для предпринимателей</b></font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in" align="center">
|
||||
<font style="font-size: 10pt" size="2"><b>без образования
|
||||
юридического лица</b></font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in" align="center">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><font style="font-size: 10pt" size="2"> </font><font style="font-size: 10pt" size="2"><b>Уважаемые
|
||||
дамы и господа,</b></font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p style="line-height: 0.15in; margin-bottom: 0in" align="justify"><font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2"><b> Государственная
|
||||
товарно-сырьевая биржа Туркменистана
|
||||
уделяет большое внимание повышению
|
||||
качества обслуживания клиентов и желает
|
||||
соответствовать Вашим ожиданиям и
|
||||
требованиям, которые Вы предъявляете,
|
||||
обратившись к нам.</b></font></font></font></font></p>
|
||||
<p style="line-height: 0.15in; margin-bottom: 0in" align="justify"><br>
|
||||
|
||||
</p>
|
||||
<p style="line-height: 0.15in; margin-bottom: 0in" align="justify"><font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2"><b> В
|
||||
целях наиболее качественного обслуживания
|
||||
предлагаем Вам ответить на следующие
|
||||
вопросы.</b></font></font></font></font></p>
|
||||
<p style="line-height: 0.15in; margin-bottom: 0in" align="justify"><br>
|
||||
|
||||
</p>
|
||||
<p style="line-height: 0.15in; margin-bottom: 0in" align="justify"><br>
|
||||
|
||||
</p>
|
||||
<ol><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Фамилия,
|
||||
имя и (если имеется) отчество:</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top">
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ $account->profile->surname }} {{ $account->profile->name }} {{ $account->profile->patronomic }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="2"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Дата
|
||||
рождения:</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ $account->profile->date_of_birth }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="3"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Место
|
||||
рождения:</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ $account->profile->birth_place }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="4"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Гражданство
|
||||
(подданство):</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ $account->profile->citizenship->name }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="5"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Место
|
||||
жительства (регистрации):</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ $account->profile->registration_address }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="6"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Документ,
|
||||
удостоверяющий личность (наименование,
|
||||
серия, номер, кем выдан, дата выдачи,
|
||||
срок действия):</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ $account->profile->registration_address }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="10"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Контактные
|
||||
данные (адрес(а), телефон(ы), факс(ы), email):</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
{{ json_decode($account->contacts)->address }}, {{ json_decode($account->contacts)->phone }}, {{ json_decode($account->contacts)->fax }}, {{ json_decode($account->contacts)->email }}
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="11"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Укажите,
|
||||
пожалуйста, банки, клиентом которых Вы
|
||||
являетесь:</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<table width="631" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="141">
|
||||
|
||||
<col width="118">
|
||||
|
||||
<col width="116">
|
||||
|
||||
<col width="92">
|
||||
|
||||
<col width="91">
|
||||
|
||||
</colgroup><tbody><tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="141"><p class="western" style="orphans: 0; widows: 0">
|
||||
<font style="font-size: 10pt" size="2">Номер счета</font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="118"><p class="western" style="orphans: 0; widows: 0" align="center">
|
||||
{{ json_decode($account->bank)->account_number }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="141"><p class="western" style="orphans: 0; widows: 0">
|
||||
<font style="font-size: 10pt" size="2">Дата открытия
|
||||
счета</font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="118"><p class="western" style="orphans: 0; widows: 0">
|
||||
{{ json_decode($account->bank)->account_date }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="141"><p class="western" style="orphans: 0; widows: 0">
|
||||
<font style="font-size: 10pt" size="2">Вид валюты</font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="118"><p class="western" style="orphans: 0; widows: 0">
|
||||
{{ json_decode($account->bank)->currency }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="141"><p class="western" style="orphans: 0; widows: 0">
|
||||
<font style="font-size: 10pt" size="2">МФО или </font><font style="font-size: 10pt" size="2"><span lang="en-US">SWIFT</span></font><font style="font-size: 10pt" size="2">
|
||||
(</font><font style="font-size: 10pt" size="2"><span lang="en-US">IBAN</span></font><font style="font-size: 10pt" size="2">)</font><font style="font-size: 10pt" size="2"><span lang="sq-AL">
|
||||
</span></font><font style="font-size: 10pt" size="2">код банка</font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="118"><p class="western" style="orphans: 0; widows: 0">
|
||||
{{ json_decode($account->bank)->iban }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="141"><p class="western" style="orphans: 0; widows: 0">
|
||||
<font style="font-size: 10pt" size="2">Наименование
|
||||
обслуживающего банка</font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="118"><p class="western" style="orphans: 0; widows: 0">
|
||||
{{ json_decode($account->bank)->bank_name }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="141"><p class="western" style="orphans: 0; widows: 0">
|
||||
<font style="font-size: 10pt" size="2">Страна банка</font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="118"><p class="western" style="orphans: 0; widows: 0">
|
||||
{{ json_decode($account->bank)->country }}
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<br><br>
|
||||
<ol start="12"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Укажите,
|
||||
пожалуйста, источники Ваших доходов
|
||||
(нужное подчеркнуть):</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Заработная
|
||||
плата</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Пенсия</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Доходы
|
||||
от предпринимательской деятельности</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Наследство</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Процентный
|
||||
доход по вкладам</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Личные
|
||||
сбережения</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0" align="justify"><font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Прочие
|
||||
доходы</font></font></font></font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="13"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Как
|
||||
часто Вы планируете совершать свои
|
||||
операции (нужное подчеркнуть):</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="622">
|
||||
|
||||
</colgroup><tbody><tr>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="622" valign="top"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Ежедневно</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Еженедельно</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Несколько
|
||||
раз в месяц</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Несколько
|
||||
раз в квартал</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0" align="justify"><font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Несколько
|
||||
раз в год</font></font></font></font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="14"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">На
|
||||
каких секциях товара Вы хотели бы
|
||||
участвовать</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="643" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="7">
|
||||
|
||||
<col width="283">
|
||||
|
||||
<col width="10">
|
||||
|
||||
<col width="285">
|
||||
|
||||
</colgroup><tbody><tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="7"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify">□</p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="283"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify"><br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="10"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify">□</p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="285"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify"><br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<ol start="15"><li><p style="line-height: 0.15in; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Какие
|
||||
виды сделок Вы планируете совершать
|
||||
на бирже</font></font></font></font></p>
|
||||
</li></ol>
|
||||
<table width="643" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="10">
|
||||
|
||||
<col width="280">
|
||||
|
||||
<col width="10">
|
||||
|
||||
<col width="285">
|
||||
|
||||
</colgroup><tbody><tr valign="top">
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="10" height="7"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify">□</p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="280"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Экспорт
|
||||
(манаты)</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Экспорт
|
||||
(иностранная валюта)</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Импорт
|
||||
(манаты)</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify"><font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Импорт
|
||||
(иностранная валюта)</font></font></font></font></p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="10"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
□</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify">□</p>
|
||||
</td>
|
||||
<td style="background: transparent; border: 1px solid #000000; padding: 0in 0.08in" width="285"><p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Дарение</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Бартер</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<font face="Arial, serif"><font style="font-size: 9pt" size="2"><font face="Times New Roman, serif"><font style="font-size: 10pt" size="2">Собственные
|
||||
нужды</font></font></font></font></p>
|
||||
<p style="orphans: 0; widows: 0; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p style="orphans: 0; widows: 0" align="justify"><br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p style="line-height: 0.15in; margin-left: 0.5in; margin-bottom: 0in">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in" align="justify">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><font style="font-size: 10pt" size="2">16.
|
||||
Укажите, пожалуйста, годовой оборот
|
||||
сделок, которые Вы планируете совершать
|
||||
на бирже</font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<table width="638" cellspacing="0" cellpadding="7">
|
||||
<colgroup><col width="16">
|
||||
|
||||
<col width="380">
|
||||
|
||||
<col width="198">
|
||||
|
||||
</colgroup><tbody><tr valign="top">
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="16"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
№</p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="380"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<font style="font-size: 10pt" size="2">Сумма сделок</font></p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="198"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<font style="font-size: 10pt" size="2">Валюта сделки</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr valign="top">
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="16"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<font style="font-size: 10pt" size="2">1</font></p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="380"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="198"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr valign="top">
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="16"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<font style="font-size: 10pt" size="2">2</font></p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="380"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="198"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr valign="top">
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="16"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<font style="font-size: 10pt" size="2">3</font></p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="380"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="198"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr></tr>
|
||||
<tr valign="top">
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="16"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<font style="font-size: 10pt" size="2">4</font></p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="380"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
<td style="border: 1px solid #000000; padding: 0in 0.08in" width="198"><p class="western" style="orphans: 2; widows: 2" align="left">
|
||||
<br>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><font style="font-size: 10pt" size="2">___________________ ____________</font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in">
|
||||
<font style="font-size: 10pt" size="2">(подпись
|
||||
клиента) (дата)</font></p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><br>
|
||||
|
||||
</p>
|
||||
<p class="western" style="line-height: 100%; margin-bottom: 0in"><a name="_GoBack"></a>
|
||||
<br>
|
||||
|
||||
</p>
|
||||
|
||||
</p>
|
||||
|
||||
<ul><li>Php</li><li>Laravel</li><li>Html</li></ul>
|
||||
<table>
|
||||
<tbody border="1">
|
||||
<tr> TETS </tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,40 @@
|
|||
@if (config('backpack.base.breadcrumbs') && isset($breadcrumbs) && is_array($breadcrumbs) && count($breadcrumbs))
|
||||
<style>
|
||||
.navbar-brand{
|
||||
opacity: 1!important;
|
||||
margin-top: 6px;
|
||||
}
|
||||
@media(max-width:600px){
|
||||
.navbar-brand{
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<nav aria-label="breadcrumb" class="d-none d-lg-block">
|
||||
<ol class="breadcrumb">
|
||||
@foreach ($breadcrumbs as $label => $link)
|
||||
@if ($link)
|
||||
<li class="breadcrumb-item text-capitalize"><a href="{{ $link }}">{{ $label }}</a></li>
|
||||
@else
|
||||
<li class="breadcrumb-item text-capitalize active" aria-current="page">{{ $label }}</li>
|
||||
@endif
|
||||
@endforeach
|
||||
<li class="breadcrumb-menu d-md-down-none">
|
||||
<div class="btn-group">
|
||||
<div class="dropdown">
|
||||
<button class="btn dropdown-toggle" id="dropdownMenuButton" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<svg style="width: 20px" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 01-1.161.886l-.143.048a1.107 1.107 0 00-.57 1.664c.369.555.169 1.307-.427 1.605L9 13.125l.423 1.059a.956.956 0 01-1.652.928l-.679-.906a1.125 1.125 0 00-1.906.172L4.5 15.75l-.612.153M12.75 3.031a9 9 0 00-8.862 12.872M12.75 3.031a9 9 0 016.69 14.036m0 0l-.177-.529A2.25 2.25 0 0017.128 15H16.5l-.324-.324a1.453 1.453 0 00-2.328.377l-.036.073a1.586 1.586 0 01-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821.846 0 1.598.542 1.865 1.345l.215.643m5.276-3.67a9.012 9.012 0 01-5.276 3.67m0 0a9 9 0 01-10.275-4.835M15.75 9c0 .896-.393 1.7-1.016 2.25" />
|
||||
</svg>
|
||||
</button>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton" style="">
|
||||
<a class="dropdown-item" href="/set-lang?lang=ru">RU</a>
|
||||
<a class="dropdown-item" href="/set-lang?lang=en">EN</a>
|
||||
<a class="dropdown-item" href="/set-lang?lang=tm">TM</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
@endif
|
||||
|
|
@ -1,7 +1,8 @@
|
|||
<?php
|
||||
|
||||
|
||||
use App\Http\Controllers\Admin\LocalizationController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\ExportController;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -13,6 +14,7 @@
|
|||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
Route::get('docs-generate', function(){
|
||||
|
||||
$headers = array(
|
||||
|
|
@ -31,5 +33,5 @@
|
|||
|
||||
});
|
||||
|
||||
|
||||
|
||||
Route::get('/export-account-to-word/{id}',[ExportController::class, 'exportAccount']);
|
||||
Route::get('/set-lang', [LocalizationController::class, 'setLang']);
|
||||
|
|
|
|||
Loading…
Reference in New Issue