<?php
namespace Faker\Provider\kk_KZ;
class Company extends \Faker\Provider\Company
{
protected static $companyNameFormats = [
'{{companyPrefix}} {{companyNameElement}}',
'{{companyPrefix}} {{companyNameElement}}{{companyNameElement}}',
'{{companyPrefix}} {{companyNameElement}}{{companyNameElement}}{{companyNameElement}}',
'{{companyPrefix}} {{companyNameElement}}{{companyNameElement}}{{companyNameElement}}{{companyNameSuffix}}',
];
protected static $companyPrefixes = [
'АҚ', 'ЖШС', 'ЖАҚ',
];
protected static $companyNameSuffixes = [
'Құрылыс', 'Машина', 'Бұзу', '-М', 'Лизинг', 'Страх', 'Ком', 'Телеком',
];
protected static $companyElements = [
'Қазақ', 'Кітап', 'Цемент', 'Лифт', 'Креп', 'Авто', 'Теле', 'Транс', 'Алмаз', 'Метиз',
'Мотор', 'Қаз', 'Тех', 'Сантех', 'Алматы', 'Астана', 'Электро',
];
/**
* @example 'ЖШС АлматыТелеком'
*/
public function company()
{
$format = static::randomElement(static::$companyNameFormats);
return $this->generator->parse($format);
}
public static function companyPrefix()
{
return static::randomElement(static::$companyPrefixes);
}
public static function companyNameElement()
{
return static::randomElement(static::$companyElements);
}
public static function companyNameSuffix()
{
return static::randomElement(static::$companyNameSuffixes);
}
/**
* National Business Identification Numbers
*
* @see http://egov.kz/wps/portal/Content?contentPath=%2Fegovcontent%2Fbus_business%2Ffor_businessmen%2Farticle%2Fbusiness_identification_number&lang=en
*
* @return string 12 digits, like 150140000019
*/
public static function businessIdentificationNumber(\DateTime $registrationDate = null)
{
if (!$registrationDate) {
$registrationDate = \Faker\Provider\DateTime::dateTimeThisYear();
}
$dateAsString = $registrationDate->format('ym');
$legalEntityType = (string) self::numberBetween(4, 6);
$legalEntityAdditionalType = (string) self::numberBetween(0, 3);
$randomDigits = (string) static::numerify('######');
return $dateAsString . $legalEntityType . $legalEntityAdditionalType . $randomDigits;
}
}
At NFC Pay, we strive to provide a seamless and satisfactory experience with our services. This Refund Policy outlines the circumstances under which refunds may be issued for transactions made through our platform. Please read this policy carefully to understand your rights regarding refunds.
1. Eligibility for Refunds
Refunds may be considered under the following circumstances:
2. Non-Refundable Situations
Refunds will generally not be issued in the following situations:
3. Refund Process
To request a refund, please follow these steps:
4. Refund Exceptions
Certain transactions may be subject to specific terms and conditions, including non-refundable fees or charges. Please review the terms associated with each transaction carefully, as some fees may not be eligible for refunds.
5. Modifications to the Refund Policy
NFC Pay reserves the right to modify this Refund Policy at any time. Changes will be communicated through updates on our website and app, and the effective date will be updated accordingly. We encourage you to review this policy periodically to stay informed about our refund practices.
By using NFC Pay, you agree to this Refund Policy and understand the terms under which refunds may be issued. Our goal is to ensure a fair and transparent refund process, providing you with confidence and peace of mind when using our services.