JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: stra_hrm_data -- ------------------------------------------------------ -- Server version 10.11.11-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `account_lists` -- DROP TABLE IF EXISTS `account_lists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `account_lists` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `account_name` varchar(191) NOT NULL, `initial_balance` double(20,2) NOT NULL DEFAULT 0.00, `account_number` varchar(191) NOT NULL, `branch_code` varchar(191) NOT NULL, `bank_branch` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `account_lists` -- LOCK TABLES `account_lists` WRITE; /*!40000 ALTER TABLE `account_lists` DISABLE KEYS */; /*!40000 ALTER TABLE `account_lists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_payment_settings` -- DROP TABLE IF EXISTS `admin_payment_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_payment_settings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `value` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `admin_payment_settings_name_created_by_unique` (`name`,`created_by`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_payment_settings` -- LOCK TABLES `admin_payment_settings` WRITE; /*!40000 ALTER TABLE `admin_payment_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_payment_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allowance_options` -- DROP TABLE IF EXISTS `allowance_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allowance_options` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allowance_options` -- LOCK TABLES `allowance_options` WRITE; /*!40000 ALTER TABLE `allowance_options` DISABLE KEYS */; /*!40000 ALTER TABLE `allowance_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allowances` -- DROP TABLE IF EXISTS `allowances`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allowances` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `allowance_option` int(11) NOT NULL, `title` varchar(191) NOT NULL, `amount` double(15,2) NOT NULL, `type` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allowances` -- LOCK TABLES `allowances` WRITE; /*!40000 ALTER TABLE `allowances` DISABLE KEYS */; /*!40000 ALTER TABLE `allowances` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement_employees` -- DROP TABLE IF EXISTS `announcement_employees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `announcement_employees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `announcement_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement_employees` -- LOCK TABLES `announcement_employees` WRITE; /*!40000 ALTER TABLE `announcement_employees` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement_employees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcements` -- DROP TABLE IF EXISTS `announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `announcements` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `branch_id` int(11) NOT NULL, `department_id` varchar(191) NOT NULL, `employee_id` varchar(191) NOT NULL, `description` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcements` -- LOCK TABLES `announcements` WRITE; /*!40000 ALTER TABLE `announcements` DISABLE KEYS */; /*!40000 ALTER TABLE `announcements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `appraisals` -- DROP TABLE IF EXISTS `appraisals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `appraisals` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch` int(11) NOT NULL DEFAULT 0, `employee` int(11) NOT NULL DEFAULT 0, `rating` varchar(191) DEFAULT NULL, `appraisal_date` varchar(191) NOT NULL, `customer_experience` int(11) NOT NULL DEFAULT 0, `marketing` int(11) NOT NULL DEFAULT 0, `administration` int(11) NOT NULL DEFAULT 0, `professionalism` int(11) NOT NULL DEFAULT 0, `integrity` int(11) NOT NULL DEFAULT 0, `attendance` int(11) NOT NULL DEFAULT 0, `remark` text DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `appraisals` -- LOCK TABLES `appraisals` WRITE; /*!40000 ALTER TABLE `appraisals` DISABLE KEYS */; /*!40000 ALTER TABLE `appraisals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assets` -- DROP TABLE IF EXISTS `assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assets` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` varchar(191) NOT NULL, `name` varchar(191) NOT NULL, `purchase_date` date NOT NULL, `supported_date` date NOT NULL, `amount` double(20,2) NOT NULL DEFAULT 0.00, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assets` -- LOCK TABLES `assets` WRITE; /*!40000 ALTER TABLE `assets` DISABLE KEYS */; /*!40000 ALTER TABLE `assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attendance_employees` -- DROP TABLE IF EXISTS `attendance_employees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `attendance_employees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `date` date NOT NULL, `status` varchar(191) NOT NULL, `clock_in` time NOT NULL, `clock_out` time NOT NULL, `late` time NOT NULL, `early_leaving` time NOT NULL, `overtime` time NOT NULL, `total_rest` time NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attendance_employees` -- LOCK TABLES `attendance_employees` WRITE; /*!40000 ALTER TABLE `attendance_employees` DISABLE KEYS */; /*!40000 ALTER TABLE `attendance_employees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `award_types` -- DROP TABLE IF EXISTS `award_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `award_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `award_types` -- LOCK TABLES `award_types` WRITE; /*!40000 ALTER TABLE `award_types` DISABLE KEYS */; /*!40000 ALTER TABLE `award_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `awards` -- DROP TABLE IF EXISTS `awards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `awards` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `award_type` varchar(191) NOT NULL, `date` date NOT NULL, `gift` varchar(191) NOT NULL, `description` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `awards` -- LOCK TABLES `awards` WRITE; /*!40000 ALTER TABLE `awards` DISABLE KEYS */; /*!40000 ALTER TABLE `awards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `branches` -- DROP TABLE IF EXISTS `branches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `branches` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `branches` -- LOCK TABLES `branches` WRITE; /*!40000 ALTER TABLE `branches` DISABLE KEYS */; /*!40000 ALTER TABLE `branches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ch_favorites` -- DROP TABLE IF EXISTS `ch_favorites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `ch_favorites` ( `id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `favorite_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ch_favorites` -- LOCK TABLES `ch_favorites` WRITE; /*!40000 ALTER TABLE `ch_favorites` DISABLE KEYS */; /*!40000 ALTER TABLE `ch_favorites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ch_messages` -- DROP TABLE IF EXISTS `ch_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `ch_messages` ( `id` bigint(20) NOT NULL, `type` varchar(191) NOT NULL, `from_id` bigint(20) NOT NULL, `to_id` bigint(20) NOT NULL, `body` varchar(5000) DEFAULT NULL, `attachment` varchar(191) DEFAULT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ch_messages` -- LOCK TABLES `ch_messages` WRITE; /*!40000 ALTER TABLE `ch_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `ch_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `commissions` -- DROP TABLE IF EXISTS `commissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `commissions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `title` varchar(191) NOT NULL, `amount` double(15,2) NOT NULL, `type` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `commissions` -- LOCK TABLES `commissions` WRITE; /*!40000 ALTER TABLE `commissions` DISABLE KEYS */; /*!40000 ALTER TABLE `commissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `company_policies` -- DROP TABLE IF EXISTS `company_policies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `company_policies` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch` int(11) NOT NULL, `title` varchar(191) NOT NULL, `description` text NOT NULL, `attachment` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `company_policies` -- LOCK TABLES `company_policies` WRITE; /*!40000 ALTER TABLE `company_policies` DISABLE KEYS */; /*!40000 ALTER TABLE `company_policies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `competencies` -- DROP TABLE IF EXISTS `competencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `competencies` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `type` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `competencies` -- LOCK TABLES `competencies` WRITE; /*!40000 ALTER TABLE `competencies` DISABLE KEYS */; /*!40000 ALTER TABLE `competencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complaints` -- DROP TABLE IF EXISTS `complaints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complaints` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `complaint_from` int(11) NOT NULL, `complaint_against` int(11) NOT NULL, `title` varchar(191) NOT NULL, `complaint_date` date NOT NULL, `description` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complaints` -- LOCK TABLES `complaints` WRITE; /*!40000 ALTER TABLE `complaints` DISABLE KEYS */; /*!40000 ALTER TABLE `complaints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contract_attechments` -- DROP TABLE IF EXISTS `contract_attechments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contract_attechments` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `contract_id` bigint(20) unsigned NOT NULL, `user_id` varchar(191) NOT NULL, `files` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contract_attechments` -- LOCK TABLES `contract_attechments` WRITE; /*!40000 ALTER TABLE `contract_attechments` DISABLE KEYS */; /*!40000 ALTER TABLE `contract_attechments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contract_comments` -- DROP TABLE IF EXISTS `contract_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contract_comments` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `contract_id` bigint(20) unsigned NOT NULL, `user_id` varchar(191) NOT NULL, `comment` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contract_comments` -- LOCK TABLES `contract_comments` WRITE; /*!40000 ALTER TABLE `contract_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `contract_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contract_notes` -- DROP TABLE IF EXISTS `contract_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contract_notes` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `contract_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `note` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contract_notes` -- LOCK TABLES `contract_notes` WRITE; /*!40000 ALTER TABLE `contract_notes` DISABLE KEYS */; /*!40000 ALTER TABLE `contract_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contract_types` -- DROP TABLE IF EXISTS `contract_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contract_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contract_types` -- LOCK TABLES `contract_types` WRITE; /*!40000 ALTER TABLE `contract_types` DISABLE KEYS */; /*!40000 ALTER TABLE `contract_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contracts` -- DROP TABLE IF EXISTS `contracts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contracts` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `subject` varchar(191) DEFAULT NULL, `employee_name` int(11) NOT NULL, `value` double(15,2) DEFAULT NULL, `type` int(11) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `notes` varchar(191) DEFAULT NULL, `status` varchar(191) NOT NULL DEFAULT 'pending', `description` longtext DEFAULT NULL, `contract_description` longtext DEFAULT NULL, `employee_signature` longtext DEFAULT NULL, `company_signature` longtext DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contracts` -- LOCK TABLES `contracts` WRITE; /*!40000 ALTER TABLE `contracts` DISABLE KEYS */; /*!40000 ALTER TABLE `contracts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupons` -- DROP TABLE IF EXISTS `coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `coupons` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `code` varchar(191) NOT NULL, `discount` double(8,2) NOT NULL DEFAULT 0.00, `limit` int(11) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `coupons` -- LOCK TABLES `coupons` WRITE; /*!40000 ALTER TABLE `coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_questions` -- DROP TABLE IF EXISTS `custom_questions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `custom_questions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `question` varchar(191) NOT NULL, `is_required` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_questions` -- LOCK TABLES `custom_questions` WRITE; /*!40000 ALTER TABLE `custom_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `custom_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deduction_options` -- DROP TABLE IF EXISTS `deduction_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `deduction_options` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deduction_options` -- LOCK TABLES `deduction_options` WRITE; /*!40000 ALTER TABLE `deduction_options` DISABLE KEYS */; /*!40000 ALTER TABLE `deduction_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `departments` -- DROP TABLE IF EXISTS `departments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `departments` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch_id` int(11) NOT NULL, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `departments` -- LOCK TABLES `departments` WRITE; /*!40000 ALTER TABLE `departments` DISABLE KEYS */; /*!40000 ALTER TABLE `departments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deposits` -- DROP TABLE IF EXISTS `deposits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `deposits` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `account_id` int(11) NOT NULL, `amount` double(15,2) NOT NULL, `date` date NOT NULL, `income_category_id` int(11) NOT NULL, `payer_id` int(11) NOT NULL, `payment_type_id` int(11) NOT NULL, `referal_id` varchar(191) DEFAULT NULL, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deposits` -- LOCK TABLES `deposits` WRITE; /*!40000 ALTER TABLE `deposits` DISABLE KEYS */; /*!40000 ALTER TABLE `deposits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designations` -- DROP TABLE IF EXISTS `designations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch_id` int(11) DEFAULT NULL, `department_id` int(11) NOT NULL, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designations` -- LOCK TABLES `designations` WRITE; /*!40000 ALTER TABLE `designations` DISABLE KEYS */; /*!40000 ALTER TABLE `designations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `documents` -- DROP TABLE IF EXISTS `documents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `documents` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `is_required` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `documents` -- LOCK TABLES `documents` WRITE; /*!40000 ALTER TABLE `documents` DISABLE KEYS */; /*!40000 ALTER TABLE `documents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ducument_uploads` -- DROP TABLE IF EXISTS `ducument_uploads`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `ducument_uploads` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `role` varchar(191) NOT NULL, `document` varchar(191) NOT NULL, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ducument_uploads` -- LOCK TABLES `ducument_uploads` WRITE; /*!40000 ALTER TABLE `ducument_uploads` DISABLE KEYS */; /*!40000 ALTER TABLE `ducument_uploads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_template_langs` -- DROP TABLE IF EXISTS `email_template_langs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `email_template_langs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `lang` varchar(100) NOT NULL, `subject` varchar(191) NOT NULL, `content` text NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=225 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_template_langs` -- LOCK TABLES `email_template_langs` WRITE; /*!40000 ALTER TABLE `email_template_langs` DISABLE KEYS */; INSERT INTO `email_template_langs` VALUES (1,1,'ar','New User','

مرحبا,

\n

مرحبا بك في { app_name }.

\n

.. أنت الآن مستعمل

\n

البريد الالكتروني : { mail } كلمة السرية : { password }

\n

{ app_url }

\n

شكرا

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,1,'da','New User','

Hej,

\n

velkommen til { app_name }.

\n

Du er nu bruger ..

\n

E-mail: { email }

\n

kodeord: { password }

\n

{ app_url }

\n

Tak.

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,1,'de','New User','

Hallo,

\n

Willkommen bei {app_name}.

\n

Sie sind jetzt Benutzer.

\n

E-Mail: {email}

\n

Kennwort: {password}

\n

{app_url}

\n

Danke,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,1,'en','New User','

Hello, 
Welcome to {app_name}.

\n

You are now user..

\n

Email : {email}
Password : {password}

\n

{app_url}

\n

Thanks,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,1,'es','New User','

Hola,

\n

Bienvenido a {app_name}.

\n

Ahora es usuario ..

\n

Correo electrónico: {email}

\n

Contraseña: {password}

\n

{app_url}

\n

Gracias,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,1,'fr','New User','

Bonjour,

\n

Bienvenue dans { app_name }.

\n

Vous êtes maintenant utilisateur.

\n

E-mail: { email }

\n

Mot de passe: { password }

\n

{ adresse_url }

\n

Merci,

\n

{ nom_app }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,1,'it','New User','

Ciao,

\n

Benvenuti in {app_name}.

\n

Ora sei utente ..

\n

Email: {email}

\n

Password: {password}

\n

{app_url}

\n

Grazie,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,1,'ja','New User','

こんにちは、

\n

{app_name}へようこそ。

\n

これで、ユーザーは

\n

E メール : {email}

\n

パスワード : {password}

\n

{app_url}

\n

ありがとう。

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,1,'nl','New User','

Hallo,

\n

Welkom bij { app_name }.

\n

U bent nu gebruiker ..

\n

E-mail: { email }

\n

Wachtwoord: { password }

\n

{ app_url }

\n

Bedankt.

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,1,'pl','New User','

Witaj,

\n

Witamy w aplikacji {app_name }.

\n

Jesteś teraz użytkownikiem ..

\n

E-mail: {email }

\n

Hasło: {password }

\n

{app_url }

\n

Dziękuję,

\n

{app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,1,'ru','New User','

Здравствуйте,

\n

Добро пожаловать в { app_name }.

\n

Вы теперь пользователь ..

\n

Адрес электронной почты: { email }

\n

Пароль: { password }

\n

{ app_url }

\n

Спасибо.

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,1,'pt','New User','

Olá,

\n

Bem-vindo a {app_name}.

\n

Você agora é usuário ..

\n

E-mail: {email}

\n

Senha: {senha}

\n

{app_url}

\n

Obrigado,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,1,'tr','New User','

Merhaba, 
Hoşgeldiniz {app_name}.

\n

artık kullanıcısın..

\n

E-posta : {email}
Şifre : {password}

\n

{app_url}

\n

Teşekkürler,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,1,'zh','New User','

你好, 
欢迎来到 {app_name}.

\n

您现在是用户..

\n

电子邮件 : {email}
密码 : {password}

\n

{app_url}

\n

谢谢,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (15,1,'he','New User','

שלום, 
ברוך הבא ל {app_name}.

\n

אתה כעת משתמש..

\n

אימייל : {email}
סיסמה : {password}

\n

{app_url}

\n

תודה,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (16,1,'pt-br','New User','

Olá,

\n

Bem-vindo a {app_name}.

\n

Você agora é usuário ..

\n

E-mail: {email}

\n

Senha: {senha}

\n

{app_url}

\n

Obrigado,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (17,2,'ar','New Employee','

مرحبا { employe_name } ،

\n

مرحبا بك في { app_name }.

\n

أنت الآن موظف

\n

البريد الالكتروني : { employe_email }

\n

كلمة السرية : { employe_password }

\n

{ app_url }

\n

شكرا

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (18,2,'da','New Employee','

Hej { employee_name },

\n

velkommen til { app_name }.

\n

Du er nu ansat ...

\n

E-mail: { employee_email }

\n

Kodeord: { employee_kodeord }

\n

{ app_url }

\n

Tak.

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (19,2,'de','New Employee','

Hello {employee_name},

\n

Willkommen bei {app_name}.

\n

Sie sind jetzt Mitarbeiter.

\n

E-Mail: {employee_email}

\n

Kennwort: {employee_password}

\n

{app_url}

\n

Danke,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (20,2,'en','New Employee','

Hello {employee_name}, 
Welcome to {app_name}.

\n

You are now Employee..

\n

Email : {employee_email}

\n

Password : {employee_password}

\n

{app_url}

\n

Thanks,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (21,2,'es','New Employee','

Hello {employee_name},

\n

Bienvenido a {app_name}.

\n

Ahora es Empleado.

\n

Correo electrónico: {employee_email}

\n

Contraseña: {employee_password}

\n

{app_url}

\n

Gracias,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (22,2,'fr','New Employee','

Hello { employee_name },

\n

Bienvenue dans { app_name }.

\n

Vous êtes maintenant Employé ..

\n

Adresse électronique: { employee_email }

\n

Mot de passe: { employee_password }

\n

{ adresse_url }

\n

Merci,

\n

{ nom_app }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (23,2,'it','New Employee','

Hello {employee_name},

\n

Benvenuti in {app_name}.

\n

Ora sei Dipendente ..

\n

Email: {employee_email}

\n

Password: {employee_password}

\n

{app_url}

\n

Grazie,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (24,2,'ja','New Employee','

{ employee_name} にようこそ、

\n

{app_name}へようこそ。

\n

今は従業員です。

\n

E メール : {employee_email}

\n

パスワード : {employee_password}

\n

{app_url}

\n

ありがとう。

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (25,2,'nl','New Employee','

Hallo { employee_name },

\n

Welkom bij { app_name }.

\n

U bent nu werknemer ..

\n

E-mail: { employee_email }

\n

Wachtwoord: { employee_password }

\n

{ app_url }

\n

Bedankt.

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (26,2,'pl','New Employee','

Witaj {employee_name },

\n

Witamy w aplikacji {app_name }.

\n

Jesteś teraz Pracownik ..

\n

E-mail: {employee_email }

\n

Hasło: {employee_password }

\n

{app_url }

\n

Dziękuję,

\n

{app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (27,2,'ru','New Employee','

Здравствуйте, { employee_name },

\n

Добро пожаловать в { app_name }.

\n

Вы теперь-сотрудник ...

\n

Электронная почта: { employee_email }

\n

Пароль: { employee_password }

\n

{ app_url }

\n

Спасибо.

\n

{ имя_программы }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (28,2,'pt','New Employee','

Olá {employee_name},

\n

Bem-vindo a {app_name}.

\n

Você é agora Funcionário ..

\n

E-mail: {employee_email}

\n

Senha: {employee_password}

\n

{app_url}

\n

Obrigado,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (29,2,'tr','New Employee','

Merhaba {employee_name}, 
Hoşgeldiniz {app_name}.

\n

Artık Çalışansın..

\n

E-posta : {employee_email}

\n

Şifre : {employee_password}

\n

{app_url}

\n

Teşekkürler,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (30,2,'zh','New Employee','

你好 {employee_name}, 
欢迎来到 {app_name}.

\n

您现在是员工..

\n

电子邮件 : {employee_email}

\n

密码 : {employee_password}

\n

{app_url}

\n

谢谢,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (31,2,'he','New Employee','

שלום {employee_name}, 
ברוך הבא ל {app_name}.

\n

אתה עכשיו עובד..

\n

אימייל : {employee_email}

\n

סיסמה : {employee_password}

\n

{app_url}

\n

תודה,
{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (32,2,'pt-br','New Employee','

Olá {employee_name},

\n

Bem-vindo a {app_name}.

\n

Você é agora Funcionário ..

\n

E-mail: {employee_email}

\n

Senha: {employee_password}

\n

{app_url}

\n

Obrigado,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (33,3,'ar','New Payroll','

Subject :-إدارة الموارد البشرية / الشركة المعنية بإرسال المدفوعات عن طريق البريد الإلكتروني في وقت تأكيد الدفع.

\n

مرحبا { name } ،

\n

أتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى الدفع المتصل الى { salary_month }.

\n

اضغط ببساطة على الاختيار بأسفل

\n

كشوف المرتبات

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (34,3,'da','New Payroll','

Om: HR-departementet / Kompagniet til at sende lønsedler via e-mail på tidspunktet for bekræftelsen af lønsedlerne

\n

Hej { name },

\n

Håber denne e-mail finder dig godt! Se vedhæftet payseddel for { salary_month }.

\n

klik bare på knappen nedenfor

\n

Lønseddel

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (35,3,'de','New Payroll','

Betrifft: -Personalabteilung/Firma, um Payslips per E-Mail zum Zeitpunkt der Bestätigung des Auszahlungsscheins zu senden

\n

Hi {name},

\n

Hoffe, diese E-Mail findet dich gut! Bitte sehen Sie den angehängten payslip für {salary_month}.

\n

Klicken Sie einfach auf den Button unten

\n

Payslip

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (36,3,'en','New Payroll','

Subject:-HR department/Company to send payslips by email at time of confirmation of payslip

\n

Hi {name},

\n

Hope this email finds you well! Please see attached payslip for {salary_month}.

\n

simply click on the button below

\n

Payslip

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (37,3,'es','New Payroll','

Asunto: -Departamento de RRHH/Empresa para enviar nóminas por correo electrónico en el momento de la confirmación del pago

\n

Hi {name},

\n

¡Espero que este email le encuentre bien! Consulte la ficha de pago adjunta para {salary_month}.

\n

simplemente haga clic en el botón de abajo

\n

Payslip

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (38,3,'fr','New Payroll','

Objet: -Ressources humaines / Entreprise pour envoyer des feuillets de paie par courriel au moment de la confirmation du paiement

\n

Salut { name },

\n

Jespère que ce courriel vous trouve bien ! Veuillez consulter le bordereau de paie ci-joint pour { salary_month }.

\n

Il suffit de cliquer sur le bouton ci-dessous

\n

Feuillet de paiement

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (39,3,'it','New Payroll','

Oggetto: - Dipartimento HR / Società per inviare busta paga via email al momento della conferma della busta paga

\n

Ciao {name},

\n

Spero che questa email ti trovi bene! Si prega di consultare la busta paga per {salary_month}.

\n

semplicemente clicca sul pulsante sottostante

\n

Busta paga

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (40,3,'ja','New Payroll','

件名:-HR 部門/企業は、給与明細書の確認時に電子メールで支払いを送信します。

\n

こんにちは {name}、

\n

この E メールでよくご確認ください。 {salary_month}の添付された payslip を参照してください。

\n

下のボタンをクリックするだけで

\n

給与明細書

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (41,3,'nl','New Payroll','

Betreft: -HR-afdeling/Bedrijf om te betalen payslips per e-mail op het moment van bevestiging van de payslip

\n

Hallo { name },

\n

Hoop dat deze e-mail je goed vindt! Zie bijgevoegde payslip voor { salary_month }.

\n

gewoon klikken op de knop hieronder

\n

Loonstrook

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (42,3,'pl','New Payroll','

Temat:-Dział HR/Firma do wysyłania payslipów drogą mailową w czasie potwierdzania payslipa

\n

Witaj {name },

\n

Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Patrz załączony payslip dla {salary_month }.

\n

po prostu kliknij na przycisk poniżej

\n

Payslip

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (43,3,'ru','New Payroll','

Тема: -HR отдел/Компания для отправки паузу по электронной почте во время подтверждения паузли

\n

Привет { name },

\n

Надеюсь, это электронное письмо найдет вас хорошо! См. вложенный раздел для { salary_month }.

\n

просто нажмите на кнопку внизу

\n

Паушлип

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (44,3,'pt','New Payroll','

Assunto:-Departamento de RH / Empresa para enviar payslips por e-mail no momento da confirmação do payslip

\n

Oi {name},

\n

Espero que este e-mail encontre você bem! Por favor, consulte o payslip anexado por {salary_month}.

\n

basta clicar no botão abaixo

\n

Payslip

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (45,3,'tr','New Payroll','

Konu:-İK departmanı/Şirket, maaş bordrosunun onaylanması sırasında e-posta ile maaş bordrolarını gönderecek

\n

Merhaba { name },

\n

Umarım bu e-posta sizi iyi bulur! Lütfen ekteki maaş bordrosuna bakınız { salary_month }.

\n

sadece aşağıdaki butona tıklayın

\n

maaş bordrosu

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim.

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (46,3,'zh','New Payroll','

主题:-人力资源部门/公司将在工资审批期间通过电子邮件发送工资单

\n

你好 { name },

\n

我希望你能收到这封电子邮件!请参阅随附的工资单 { salary_month }.

\n

只需点击下面的按钮

\n

工资单

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢.

\n

问候,

\n

人事部,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (47,3,'he','New Payroll','

נושא:- משאבי אנוש/חברה ישלחו באימייל תלוש שכר במהלך אישור השכר

\n

שלום { name },

\n

אני מקווה שתקבל את המייל הזה! נא ראה תלוש שכר מצורף { salary_month }.

\n

פשוט לחץ על הכפתור למטה

\n

גִלְיוֹן שָׂכָר

\n

אם יש לך שאלות, אנא אל תהסס לפנות אלינו.

\n

תודה.

\n

בְּרָכָה,

\n

מחלקת כוח אדם,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (48,3,'pt-br','New Payroll','

Assunto:-Departamento de RH / Empresa para enviar payslips por e-mail no momento da confirmação do payslip

\n

Oi {name},

\n

Espero que este e-mail encontre você bem! Por favor, consulte o payslip anexado por {salary_month}.

\n

basta clicar no botão abaixo

\n

Payslip

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (49,4,'ar','New Ticket','

Subject : -HR ادارة / شركة لارسال ticket ل ـ { ticket_title }

\n

مرحبا { ticket_name }

\n

آمل أن يقوم هذا البريد الالكتروني بايجادك جيدا ! ، كود التذكرة الخاص بك هو { ticket_code }.

\n

{ ticket_description } ،

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (50,4,'da','New Ticket','

Emne:-HR-afdeling / Kompagni til at sende ticket for { ticket_title }

\n

Hej { ticket_name },

\n

Håber denne e-mail finder dig godt, din ticket-kode er { ticket_code }.

\n

{ ticket_description },

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (51,4,'de','New Ticket','

Betreff: -Personalabteilung/Firma zum Senden von Ticket für {ticket_title}

\n

Hi {ticket_name},

\n

Hoffen Sie, diese E-Mail findet Sie gut!, Ihr Ticketcode ist {ticket_code}.

\n

{ticket_description},

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (52,4,'en','New Ticket','

Subject:-HR department/Company to send ticket for {ticket_title}

\n

Hi {ticket_name},

\n

Hope this email finds you well! , Your ticket code is {ticket_code}.


\n {ticket_description},\n

Feel free to reach out if you have any questions.


\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (53,4,'es','New Ticket','

Asunto: -Departamento de RR.HH./Empresa para enviar el ticket de {ticket_title}

\n

Hi {ticket_name},

\n

¡Espero que este correo electrónico te encuentre bien!, Tu código de entrada es {ticket_code}.

\n

{ticket_description},

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (54,4,'fr','New Ticket','

Objet: -HR department / Company to send ticket for { ticket_title }

\n

Hi { ticket_name },

\n

Hope this email vous trouve bien !, Votre code de ticket est { ticket_code }.

\n

{ ticket_description },

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (55,4,'it','New Ticket','

Oggetto: - Dipartimento HR / Società per inviare ticket per {ticket_title}

\n

Ciao {ticket_name},

\n

Spero che questa email ti trovi bene!, Il tuo codice del biglietto è {ticket_code}.

\n

{ticket_description},

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (56,4,'ja','New Ticket','

件名:-HR 部門/企業は、 {ticket_title} のチケットを送信します

\n

こんにちは {ticket_name}

\n

この E メールが適切に検出されることを希望しています。チケット・コードは {ticket_code}です。

\n

{ticket_description }

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (57,4,'nl','New Ticket','

Betreft: -HR-afdeling/Bedrijf voor het verzenden van ticket voor { ticket_title }

\n

Hallo { ticket_name },

\n

Hoop dat deze e-mail u goed vindt!, Uw ticket code is { ticket_code }.

\n

{ ticket_description},

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (58,4,'pl','New Ticket','

Temat:-Dział HR/Firma do wysyłki biletu dla {ticket_title }

\n

Witaj {ticket_name },

\n

Mam nadzieję, że ta wiadomość e-mail znajduje się dobrze!, Twój kod zgłoszenia to {ticket_code }.

\n

{ticket_description },

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (59,4,'ru','New Ticket','

Тема: -HR отдел/Компания для отправки билета для { ticket_title }

\n

Hi { ticket_name },

\n

Надеюсь, что это письмо найдет вас хорошо!, Ваш код паспорта-{ ticket_code }.

\n

{ ticket_description },

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (60,4,'pt','New Ticket','

Assunto:-Departamento de RH / Empresa para enviar ingresso para {ticket_title}

\n

Oi {ticket_name},

\n

Espero que este e-mail te encontre bem!, Seu código de bilhete é {ticket_code}.

\n

{ticket_description},

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (61,4,'tr','New Ticket','

Konu:-Bilet gönderilecek İK departmanı/Şirket {ticket_title}

\n

MERHABA {ticket_name},

\n

Umarım bu e-posta sizi iyi bulur! , Bilet kodunuz {ticket_code}.


\n {ticket_description},\n

Herhangi bir sorunuz varsa çekinmeden bize ulaşın.


\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (62,4,'zh','New Ticket','

主题:-向其发送票据的人力资源部门/公司 {ticket_title}

\n

你好 {ticket_name},

\n

希望这封电子邮件能让您满意! , 您的机票代码是 {ticket_code}.


\n {ticket_description},\n

如果您有任何疑问,请随时与我们联系.


\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (63,4,'he','New Ticket','

נושא:-מחלקת משאבי אנוש/חברה לשליחת כרטיס עבורה {ticket_title}

\n

היי {ticket_name},

\n

מקווה שהמייל הזה ימצא אותך טוב! , קוד הכרטיס שלך הוא {ticket_code}.


\n {ticket_description},\n

אל תהסס לפנות אם יש לך שאלות.


\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (64,4,'pt-br','New Ticket','

Assunto:-Departamento de RH / Empresa para enviar ingresso para {ticket_title}

\n

Oi {ticket_name},

\n

Espero que este e-mail te encontre bem!, Seu código de bilhete é {ticket_code}.

\n

{ticket_description},

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (65,5,'ar','New Award','

Subject :-إدارة الموارد البشرية / الشركة المعنية بإرسال خطاب تحكيم للاعتراف بموظف

\n

مرحبا { award_name },

\n

ويسرني كثيرا أن أرشحها { award_name }

\n

وإنني مقتنع بأن (هي / هي) هي أفضل موظفة للحصول على الجائزة. وقد أدركت أنها شخصية موجهة نحو تحقيق الأهداف ، وتتسم بالكفاءة والفعالية في التقيد بالمواعيد. إنها دائما على استعداد لمشاركة معرفتها بالتفاصيل

\n

وبالإضافة إلى ذلك ، قامت (هي / هي) أحيانا بحل النزاعات والحالات الصعبة خلال ساعات العمل. (هي / هي) حصلت على بعض الجوائز من المنظمة غير الحكومية داخل البلد ؛ وكان ذلك بسبب المشاركة في أنشطة خيرية لمساعدة المحتاجين.

\n

وأعتقد أن هذه الصفات والصفات يجب أن تكون موضع تقدير. ولذلك ، فإن (هي / هي) تستحق أن تمنحها الجائزة بالتالي.

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (66,5,'da','New Award','

Om: HR-afdelingen / Kompagniet for at sende prisuddeling for at kunne genkende en medarbejder

\n

Hej { award_name },

\n

Jeg er meget glad for at nominere {award_name }

\n

Jeg er tilfreds med, at (hun) er den bedste medarbejder for prisen. Jeg har indset, at hun er en målbevidst person, effektiv og meget punktlig. Hun er altid klar til at dele sin viden om detaljer.

\n

Desuden har (he/she) lejlighedsvist løst konflikter og vanskelige situationer inden for arbejdstiden. (/hun) har modtaget nogle priser fra den ikkestatslige organisation i landet. Dette skyldes, at der skal være en del i velgørenhedsaktiviteter for at hjælpe de trængende.

\n

Jeg mener, at disse kvaliteter og egenskaber skal værdsætte. Derfor fortjener denne pris, at hun nominerer hende.

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (67,5,'de','New Award','

Betrifft: -Personalabteilung/Firma zum Versenden von Prämienschreiben, um einen Mitarbeiter zu erkennen

\n

Hi {award_name},

\n

Ich freue mich sehr, {award_name} zu nominieren.

\n

Ich bin zufrieden, dass (he/she) der beste Mitarbeiter für die Auszeichnung ist. Ich habe erkannt, dass sie eine gottorientierte Person ist, effizient und sehr pünktlich. Sie ist immer bereit, ihr Wissen über Details zu teilen.

\n

Darüber hinaus hat (he/she) gelegentlich Konflikte und schwierige Situationen innerhalb der Arbeitszeiten gelöst. (he/she) hat einige Auszeichnungen von der Nichtregierungsorganisation innerhalb des Landes erhalten; dies war wegen der Teilnahme an Wohltätigkeitsaktivitäten, um den Bedürftigen zu helfen.

\n

Ich glaube, diese Eigenschaften und Eigenschaften müssen gewürdigt werden. Daher verdient (he/she) die Auszeichnung, die sie deshalb nominiert.

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (68,5,'en','New Award','

Subject:-HR department/Company to send award letter to recognize an employee

\n

Hi {award_name},

\n

I am much pleased to nominate {award_name}

\n

I am satisfied that (he/she) is the best employee for the award. I have realized that she is a goal-oriented person, efficient and very punctual. She is always ready to share her knowledge of details.

\n

Additionally, (he/she) has occasionally solved conflicts and difficult situations within working hours. (he/she) has received some awards from the non-governmental organization within the country; this was because of taking part in charity activities to help the needy.

\n

I believe these qualities and characteristics need to be appreciated. Therefore, (he/she) deserves the award hence nominating her.

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (69,5,'es','New Award','

Asunto: -Departamento de RRHH/Empresa para enviar carta de premios para reconocer a un empleado

\n

Hi {award_name},

\n

Estoy muy satisfecho de nominar {award_name}

\n

Estoy satisfecho de que (ella) sea el mejor empleado para el premio. Me he dado cuenta de que es una persona orientada al objetivo, eficiente y muy puntual. Ella siempre está lista para compartir su conocimiento de los detalles.

\n

Adicionalmente, (he/ella) ocasionalmente ha resuelto conflictos y situaciones difíciles dentro de las horas de trabajo. (h/ella) ha recibido algunos premios de la organización no gubernamental dentro del país; esto fue debido a participar en actividades de caridad para ayudar a los necesitados.

\n

Creo que estas cualidades y características deben ser apreciadas. Por lo tanto, (h/ella) merece el premio por lo tanto nominarla.

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (70,5,'fr','New Award','

Objet: -Ministère des RH / Société denvoi dune lettre dattribution pour reconnaître un employé

\n

Hi { award_name },

\n

Je suis très heureux de nommer { award_name }

\n

Je suis convaincu que (he/elle) est le meilleur employé pour ce prix. Jai réalisé quelle est une personne orientée vers lobjectif, efficace et très ponctuelle. Elle est toujours prête à partager sa connaissance des détails.

\n

De plus, (he/elle) a parfois résolu des conflits et des situations difficiles dans les heures de travail. (he/elle) a reçu des prix de lorganisation non gouvernementale à lintérieur du pays, parce quelle a participé à des activités de bienfaisance pour aider les nécessiteux.

\n

Je crois que ces qualités et ces caractéristiques doivent être appréciées. Par conséquent, (he/elle) mérite le prix donc nominé.

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (71,5,'it','New Award','

Oggetto: - Dipartimento HR / Società per inviare lettera di premiazione per riconoscere un dipendente

\n

Ciao {award_name},

\n

Sono molto lieto di nominare {award_name}

\n

Sono soddisfatto che (he/lei) sia il miglior dipendente per il premio. Ho capito che è una persona orientata al goal-oriented, efficiente e molto puntuale. È sempre pronta a condividere la sua conoscenza dei dettagli.

\n

Inoltre, (he/lei) ha occasionalmente risolto conflitti e situazioni difficili allinterno delle ore di lavoro. (he/lei) ha ricevuto alcuni premi dallorganizzazione non governativa allinterno del paese; questo perché di prendere parte alle attività di beneficenza per aiutare i bisognosi.

\n

Credo che queste qualità e caratteristiche debbano essere apprezzate. Pertanto, (he/lei) merita il premio da qui la nomina.

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (72,5,'ja','New Award','

件名: 従業員を認識するための表彰書を送信するための、人事部門/ 会社

\n

やあ {award_name }

\n

{award_name }をノミネートしたいと考えています。

\n

私は ( 彼女が ) 賞のための最高の従業員だと満足している。 私は彼女が、自分が目標指向の人間であり、効率的で、非常に時間厳守であることに気付きました。 彼女はいつも詳細についての知識を共有する準備ができている。

\n

また、時には労働時間内に紛争や困難な状況を解決することがある。 ( 彼女は ) 国内の非政府組織からいくつかの賞を受賞している。このことは、慈善活動に参加して、貧窮者を助けるためのものだった。

\n

これらの特性と特徴を評価する必要があると思います。 そのため、 ( 相続人は ) 賞に値するので彼女を指名することになる。

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (73,5,'nl','New Award','

Betreft: -HR-afdeling/Bedrijf om een gunningsbrief te sturen om een werknemer te herkennen

\n

Hallo { award_name },

\n

Ik ben erg blij om { award_name } te nomineren

\n

Ik ben tevreden dat (he/zij) de beste werknemer voor de prijs is. Ik heb me gerealiseerd dat ze een doelgericht persoon is, efficiënt en punctueel. Ze is altijd klaar om haar kennis van details te delen.

\n

Daarnaast heeft (he/she) af en toe conflicten en moeilijke situaties binnen de werkuren opgelost. (he/zij) heeft een aantal prijzen ontvangen van de niet-gouvernementele organisatie binnen het land; dit was vanwege het deelnemen aan liefdadigheidsactiviteiten om de behoeftigen te helpen.

\n

Ik ben van mening dat deze kwaliteiten en eigenschappen moeten worden gewaardeerd. Daarom, (he/she) verdient de award dus nomineren haar.

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (74,5,'pl','New Award','

Temat:-Dział HR/Firma do wysyłania listów wyróżnienia do rozpoznania pracownika

\n

Witaj {award_name },

\n

Jestem bardzo zadowolony z nominacji {award_name }

\n

Jestem zadowolony, że (he/she) jest najlepszym pracownikiem do nagrody. Zdałem sobie sprawę, że jest osobą zorientowaną na goły, sprawną i bardzo punktualną. Zawsze jest gotowa podzielić się swoją wiedzą na temat szczegółów.

\n

Dodatkowo, (he/she) od czasu do czasu rozwiązuje konflikty i trudne sytuacje w godzinach pracy. (he/she) otrzymała kilka nagród od organizacji pozarządowej w obrębie kraju; to z powodu wzięcia udziału w akcji charytatywnych, aby pomóc potrzebującym.

\n

Uważam, że te cechy i cechy muszą być docenione. Dlatego też, (he/she) zasługuje na nagrodę, stąd nominowanie jej.

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (75,5,'ru','New Award','

Тема: -HR отдел/Компания отправить награда письмо о признании сотрудника

\n

Здравствуйте, { award_name },

\n

Мне очень приятно номинировать { award_name }

\n

Я удовлетворена тем, что (х/она) является лучшим работником премии. Я понял, что она ориентированная на цель человек, эффективная и очень пунктуальная. Она всегда готова поделиться своими знаниями о деталях.

\n

Кроме того, время от времени решались конфликты и сложные ситуации в рабочее время. (она) получила некоторые награды от неправительственной организации в стране; это было связано с тем, что они приняли участие в благотворительной деятельности, чтобы помочь нуждающимся.

\n

Я считаю, что эти качества и характеристики заслуживают высокой оценки. Таким образом, она заслуживает того, чтобы наградить ее таким образом.

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (76,5,'pt','New Award','

Assunto:-Departamento de RH / Empresa para enviar carta de premiação para reconhecer um funcionário

\n

Oi {award_name},

\n

Estou muito satisfeito em nomear {award_name}

\n

Estou satisfeito que (he/she) é o melhor funcionário para o prêmio. Eu percebi que ela é uma pessoa orientada a goal, eficiente e muito pontual. Ela está sempre pronta para compartilhar seu conhecimento de detalhes.

\n

Adicionalmente, (he/she) tem, ocasionalmente, resolvido conflitos e situações difíceis dentro do horário de trabalho. (he/she) recebeu alguns prêmios da organização não governamental dentro do país; isso foi por ter participado de atividades de caridade para ajudar os necessitados.

\n

Eu acredito que essas qualidades e características precisam ser apreciadas. Por isso, (he/she) merece o prêmio daí nomeando-a.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (77,5,'tr','New Award','

Konu:-İK departmanı/Şirket, bir çalışanı takdir etmek için ödül mektubu gönderecek

\n

MERHABA {award_name},

\n

aday göstermekten çok memnunum {award_name}

\n

(Onun) ödül için en iyi çalışan olduğuna memnunum. Hedef odaklı, verimli ve çok dakik biri olduğunu fark ettim. Ayrıntılarla ilgili bilgisini paylaşmaya her zaman hazırdır.

\n

Ayrıca, (o) zaman zaman çalışma saatleri içinde çatışmaları ve zor durumları çözmüştür. (kendisi) yurt içinde sivil toplum kuruluşlarından bazı ödüller almıştır; bunun nedeni, muhtaçlara yardım etmek için hayır faaliyetlerinde yer almaktı.

\n

Bu niteliklerin ve özelliklerin takdir edilmesi gerektiğine inanıyorum. Bu nedenle (o) ödülü hak ediyor ve onu aday gösteriyor.

\n

Herhangi bir sorunuz varsa çekinmeden bize ulaşın.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (78,5,'zh','New Award','

主题:-人力资源部门/公司发送奖励信以表彰员工

\n

你好 {award_name},

\n

我很高兴能提名 {award_name}

\n

我很满意(他/她)是获得该奖项的最佳员工。我发现她是一个目标明确的人,办事效率高,而且非常准时。她随时准备分享她的细节知识.

\n

另外,偶尔也会在工作时间内解决一些矛盾和困难。 (他/她)获得过国内非政府组织颁发的一些奖项;这是因为参加了帮助有需要的人的慈善活动.

\n

我相信这些品质和特征需要得到重视。因此,(他/她)值得获奖,因此提名她.

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (79,5,'he','New Award','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב פרס כדי להכיר בעובד

\n

היי {award_name},

\n

אני מאוד שמח למנות {award_name}

\n

אני מרוצה ש(הוא/היא) הוא העובד הטוב ביותר עבור הפרס. הבנתי שהיא אדם ממוקד מטרה, יעילה ומאוד דייקנית. היא תמיד מוכנה לחלוק את הידע שלה בפרטים.

\n

בנוסף, (הוא/היא) פתר מדי פעם קונפליקטים ומצבים קשים בתוך שעות העבודה. (הוא/היא) קיבל כמה פרסים מהארגון הלא ממשלתי במדינה; זה היה בגלל השתתפות בפעילויות צדקה כדי לעזור לנזקקים.

\n

אני מאמין שצריך להעריך את התכונות והמאפיינים האלה. לכן, (הוא/היא) ראוי לפרס ומכאן שמינו אותה.

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (80,5,'pt-br','New Award','

Assunto:-Departamento de RH / Empresa para enviar carta de premiação para reconhecer um funcionário

\n

Oi {award_name},

\n

Estou muito satisfeito em nomear {award_name}

\n

Estou satisfeito que (he/she) é o melhor funcionário para o prêmio. Eu percebi que ela é uma pessoa orientada a goal, eficiente e muito pontual. Ela está sempre pronta para compartilhar seu conhecimento de detalhes.

\n

Adicionalmente, (he/she) tem, ocasionalmente, resolvido conflitos e situações difíceis dentro do horário de trabalho. (he/she) recebeu alguns prêmios da organização não governamental dentro do país; isso foi por ter participado de atividades de caridade para ajudar os necessitados.

\n

Eu acredito que essas qualidades e características precisam ser apreciadas. Por isso, (he/she) merece o prêmio daí nomeando-a.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (81,6,'ar','Employee Transfer','

Subject : -HR ادارة / شركة لارسال خطاب نقل الى موظف من مكان الى آخر.

\n

عزيزي { transfer_name },

\n

وفقا لتوجيهات الادارة ، يتم نقل الخدمات الخاصة بك w.e.f. { transfer_date }.

\n

مكان الادخال الجديد الخاص بك هو { transfer_department } قسم من فرع { transfer_branch } وتاريخ التحويل { transfer_date }.

\n

{ transfer_description }.

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (82,6,'da','Employee Transfer','

Emne:-HR-afdelingen / kompagniet om at sende overførsels brev til en medarbejder fra den ene lokalitet til den anden.

\n

Kære { transfer_name },

\n

Som Styring af direktiver overføres dine serviceydelser w.e.f. { transfer_date }.

\n

Dit nye sted for postering er { transfer_departement } afdeling af { transfer_branch } gren og dato for overførsel { transfer_date }.

\n

{ transfer_description }.

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (83,6,'de','Employee Transfer','

Betreff: -Personalabteilung/Unternehmen, um einen Überweisungsschreiben an einen Mitarbeiter von einem Standort an einen anderen zu senden.

\n

Sehr geehrter {transfer_name},

\n

Wie pro Management-Direktiven werden Ihre Dienste über w.e.f. {transfer_date} übertragen.

\n

Ihr neuer Ort der Entsendung ist {transfer_department} Abteilung von {transfer_branch} Niederlassung und Datum der Übertragung {transfer_date}.

\n

{transfer_description}.

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (84,6,'en','Employee Transfer','

Subject:-HR department/Company to send transfer letter to be issued to an employee from one location to another.

\n

Dear {transfer_name},

\n

As per Management directives, your services are being transferred w.e.f.{transfer_date}.

\n

Your new place of posting is {transfer_department} department of {transfer_branch} branch and date of transfer {transfer_date}.

\n {transfer_description}.\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (85,6,'es','Employee Transfer','

Asunto: -Departamento de RR.HH./Empresa para enviar carta de transferencia a un empleado de un lugar a otro.

\n

Estimado {transfer_name},

\n

Según las directivas de gestión, los servicios se transfieren w.e.f. {transfer_date}.

\n

El nuevo lugar de publicación es el departamento {transfer_department} de la rama {transfer_branch} y la fecha de transferencia {transfer_date}.

\n

{transfer_description}.

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (86,6,'fr','Employee Transfer','

Objet: -Ministère des RH / Société denvoi dune lettre de transfert à un employé dun endroit à un autre.

\n

Cher { transfer_name },

\n

Selon les directives de gestion, vos services sont transférés dans w.e.f. { transfer_date }.

\n

Votre nouveau lieu daffectation est le département { transfer_department } de la branche { transfer_branch } et la date de transfert { transfer_date }.

\n

{ description_transfert }.

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (87,6,'it','Employee Transfer','

Oggetto: - Dipartimento HR / Società per inviare lettera di trasferimento da rilasciare a un dipendente da una località allaltra.

\n

Caro {transfer_name},

\n

Come per le direttive di Management, i tuoi servizi vengono trasferiti w.e.f. {transfer_date}.

\n

Il tuo nuovo luogo di distacco è {transfer_department} dipartimento di {transfer_branch} ramo e data di trasferimento {transfer_date}.

\n

{transfer_description}.

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:16','2024-05-29 04:33:16'), (88,6,'ja','Employee Transfer','

Oggetto: - Dipartimento HR / Società per inviare lettera di trasferimento da rilasciare a un dipendente da una località allaltra.

\n

Caro {transfer_name},

\n

Come per le direttive di Management, i tuoi servizi vengono trasferiti w.e.f. {transfer_date}.

\n

Il tuo nuovo luogo di distacco è {transfer_department} dipartimento di {transfer_branch} ramo e data di trasferimento {transfer_date}.

\n

{transfer_description}.

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (89,6,'nl','Employee Transfer','

Betreft: -HR-afdeling/Bedrijf voor verzending van overdrachtsbrief aan een werknemer van de ene plaats naar de andere.

\n

Geachte { transfer_name },

\n

Als per beheerinstructie worden uw services overgebracht w.e.f. { transfer_date }.

\n

Uw nieuwe plaats van post is { transfer_department } van de afdeling { transfer_branch } en datum van overdracht { transfer_date }.

\n

{ transfer_description }.

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (90,6,'pl','Employee Transfer','

Temat:-Dział HR/Firma do wysyłania listu przelewowego, który ma być wydany pracownikowi z jednego miejsca do drugiego.

\n

Droga {transfer_name },

\n

Zgodnie z dyrektywami zarządzania, Twoje usługi są przesyłane w.e.f. {transfer_date }.

\n

Twoje nowe miejsce delegowania to {transfer_department } dział {transfer_branch } gałąź i data transferu {transfer_date }.

\n

{transfer_description }.

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (91,6,'ru','Employee Transfer','

Тема: -HR отдел/Компания для отправки трансферного письма сотруднику из одного места в другое.

\n

Уважаемый { transfer_name },

\n

В соответствии с директивами управления ваши службы передаются .ef. { transfer_date }.

\n

Новое место разноски: { transfer_department} подразделение { transfer_branch } и дата передачи { transfer_date }.

\n

{ transfer_description }.

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (92,6,'pt','Employee Transfer','

Assunto:-Departamento de RH / Empresa para enviar carta de transferência para ser emitida para um funcionário de um local para outro.

\n

Querido {transfer_name},

\n

Conforme diretivas de Gerenciamento, seus serviços estão sendo transferidos w.e.f. {transfer_date}.

\n

O seu novo local de postagem é {transfer_departamento} departamento de {transfer_branch} ramo e data de transferência {transfer_date}.

\n

{transfer_description}.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (93,6,'tr','Employee Transfer','

Konu:-İK departmanı/Şirket, bir çalışana bir konumdan diğerine verilecek transfer mektubunu göndermek için.

\n

Sayın {transfer_name},

\n

Yönetim direktifleri uyarınca, hizmetleriniz w.e.f.{transfer_date}.

\n

Yeni gönderi yeriniz {transfer_department} Bölümü {transfer_branch} şube ve devir tarihi {transfer_date}.

\n {transfer_description}.\n

Herhangi bir sorunuz varsa çekinmeden bize ulaşın.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (94,6,'zh','Employee Transfer','

主题:-人力资源部门/公司将发给员工的调动信从一个地点发送到另一个地点.

\n

亲爱的 {transfer_name},

\n

根据管理层指令,您的服务将在即日起转移。{transfer_date}.

\n

您的新发帖地点是 {transfer_department} 部门 {transfer_branch} 分支机构和转移日期 {transfer_date}.

\n {transfer_description}.\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (95,6,'he','Employee Transfer','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב העברה שיונפק לעובד ממקום אחד למשנהו.

\n

יָקָר {transfer_name},

\n

בהתאם להנחיות ההנהלה, השירותים שלך מועברים w.e.f.{transfer_date}.

\n

מקום הפרסום החדש שלך הוא {transfer_department} מחלקת ה {transfer_branch} סניף ותאריך העברה {transfer_date}.

\n {transfer_description}.\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (96,6,'pt-br','Employee Transfer','

Assunto:-Departamento de RH / Empresa para enviar carta de transferência para ser emitida para um funcionário de um local para outro.

\n

Querido {transfer_name},

\n

Conforme diretivas de Gerenciamento, seus serviços estão sendo transferidos w.e.f. {transfer_date}.

\n

O seu novo local de postagem é {transfer_departamento} departamento de {transfer_branch} ramo e data de transferência {transfer_date}.

\n

{transfer_description}.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (97,7,'ar','Employee Resignation','

Subject :-قسم الموارد البشرية / الشركة لإرسال خطاب استقالته.

\n

عزيزي { assign_user } ،

\n

إنه لمن دواعي الأسف الشديد أن أعترف رسميا باستلام إشعار استقالتك في { notice_date } الى { resignation_date } هو اليوم الأخير لعملك.

\n

لقد كان من دواعي سروري العمل معكم ، وبالنيابة عن الفريق ، أود أن أتمنى لكم أفضل جدا في جميع مساعيكم في المستقبل. ومن خلال هذه الرسالة ، يرجى العثور على حزمة معلومات تتضمن معلومات مفصلة عن عملية الاستقالة.

\n

شكرا لكم مرة أخرى على موقفكم الإيجابي والعمل الجاد كل هذه السنوات.

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (98,7,'da','Employee Resignation','

Om: HR-afdelingen / Kompagniet, for at sende en opsigelse.

\n

Kære { assign_user },

\n

Det er med stor beklagelse, at jeg formelt anerkender modtagelsen af din opsigelsesmeddelelse på { notice_date } til { resignation_date } er din sidste arbejdsdag

\n

Det har været en fornøjelse at arbejde sammen med Dem, og på vegne af teamet vil jeg ønske Dem det bedste i alle Deres fremtidige bestræbelser. Med dette brev kan du finde en informationspakke med detaljerede oplysninger om tilbagetrædelsesprocessen.

\n

Endnu en gang tak for Deres positive holdning og hårde arbejde i alle disse år.

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (99,7,'de','Employee Resignation','

Betreff: -Personalabteilung/Firma, um Rückmeldungsschreiben zu senden.

\n

Sehr geehrter {assign_user},

\n

Es ist mit großem Bedauern, dass ich den Eingang Ihrer Rücktrittshinweis auf {notice_date} an {resignation_date} offiziell bestätige, ist Ihr letzter Arbeitstag.

\n

Es war eine Freude, mit Ihnen zu arbeiten, und im Namen des Teams möchte ich Ihnen wünschen, dass Sie in allen Ihren zukünftigen Bemühungen am besten sind. In diesem Brief finden Sie ein Informationspaket mit detaillierten Informationen zum Rücktrittsprozess.

\n

Vielen Dank noch einmal für Ihre positive Einstellung und harte Arbeit all die Jahre.

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (100,7,'en','Employee Resignation','

Subject:-HR department/Company to send resignation letter .

\n

Dear {assign_user},

\n

It is with great regret that I formally acknowledge receipt of your resignation notice on {notice_date} to {resignation_date} is your final day of work.

\n

It has been a pleasure working with you, and on behalf of the team, I would like to wish you the very best in all your future endeavors. Included with this letter, please find an information packet with detailed information on the resignation process.

\n

Thank you again for your positive attitude and hard work all these years.

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (101,7,'es','Employee Resignation','

Asunto: -Departamento de RRHH/Empresa para enviar carta de renuncia.

\n

Estimado {assign_user},

\n

Es con gran pesar que recibo formalmente la recepción de su aviso de renuncia en {notice_date} a {resignation_date} es su último día de trabajo.

\n

Ha sido un placer trabajar con usted, y en nombre del equipo, me gustaría desearle lo mejor en todos sus esfuerzos futuros. Incluido con esta carta, por favor encuentre un paquete de información con información detallada sobre el proceso de renuncia.

\n

Gracias de nuevo por su actitud positiva y trabajo duro todos estos años.

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (102,7,'fr','Employee Resignation','

Objet: -Département RH / Société denvoi dune lettre de démission.

\n

Cher { assign_user },

\n

Cest avec grand regret que je reconnais officiellement la réception de votre avis de démission sur { notice_date } à { resignation_date } est votre dernier jour de travail.

\n

Cest un plaisir de travailler avec vous, et au nom de léquipe, jaimerais vous souhaiter le meilleur dans toutes vos activités futures. Inclus avec cette lettre, veuillez trouver un paquet dinformation contenant des informations détaillées sur le processus de démission.

\n

Je vous remercie encore de votre attitude positive et de votre travail acharne durant toutes ces années.

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (103,7,'it','Employee Resignation','

Oggetto: - Dipartimento HR / Società per inviare lettera di dimissioni.

\n

Caro {assign_user},

\n

È con grande dispiacere che riconosca formalmente la ricezione del tuo avviso di dimissioni su {notice_date} a {resignation_date} è la tua giornata di lavoro finale.

\n

È stato un piacere lavorare con voi, e a nome della squadra, vorrei augurarvi il massimo in tutti i vostri futuri sforzi. Incluso con questa lettera, si prega di trovare un pacchetto informativo con informazioni dettagliate sul processo di dimissioni.

\n

Grazie ancora per il vostro atteggiamento positivo e duro lavoro in tutti questi anni.

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (104,7,'ja','Employee Resignation','

件名:-HR 部門/企業は辞表を送信します。

\n

{assign_user} の認証を解除します。

\n

{ notice_date} に対するあなたの辞任通知を { resignation_date} に正式に受理することを正式に確認することは、非常に残念です。

\n

あなたと一緒に仕事をしていて、チームのために、あなたの将来の努力において、あなたのことを最高のものにしたいと思っています。 このレターには、辞任プロセスに関する詳細な情報が記載されている情報パケットをご覧ください。

\n

これらの長年の前向きな姿勢と努力を重ねて感謝します。

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (105,7,'nl','Employee Resignation','

Betreft: -HR-afdeling/Bedrijf om ontslagbrief te sturen.

\n

Geachte { assign_user },

\n

Het is met grote spijt dat ik de ontvangst van uw ontslagbrief op { notice_date } tot { resignation_date } formeel de ontvangst van uw laatste dag van het werk bevestigt.

\n

Het was een genoegen om met u samen te werken, en namens het team zou ik u het allerbeste willen wensen in al uw toekomstige inspanningen. Vermeld bij deze brief een informatiepakket met gedetailleerde informatie over het ontslagproces.

\n

Nogmaals bedankt voor uw positieve houding en hard werken al die jaren.

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (106,7,'pl','Employee Resignation','

Temat: -Dział HR/Firma do wysyłania listu rezygnacyjnego.

\n

Drogi użytkownika {assign_user },

\n

Z wielkim żalem, że oficjalnie potwierdzam otrzymanie powiadomienia o rezygnacji w dniu {notice_date } to {resignation_date } to twój ostatni dzień pracy.

\n

Z przyjemnością współpracujemy z Tobą, a w imieniu zespołu chciałbym życzyć Wam wszystkiego najlepszego we wszystkich swoich przyszłych przedsięwzięciu. Dołączone do tego listu prosimy o znalezienie pakietu informacyjnego ze szczegółowymi informacjami na temat procesu dymisji.

\n

Jeszcze raz dziękuję za pozytywne nastawienie i ciężką pracę przez te wszystkie lata.

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (107,7,'ru','Employee Resignation','

Тема: -HR отдел/Компания отправить письмо об отставке.

\n

Уважаемый пользователь { assign_user },

\n

С большим сожалением я официально подтверждаю получение вашего уведомления об отставке { notice_date } в { resignation_date }-это ваш последний день работы.

\n

С Вами было приятно работать, и от имени команды я хотел бы по# желать вам самого лучшего во всех ваших будущих начинаниях. В этом письме Вы можете найти информационный пакет с подробной информацией об отставке.

\n

Еще раз спасибо за ваше позитивное отношение и трудолюбие все эти годы.

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (108,7,'pt','Employee Resignation','

Assunto:-Departamento de RH / Empresa para enviar carta de demissão.

\n

Querido {assign_user},

\n

É com grande pesar que reconheço formalmente o recebimento do seu aviso de demissão em {notice_date} a {resignation_date} é o seu dia final de trabalho.

\n

Foi um prazer trabalhar com você, e em nome da equipe, gostaria de desejá-lo o melhor em todos os seus futuros empreendimentos. Incluídos com esta carta, por favor, encontre um pacote de informações com informações detalhadas sobre o processo de demissão.

\n

Obrigado novamente por sua atitude positiva e trabalho duro todos esses anos.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (109,7,'tr','Employee Resignation','

Konu:-İstifa mektubu gönderilecek İK departmanı/Şirket.

\n

Sayın {assign_user},

\n

İstifa bildiriminizi aldığımı büyük bir üzüntüyle resmen kabul ediyorum {notice_date} ile {resignation_date} işin son günü.

\n

Sizinle çalışmak bir zevkti ve ekip adına, gelecekteki tüm çabalarınızda size en iyisini diliyorum. Bu mektuba ek olarak, lütfen istifa süreci hakkında ayrıntılı bilgi içeren bir bilgi paketi bulun.

\n

Tüm bu yıllar boyunca olumlu tutumunuz ve sıkı çalışmanız için tekrar teşekkür ederiz.

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (110,7,'zh','Employee Resignation','

主题:-人力资源部/公司发送辞职信 .

\n

亲爱的 {assign_user},

\n

我非常遗憾地正式确认收到您的辞职通知 {notice_date} 到 {resignation_date} 是你最后一天的工作.

\n

与您合作非常愉快,我谨代表团队祝愿您在未来的工作中一切顺利。请在这封信中找到一个信息包,其中包含有关辞职流程的详细信息.

\n

再次感谢您这些年来的积极态度和努力.

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (111,7,'he','Employee Resignation','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב התפטרות .

\n

יָקָר {assign_user},

\n

בצער רב אני מאשר רשמית את קבלת הודעת ההתפטרות שלך ביום {notice_date} ל {resignation_date} הוא היום האחרון לעבודה שלך.

\n

היה לי תענוג לעבוד איתך, ובשם הצוות, אני רוצה לאחל לך את הטוב ביותר בכל העשייה העתידית שלך. מצורף למכתב זה, נא למצוא חבילת מידע עם מידע מפורט על תהליך ההתפטרות.

\n

שוב תודה לך על הגישה החיובית והעבודה הקשה כל השנים.

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (112,7,'pt-br','Employee Resignation','

Assunto:-Departamento de RH / Empresa para enviar carta de demissão.

\n

Querido {assign_user},

\n

É com grande pesar que reconheço formalmente o recebimento do seu aviso de demissão em {notice_date} a {resignation_date} é o seu dia final de trabalho.

\n

Foi um prazer trabalhar com você, e em nome da equipe, gostaria de desejá-lo o melhor em todos os seus futuros empreendimentos. Incluídos com esta carta, por favor, encontre um pacote de informações com informações detalhadas sobre o processo de demissão.

\n

Obrigado novamente por sua atitude positiva e trabalho duro todos esses anos.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (113,8,'ar','Employee Trip','

Subject : -HR ادارة / شركة لارسال رسالة رحلة.

\n

عزيزي { employee_trip_name },

\n

قمة الصباح إليك ! أكتب إلى مكتب إدارتكم بطلب متواضع للسفر من أجل زيارة إلى الخارج عن قصد.

\n

وسيكون هذا المنتدى هو المنتدى الرئيسي لأعمال المناخ في العام ، وقد كان محظوظا بما فيه الكفاية لكي يرشح لتمثيل شركتنا والمنطقة خلال الحلقة الدراسية.

\n

إن عضويتي التي دامت ثلاث سنوات كجزء من المجموعة والمساهمات التي قدمتها إلى الشركة ، ونتيجة لذلك ، كانت مفيدة من الناحية التكافلية. وفي هذا الصدد ، فإنني أطلب منكم بصفتي الرئيس المباشر لي أن يسمح لي بالحضور.

\n

مزيد من التفاصيل عن الرحلة : 

\n

مدة الرحلة : { start_date } الى { end_date }

\n

الغرض من الزيارة : { purpose_of_visit }

\n

مكان الزيارة : { place_of_visit }

\n

الوصف : { trip_description }

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (114,8,'da','Employee Trip','

Om: HR-afdelingen / Kompagniet, der skal sende udflugten.

\n

Kære { employee_trip_name },

\n

Godmorgen til dig! Jeg skriver til dit kontor med en ydmyg anmodning om at rejse for en { purpose_of_visit } i udlandet.

\n

Det ville være årets førende klimaforum, og det ville være heldigt nok at blive nomineret til at repræsentere vores virksomhed og regionen under seminaret.

\n

Mit treårige medlemskab som en del af den gruppe og de bidrag, jeg har givet til virksomheden, har som følge heraf været symbiotisk fordelagtigt. I den henseende anmoder jeg om, at De som min nærmeste overordnede giver mig lov til at deltage.

\n

Flere oplysninger om turen:

\n

Trip Duration: { start_date } til { end_date }

\n

Formålet med Besøg: { purpose_of_visit }

\n

Plads af besøg: { place_of_visit }

\n

Beskrivelse: { trip_description }

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (115,8,'de','Employee Trip','

Betreff: -Personalabteilung/Firma, um Reisebrief zu schicken.

\n

Sehr geehrter {employee_trip_name},

\n

Top of the morning to you! Ich schreibe an Ihre Dienststelle mit demütiger Bitte um eine Reise nach einem {purpose_of_visit} im Ausland.

\n

Es wäre das führende Klima-Business-Forum des Jahres und hatte das Glück, nominiert zu werden, um unser Unternehmen und die Region während des Seminars zu vertreten.

\n

Meine dreijährige Mitgliedschaft als Teil der Gruppe und die Beiträge, die ich an das Unternehmen gemacht habe, sind dadurch symbiotisch vorteilhaft gewesen. In diesem Zusammenhang ersuche ich Sie als meinen unmittelbaren Vorgesetzten, mir zu gestatten, zu besuchen.

\n

Mehr Details zu Reise:

\n

Dauer der Fahrt: {start_date} bis {end_date}

\n

Zweck des Besuchs: {purpose_of_visit}

\n

Ort des Besuchs: {place_of_visit}

\n

Beschreibung: {trip_description}

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (116,8,'en','Employee Trip','

Subject:-HR department/Company to send trip letter .

\n

Dear {employee_trip_name},

\n

Top of the morning to you! I am writing to your department office with a humble request to travel for a {purpose_of_visit} abroad.

\n

It would be the leading climate business forum of the year and have been lucky enough to be nominated to represent our company and the region during the seminar.

\n

My three-year membership as part of the group and contributions I have made to the company, as a result, have been symbiotically beneficial. In that regard, I am requesting you as my immediate superior to permit me to attend.

\n

More detail about trip:{start_date} to {end_date}

\n

Trip Duration:{start_date} to {end_date}

\n

Purpose of Visit:{purpose_of_visit}

\n

Place of Visit:{place_of_visit}

\n

Description:{trip_description}

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (117,8,'es','Employee Trip','

Asunto: -Departamento de RRHH/Empresa para enviar carta de viaje.

\n

Estimado {employee_trip_name},

\n

¡Top de la mañana para ti! Estoy escribiendo a su oficina del departamento con una humilde petición de viajar para un {purpose_of_visit} en el extranjero.

\n

Sería el principal foro de negocios climáticos del año y han tenido la suerte de ser nominados para representar a nuestra compañía y a la región durante el seminario.

\n

Mi membresía de tres años como parte del grupo y las contribuciones que he hecho a la compañía, como resultado, han sido simbóticamente beneficiosos. En ese sentido, le estoy solicitando como mi superior inmediato que me permita asistir.

\n

Más detalles sobre el viaje: 

\n

Duración del viaje: {start_date} a {end_date}

\n

Finalidad de la visita: {purpose_of_visit}

\n

Lugar de visita: {place_of_visit}

\n

Descripción: {trip_description}

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (118,8,'fr','Employee Trip','

Objet: -Service des RH / Compagnie pour envoyer une lettre de voyage.

\n

Cher { employee_trip_name },

\n

Top of the morning to you ! Jécrai au bureau de votre ministère avec une humble demande de voyage pour une {purpose_of_visit } à létranger.

\n

Il sagit du principal forum sur le climat de lannée et a eu la chance dêtre désigné pour représenter notre entreprise et la région au cours du séminaire.

\n

Mon adhésion de trois ans au groupe et les contributions que jai faites à lentreprise, en conséquence, ont été bénéfiques sur le plan symbiotique. À cet égard, je vous demande dêtre mon supérieur immédiat pour me permettre dy assister.

\n

Plus de détails sur le voyage:

\n

Durée du voyage: { start_date } à { end_date }

\n

Objet de la visite: { purpose_of_visit}

\n

Lieu de visite: { place_of_visit }

\n

Description: { trip_description }

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (119,8,'it','Employee Trip','

Oggetto: - Dipartimento HR / Società per inviare lettera di viaggio.

\n

Caro {employee_trip_name},

\n

In cima al mattino a te! Scrivo al tuo ufficio dipartimento con umile richiesta di viaggio per un {purpose_of_visit} allestero.

\n

Sarebbe il forum aziendale sul clima leader dellanno e sono stati abbastanza fortunati da essere nominati per rappresentare la nostra azienda e la regione durante il seminario.

\n

La mia adesione triennale come parte del gruppo e i contributi che ho apportato allazienda, di conseguenza, sono stati simbioticamente vantaggiosi. A tal proposito, vi chiedo come mio immediato superiore per consentirmi di partecipare.

\n

Più dettagli sul viaggio:

\n

Trip Duration: {start_date} a {end_date}

\n

Finalità di Visita: {purpose_of_visit}

\n

Luogo di Visita: {place_of_visit}

\n

Descrizione: {trip_description}

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (120,8,'ja','Employee Trip','

件名:-HR 部門/会社は出張レターを送信します。

\n

{ employee_trip_name} に出庫します。

\n

朝のトップだ ! 海外で {purpose_of_visit} をお願いしたいという謙虚な要求をもって、私はあなたの部署に手紙を書いています。

\n

これは、今年の主要な気候ビジネス・フォーラムとなり、セミナーの開催中に当社と地域を代表する候補になるほど幸運にも恵まれています。

\n

私が会社に対して行った 3 年間のメンバーシップは、その結果として、共生的に有益なものでした。 その点では、私は、私が出席することを許可することを、私の即座の上司として

\n

トリップについての詳細 :

\n

トリップ期間:{start_date} を {end_date} に設定します

\n

アクセスの目的 :{purpose_of_visit}

\n

訪問の場所 :{place_of_visit}

\n

説明:{trip_description}

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (121,8,'nl','Employee Trip','

Betreft: -HR-afdeling/Bedrijf om reisbrief te sturen.

\n

Geachte { employee_trip_name },

\n

Top van de ochtend aan u! Ik schrijf uw afdelingsbureau met een bescheiden verzoek om een { purpose_of_visit } in het buitenland te bezoeken.

\n

Het zou het toonaangevende klimaatforum van het jaar zijn en hebben het geluk gehad om genomineerd te worden om ons bedrijf en de regio te vertegenwoordigen tijdens het seminar.

\n

Mijn driejarige lidmaatschap als onderdeel van de groep en bijdragen die ik heb geleverd aan het bedrijf, als gevolg daarvan, zijn symbiotisch gunstig geweest. Wat dat betreft, verzoek ik u als mijn directe chef mij in staat te stellen aanwezig te zijn.

\n

Meer details over reis:

\n

Duur van reis: { start_date } tot { end_date }

\n

Doel van bezoek: { purpose_of_visit }

\n

Plaats van bezoek: { place_of_visit }

\n

Beschrijving: { trip_description }

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u we

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (122,8,'pl','Employee Trip','

Temat:-Dział HR/Firma do wysyłania listu podróży.

\n

Szanowny {employee_trip_name },

\n

Od samego rana do Ciebie! Piszę do twojego biura, z pokornym prośbą o wyjazd na {purpose_of_visit } za granicą.

\n

Byłoby to wiodącym forum biznesowym w tym roku i miało szczęście być nominowane do reprezentowania naszej firmy i regionu podczas seminarium.

\n

Moje trzyletnie członkostwo w grupie i składkach, które uczyniłem w firmie, w rezultacie, były symbiotycznie korzystne. W tym względzie, zwracam się do pana o mój bezpośredni przełożony, który pozwoli mi na udział w tej sprawie.

\n

Więcej szczegółów na temat wyjazdu:

\n

Czas trwania rejsu: {start_date } do {end_date }

\n

Cel wizyty: {purpose_of_visit }

\n

Miejsce wizyty: {place_of_visit }

\n

Opis: {trip_description }

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (123,8,'ru','Employee Trip','

Тема: -HR отдел/Компания для отправки письма на поездку.

\n

Уважаемый { employee_trip_name },

\n

С утра до тебя! Я пишу в ваш отдел с смиренным запросом на поездку за границу.

\n

Это был бы ведущий климатический бизнес-форум года и по везло, что в ходе семинара он будет представлять нашу компанию и регион.

\n

Мое трехлетнее членство в составе группы и взносы, которые я внес в компанию, в результате, были симбиотически выгодны. В этой связи я прошу вас как моего непосредственного начальника разрешить мне присутствовать.

\n

Подробнее о поездке:

\n

Длительность поездки: { start_date } в { end_date }

\n

Цель посещения: { purpose_of_visit }

\n

Место посещения: { place_of_visit }

\n

Описание: { trip_description }

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (124,8,'pt','Employee Trip','

Assunto:-Departamento de RH / Empresa para enviar carta de viagem.

\n

Querido {employee_trip_name},

\n

Topo da manhã para você! Estou escrevendo para o seu departamento de departamento com um humilde pedido para viajar por um {purpose_of_visit} no exterior.

\n

Seria o principal fórum de negócios climático do ano e teve a sorte de ser indicado para representar nossa empresa e a região durante o seminário.

\n

A minha filiação de três anos como parte do grupo e contribuições que fiz à empresa, como resultado, foram simbioticamente benéfico. A esse respeito, solicito que você seja meu superior imediato para me permitir comparecer.

\n

Mais detalhes sobre viagem:

\n

Trip Duração: {start_date} a {end_date}

\n

Objetivo da Visita: {purpose_of_visit}

\n

Local de Visita: {place_of_visit}

\n

Descrição: {trip_description}

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (125,8,'tr','Employee Trip','

Konu:-İK departmanı/Şirket gezi mektubu gönderecek .

\n

Sayın {employee_trip_name},

\n

Size sabahın en iyisi! Mütevazi bir seyahat talebiyle departman ofisinize yazıyorum {purpose_of_visit} yurt dışı.

\n

Yılın önde gelen iklim iş forumu olacaktı ve seminer sırasında şirketimizi ve bölgeyi temsil edecek kadar şanslıydık.

\n

Grubun bir parçası olarak üç yıllık üyeliğim ve bunun sonucunda şirkete yaptığım katkılar simbiyotik olarak faydalı oldu. Bu bağlamda, acil amirim olarak katılmama izin vermenizi rica ediyorum.

\n

Gezi hakkında daha fazla detay:{start_date} ile {end_date}

\n

Yolculuk Süresi:{start_date} ile {end_date}

\n

Ziyaret amacı:{purpose_of_visit}

\n

Ziyaret Yeri:{place_of_visit}

\n

Tanım:{trip_description}

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (126,8,'zh','Employee Trip','

主题:-HR部门/公司发送出差函 .

\n

亲爱的 {employee_trip_name},

\n

早上好!我写信给你们的部门办公室,提出一个小小的旅行请求 {purpose_of_visit} 国外.

\n

这将是今年领先的气候商业论坛,我们很幸运能够被提名在研讨会上代表我们公司和该地区.

\n

我作为团队成员的三年会员身份以及我对公司做出的贡献是共生有益的。在这方面,我请求你作为我的直接上级允许我参加.

\n

有关行程的更多详细信息:{start_date} 到 {end_date}

\n

行程持续时间:{start_date} 到 {end_date}

\n

参观的目的:{purpose_of_visit}

\n

参观地点:{place_of_visit}

\n

描述:{trip_description}

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (127,8,'he','Employee Trip','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב טיול .

\n

יָקָר {employee_trip_name},

\n

שיא הבוקר לך! אני כותב למשרד המחלקה שלך עם בקשה צנועה לנסוע לא {purpose_of_visit} מחוץ לארץ.

\n

זה יהיה פורום עסקי האקלים המוביל של השנה והתמזל מזלי להיות מועמד לייצג את החברה שלנו ואת האזור במהלך הסמינר.

\n

חברותי בת שלוש שנים כחלק מהקבוצה והתרומות שתרמתי לחברה, כתוצאה מכך, הועילו באופן סימביוטי. בהקשר זה, אני מבקש ממך כמפקד הישיר שלי להתיר לי להשתתף.

\n

פרטים נוספים על הטיול:{start_date} ל {end_date}

\n

משך הטיול:{start_date} ל {end_date}

\n

מטרת הביקור:{purpose_of_visit}

\n

מקום ביקור:{place_of_visit}

\n

תיאור:{trip_description}

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (128,8,'pt-br','Employee Trip','

Assunto:-Departamento de RH / Empresa para enviar carta de viagem.

\n

Querido {employee_trip_name},

\n

Topo da manhã para você! Estou escrevendo para o seu departamento de departamento com um humilde pedido para viajar por um {purpose_of_visit} no exterior.

\n

Seria o principal fórum de negócios climático do ano e teve a sorte de ser indicado para representar nossa empresa e a região durante o seminário.

\n

A minha filiação de três anos como parte do grupo e contribuições que fiz à empresa, como resultado, foram simbioticamente benéfico. A esse respeito, solicito que você seja meu superior imediato para me permitir comparecer.

\n

Mais detalhes sobre viagem:

\n

Trip Duração: {start_date} a {end_date}

\n

Objetivo da Visita: {purpose_of_visit}

\n

Local de Visita: {place_of_visit}

\n

Descrição: {trip_description}

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (129,9,'ar','Employee Promotion','

Subject : -HR القسم / الشركة لارسال رسالة تهنئة الى العمل للتهنئة بالعمل.

\n

عزيزي { employee_promotion_name },

\n

تهاني على ترقيتك الى { promotion_designation } { promotion_title } الفعال { promotion_date }.

\n

وسنواصل توقع تحقيق الاتساق وتحقيق نتائج عظيمة منكم في دوركم الجديد. ونأمل أن تكون قدوة للموظفين الآخرين في المنظمة.

\n

ونتمنى لكم التوفيق في أداءكم في المستقبل ، وتهانينا !

\n

ومرة أخرى ، تهانئي على الموقف الجديد.

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (130,9,'da','Employee Promotion','

Om: HR-afdelingen / Virksomheden om at sende en lykønskning til jobfremstød.

\n

Kære { employee_promotion_name },

\n

Tillykke med din forfremmelse til { promotion_designation } { promotion_title } effektiv { promotion_date }.

\n

Vi vil fortsat forvente konsekvens og store resultater fra Dem i Deres nye rolle. Vi håber, at De vil foregå med et godt eksempel for de øvrige ansatte i organisationen.

\n

Vi ønsker Dem held og lykke med Deres fremtidige optræden, og tillykke!

\n

Endnu en gang tillykke med den nye holdning.

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (131,9,'de','Employee Promotion','

Betrifft: -Personalabteilung/Unternehmen, um einen Glückwunschschreiben zu senden.

\n

Sehr geehrter {employee_promotion_name},

\n

Herzlichen Glückwunsch zu Ihrer Werbeaktion an {promotion_designation} {promotion_title} wirksam {promotion_date}.

\n

Wir werden von Ihnen in Ihrer neuen Rolle weiterhin Konsistenz und große Ergebnisse erwarten. Wir hoffen, dass Sie ein Beispiel für die anderen Mitarbeiter der Organisation setzen werden.

\n

Wir wünschen Ihnen viel Glück für Ihre zukünftige Leistung, und gratulieren!

\n

Nochmals herzlichen Glückwunsch zu der neuen Position.

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (132,9,'en','Employee Promotion','

 

\n

Subject:-HR department/Company to send job promotion congratulation letter.

\n

Dear {employee_promotion_name},

\n

Congratulations on your promotion to {promotion_designation} {promotion_title} effective {promotion_date}.

\n

We shall continue to expect consistency and great results from you in your new role. We hope that you will set an example for the other employees of the organization.

\n

We wish you luck for your future performance, and congratulations!.

\n

Again, congratulations on the new position.

\n

 

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (133,9,'es','Employee Promotion','

Asunto: -Departamento de RRHH/Empresa para enviar carta de felicitación de promoción de empleo.

\n

Estimado {employee_promotion_name},

\n

Felicidades por su promoción a {promotion_designation} {promotion_title} efectiva {promotion_date}.

\n

Seguiremos esperando la coherencia y los grandes resultados de ustedes en su nuevo papel. Esperamos que usted ponga un ejemplo para los otros empleados de la organización.

\n

Le deseamos suerte para su futuro rendimiento, y felicitaciones!.

\n

Una vez más, felicidades por la nueva posición.

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (134,9,'fr','Employee Promotion','

Objet: -Département RH / Société denvoi dune lettre de félicitations pour la promotion de lemploi.

\n

Cher { employee_promotion_name },

\n

Félicitations pour votre promotion à { promotion_désignation } { promotion_title } effective { promotion_date }.

\n

Nous continuerons à vous attendre à une cohérence et à de grands résultats de votre part dans votre nouveau rôle. Nous espérons que vous trouverez un exemple pour les autres employés de lorganisation.

\n

Nous vous souhaitons bonne chance pour vos performances futures et félicitations !

\n

Encore une fois, félicitations pour le nouveau poste.

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (135,9,'it','Employee Promotion','

Oggetto: - Dipartimento HR / Società per inviare la lettera di congratulazioni alla promozione del lavoro.

\n

Caro {employee_promotion_name},

\n

Complimenti per la tua promozione a {promotion_designation} {promotion_title} efficace {promotion_date}.

\n

Continueremo ad aspettarci coerenza e grandi risultati da te nel tuo nuovo ruolo. Ci auguriamo di impostare un esempio per gli altri dipendenti dellorganizzazione.

\n

Ti auguriamo fortuna per le tue prestazioni future, e complimenti!.

\n

Ancora, complimenti per la nuova posizione.

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (136,9,'ja','Employee Promotion','

件名:-HR 部門/企業は、求人広告の祝賀状を送信します。

\n

{ employee_promotion_name} に出庫します。

\n

{promotion_designation } { promotion_title} {promotion_date} 販促に対するお祝いのお祝いがあります。

\n

今後とも、お客様の新しい役割において一貫性と大きな成果を期待します。 組織の他の従業員の例を設定したいと考えています。

\n

あなたの未来のパフォーマンスをお祈りします。おめでとうございます。

\n

また、新しい地位について祝意を表する。

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (137,9,'nl','Employee Promotion','

Betreft: -HR-afdeling/Bedrijf voor het versturen van de aanbevelingsbrief voor taakpromotie.

\n

Geachte { employee_promotion_name },

\n

Gefeliciteerd met uw promotie voor { promotion_designation } { promotion_title } effective { promotion_date }.

\n

Wij zullen de consistentie en de grote resultaten van u in uw nieuwe rol blijven verwachten. Wij hopen dat u een voorbeeld zult stellen voor de andere medewerkers van de organisatie.

\n

Wij wensen u geluk voor uw toekomstige prestaties, en gefeliciteerd!.

\n

Nogmaals, gefeliciteerd met de nieuwe positie.

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (138,9,'pl','Employee Promotion','

Temat: -Dział kadr/Firma w celu wysłania listu gratulacyjnego dla promocji zatrudnienia.

\n

Szanowny {employee_promotion_name },

\n

Gratulacje dla awansowania do {promotion_designation } {promotion_title } efektywnej {promotion_date }.

\n

W dalszym ciągu oczekujemy konsekwencji i wspaniałych wyników w Twojej nowej roli. Mamy nadzieję, że postawicie na przykład dla pozostałych pracowników organizacji.

\n

Życzymy powodzenia dla przyszłych wyników, gratulujemy!.

\n

Jeszcze raz gratulacje na nowej pozycji.

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (139,9,'ru','Employee Promotion','

Тема: -HR отдел/Компания для отправки письма с поздравлением.

\n

Уважаемый { employee_promotion_name },

\n

Поздравляем вас с продвижением в { promotion_designation } { promotion_title } эффективная { promotion_date }.

\n

Мы будем и впредь ожидать от вас соответствия и больших результатов в вашей новой роли. Мы надеемся, что вы станете примером для других сотрудников организации.

\n

Желаем вам удачи и поздравлений!

\n

Еще раз поздравляю с новой позицией.

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (140,9,'pt','Employee Promotion','

Assunto:-Departamento de RH / Empresa para enviar carta de felicitação de promoção de emprego.

\n

Querido {employee_promotion_name},

\n

Parabéns pela sua promoção para {promotion_designation} {promotion_title} efetivo {promotion_date}.

\n

Continuaremos a esperar consistência e grandes resultados a partir de você em seu novo papel. Esperamos que você defina um exemplo para os demais funcionários da organização.

\n

Desejamos sorte para o seu desempenho futuro, e parabéns!.

\n

Novamente, parabéns pela nova posição.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (141,9,'tr','Employee Promotion','

Konu:-İş promosyonu tebrik mektubu gönderilecek İK departmanı/Şirket.

\n

Sayın {employee_promotion_name},

\n

terfi ettiğiniz için tebrikler {promotion_designation} {promotion_title} etkili {promotion_date}.

\n

Sizden yeni görevinizde tutarlılık ve harika sonuçlar beklemeye devam edeceğiz. Kurumun diğer çalışanlarına da örnek olmanızı temenni ederiz.

\n

Gelecekteki performansınız için size bol şans diliyor, tebrikler!.

\n

Yeni pozisyon için tekrar tebrikler.

\n

 

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (142,9,'zh','Employee Promotion','

 

\n

主题:-HR部门/公司发送职位晋升祝贺信.

\n

亲爱的{employee_promotion_name},

\n

恭喜您晋升为 {promotion_designation} {promotion_title} 有效的 {promotion_date}.

\n

我们将继续期待您在新岗位上保持稳定并取得出色的成果。我们希望您能为组织的其他员工树立榜样.

\n

我们祝愿您未来的表现一切顺利,并表示祝贺!.

\n

再次祝贺您就任新职位.

\n

 

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (143,9,'he','Employee Promotion','

 

\n

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב ברכה לקידום בעבודה.

\n

יָקָר {employee_promotion_name},

\n

ברכות על הקידום שלך ל{promotion_designation} {promotion_title} יָעִיל {promotion_date}.

\n

נמשיך לצפות לעקביות ולתוצאות נהדרות ממך בתפקידך החדש. אנו מקווים שתהווה דוגמה לעובדי הארגון האחרים.

\n

אנו מאחלים לך בהצלחה בביצועים העתידיים שלך, ומזל טוב!.

\n

שוב, ברכות על התפקיד החדש.

\n

 

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (144,9,'pt-br','Employee Promotion','

Assunto:-Departamento de RH / Empresa para enviar carta de felicitação de promoção de emprego.

\n

Querido {employee_promotion_name},

\n

Parabéns pela sua promoção para {promotion_designation} {promotion_title} efetivo {promotion_date}.

\n

Continuaremos a esperar consistência e grandes resultados a partir de você em seu novo papel. Esperamos que você defina um exemplo para os demais funcionários da organização.

\n

Desejamos sorte para o seu desempenho futuro, e parabéns!.

\n

Novamente, parabéns pela nova posição.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (145,10,'ar','Employee Complaints','

Subject :-قسم الموارد البشرية / الشركة لإرسال رسالة شكوى.

\n

عزيزي { employee_complaints_name },

\n

وأود أن أبلغ عن صراعا بينكم وبين الشخص الآخر. فقد وقعت عدة حوادث خلال الأيام القليلة الماضية ، وأشعر أن الوقت قد حان لتقديم شكوى رسمية ضده / لها.

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (146,10,'da','Employee Complaints','

Om: HR-departementet / Kompagniet for at sende klager.

\n

Kære { employee_complaints_name },

\n

Jeg vil gerne anmelde en konflikt mellem Dem og den anden person, og der er sket flere episoder i de seneste dage, og jeg mener, at det er på tide at anmelde en formel klage over for ham.

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (147,10,'de','Employee Complaints','

Betrifft: -Personalabteilung/Unternehmen zum Senden von Beschwerden.

\n

Sehr geehrter {employee_complaints_name},

\n

Ich möchte einen Konflikt zwischen Ihnen und der anderen Person melden. Es hat in den letzten Tagen mehrere Zwischenfälle gegeben, und ich glaube, es ist an der Zeit, eine formelle Beschwerde gegen ihn zu erstatten.

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (148,10,'en','Employee Complaints','

Subject:-HR department/Company to send complaints letter.

\n

Dear {employee_complaints_name},

\n

I would like to report a conflict between you and the other person.There have been several incidents over the last few days, and I feel that it is time to report a formal complaint against him/her.

\n

 

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (149,10,'es','Employee Complaints','

Asunto: -Departamento de RRHH/Empresa para enviar carta de quejas.

\n

Estimado {employee_complaints_name},

\n

Me gustaría informar de un conflicto entre usted y la otra persona. Ha habido varios incidentes en los últimos días, y creo que es hora de denunciar una queja formal contra él.

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (150,10,'fr','Employee Complaints','

Objet: -Service des ressources humaines / Compagnie pour envoyer une lettre de plainte.

\n

Cher { employee_complaints_name },

\n

Je voudrais signaler un conflit entre vous et lautre personne. Il y a eu plusieurs incidents au cours des derniers jours, et je pense quil est temps de signaler une plainte officielle contre lui.

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (151,10,'it','Employee Complaints','

Oggetto: - Dipartimento HR / Società per inviare lettera di reclamo.

\n

Caro {employee_complaints_name},

\n

Vorrei segnalare un conflitto tra lei e laltra persona Ci sono stati diversi incidenti negli ultimi giorni, e sento che è il momento di denunciare una denuncia formale contro di lui.

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (152,10,'ja','Employee Complaints','

件名:-HR 部門/会社は、クレーム・レターを送信します。

\n

{ employee_complaints_name} の Dear 

\n

あなたと他の人との間の葛藤を報告したいと思いますこの数日間でいくつかの事件が発生しています彼女に対する正式な申し立てをする時だと感じています

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (153,10,'nl','Employee Complaints','

Betreft: -HR-afdeling/Bedrijf voor het verzenden van klachtenbrief.

\n

Geachte { employee_complaints_name},

\n

Ik zou een conflict willen melden tussen u en de andere persoon. Er zijn de afgelopen dagen verschillende incidenten geweest en ik denk dat het tijd is om een formele klacht tegen hem/haar in te dienen.

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (154,10,'pl','Employee Complaints','

Temat:-Dział HR/Firma do wysyłania listu reklamowego.

\n

Szanowna {employee_complaints_name },

\n

Chciałbym zgłosić konflikt między tobą a drugą osobą. W ciągu ostatnich kilku dni było kilka incydentów i czuję, że nadszedł czas, aby zgłosić oficjalną skargę przeciwko niej.

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (155,10,'ru','Employee Complaints','

Тема: -HR отдел/Компания отправить письмо с жалобами.

\n

Уважаемый { employee_complaints_name }

\n

Я хотел бы сообщить о конфликте между вами и другим человеком. За последние несколько дней произошло несколько инцидентов, и я считаю, что пришло время сообщить о своей официальной жалобе.

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (156,10,'pt','Employee Complaints','

Assunto:-Departamento de RH / Empresa para enviar carta de reclamações.

\n

Querido {employee_complaints_name},

\n

Eu gostaria de relatar um conflito entre você e a outra pessoa. Houve vários incidentes ao longo dos últimos dias, e eu sinto que é hora de relatar uma denúncia formal contra him/her.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (157,10,'tr','Employee Complaints','

Konu:-Şikayet mektubu gönderilecek İK departmanı/Şirket.

\n

Sayın {employee_complaints_name},

\n

Diğer kişiyle aranızdaki bir anlaşmazlığı bildirmek istiyorum. Son birkaç gün içinde birkaç olay oldu ve bu kişi hakkında resmi bir şikayette bulunmanın zamanının geldiğini düşünüyorum.

\n

 

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (158,10,'zh','Employee Complaints','

主题:-HR部门/公司发送投诉信.

\n

亲爱的 {employee_complaints_name},

\n

我想举报您和对方之间的冲突。过去几天发生了几起事件,我觉得是时候对他/她提出正式投诉了.

\n

 

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (159,10,'he','Employee Complaints','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב תלונות.

\n

יָקָר {employee_complaints_name},

\n

ברצוני לדווח על סכסוך בינך לבין האדם השני. היו מספר תקריות במהלך הימים האחרונים, ואני מרגיש שהגיע הזמן לדווח על תלונה רשמית נגדו/ה.

\n

 

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (160,10,'pt-br','Employee Complaints','

Assunto:-Departamento de RH / Empresa para enviar carta de reclamações.

\n

Querido {employee_complaints_name},

\n

Eu gostaria de relatar um conflito entre você e a outra pessoa. Houve vários incidentes ao longo dos últimos dias, e eu sinto que é hora de relatar uma denúncia formal contra him/her.

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (161,11,'ar','Employee Warning','

Subject : -HR ادارة / شركة لارسال رسالة تحذير. عزيزي { employe_warning_name }, { warning_subject } { warning_description } إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة. شكرا لك Regards, إدارة الموارد البشرية ، { app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (162,11,'da','Employee Warning','

Om: HR-afdelingen / kompagniet for at sende advarselsbrev.

\n

Kære { employee_warning_name },

\n

{ warning_subject }

\n

{ warning_description }

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (163,11,'de','Employee Warning','

Betreff: -Personalabteilung/Unternehmen zum Senden von Warnschreiben.

\n

Sehr geehrter {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (164,11,'en','Employee Warning','

Subject:-HR department/Company to send warning letter.

\n

Dear {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (165,11,'es','Employee Warning','

Asunto: -Departamento de RR.HH./Empresa para enviar carta de advertencia.

\n

Estimado {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (166,11,'fr','Employee Warning','

Objet: -HR department / Company to send warning letter.

\n

Cher { employee_warning_name },

\n

{ warning_subject }

\n

{ warning_description }

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (167,11,'it','Employee Warning','

Oggetto: - Dipartimento HR / Società per inviare lettera di avvertimento.

\n

Caro {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (168,11,'ja','Employee Warning','

件名:-HR 部門/企業は警告レターを送信します。 { employee_warning_name} を出庫します。 {warning_subject} {warning_description} 質問がある場合は、自由に連絡してください。 ありがとう よろしく HR 部門 {app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (169,11,'nl','Employee Warning','

Betreft: -HR-afdeling/bedrijf om een waarschuwingsbrief te sturen.

\n

Geachte { employee_warning_name },

\n

{ warning_subject }

\n

{ warning_description }

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (170,11,'pl','Employee Warning','

Temat: -Dział HR/Firma do wysyłania listu ostrzegawczego.

\n

Szanowny {employee_warning_name },

\n

{warning_subject }

\n

{warning_description }

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (171,11,'ru','Employee Warning','

Тема: -HR отдел/Компания для отправки предупреждающего письма.

\n

Уважаемый { employee_warning_name },

\n

{ warning_subject }

\n

{ warning_description }

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (172,11,'pt','Employee Warning','

Assunto:-Departamento de RH / Empresa para enviar carta de advertência.

\n

Querido {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (173,11,'tr','Employee Warning','

Konu:-İK departmanı/Şirket uyarı mektubu gönderecek.

\n

Sayın {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (174,11,'zh','Employee Warning','

主题:-人力资源部门/公司发送警告信.

\n

亲爱的{employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (175,11,'he','Employee Warning','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב אזהרה.

\n

יָקָר {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (176,11,'pt-br','Employee Warning','

Assunto:-Departamento de RH / Empresa para enviar carta de advertência.

\n

Querido {employee_warning_name},

\n

{warning_subject}

\n

{warning_description}

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (177,12,'ar','Employee Termination','

Subject :-ادارة / شركة HR لارسال رسالة انهاء. عزيزي { employee_termination_name } ، هذه الرسالة مكتوبة لإعلامك بأن عملك مع شركتنا قد تم إنهاؤه مزيد من التفاصيل عن الانهاء : تاريخ الاشعار : { notice_date } تاريخ الانهاء : { termination_date } نوع الانهاء : { termination_type } إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة. شكرا لك Regards, إدارة الموارد البشرية ، { app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (178,12,'da','Employee Termination','

Emne:-HR-afdelingen / Virksomheden om at sende afslutningstskrivelse.

\n

Kære { employee_termination_name },

\n

Dette brev er skrevet for at meddele dig, at dit arbejde med vores virksomhed er afsluttet.

\n

Flere oplysninger om ophævelse:

\n

Adviseringsdato: { notifice_date }

\n

Opsigelsesdato: { termination_date }

\n

Opsigelsestype: { termination_type }

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (179,12,'de','Employee Termination','

Betreff: -Personalabteilung/Firma zum Versenden von Kündigungsschreiben.

\n

Sehr geehrter {employee_termination_name},

\n

Dieser Brief wird Ihnen schriftlich mitgeteilt, dass Ihre Beschäftigung mit unserem Unternehmen beendet ist.

\n

Weitere Details zur Kündigung:

\n

Kündigungsdatum: {notice_date}

\n

Beendigungsdatum: {termination_date}

\n

Abbruchstyp: {termination_type}

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (180,12,'en','Employee Termination','

Subject:-HR department/Company to send termination letter.

\n

Dear {employee_termination_name},

\n

This letter is written to notify you that your employment with our company is terminated.

\n

More detail about termination:

\n

Notice Date :{notice_date}

\n

Termination Date:{termination_date}

\n

Termination Type:{termination_type}

\n

 

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (181,12,'es','Employee Termination','

Asunto: -Departamento de RRHH/Empresa para enviar carta de rescisión.

\n

Estimado {employee_termination_name},

\n

Esta carta está escrita para notificarle que su empleo con nuestra empresa ha terminado.

\n

Más detalles sobre la terminación:

\n

Fecha de aviso: {notice_date}

\n

Fecha de terminación: {termination_date}

\n

Tipo de terminación: {termination_type}

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (182,12,'fr','Employee Termination','

Objet: -HR department / Company to send termination letter.

\n

Cher { employee_termination_name },

\n

Cette lettre est rédigée pour vous aviser que votre emploi auprès de notre entreprise prend fin.

\n

Plus de détails sur larrêt:

\n

Date de lavis: { notice_date }

\n

Date de fin: { termination_date}

\n

Type de terminaison: { termination_type }

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (183,12,'it','Employee Termination','

Oggetto: - Dipartimento HR / Società per inviare lettera di terminazione.

\n

Caro {employee_termination_name},

\n

Questa lettera è scritta per comunicarti che la tua occupazione con la nostra azienda è terminata.

\n

Più dettagli sulla cessazione:

\n

Data avviso: {notice_data}

\n

Data di chiusura: {termination_date}

\n

Tipo di terminazione: {termination_type}

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (184,12,'ja','Employee Termination','

件名:-HR 部門/企業は終了文字を送信します。

\n

{ employee_termination_name} を終了します。

\n

この手紙は、当社の雇用が終了していることをあなたに通知するために書かれています。

\n

終了についての詳細 :

\n

通知日 :{notice_date}

\n

終了日:{termination_date}

\n

終了タイプ:{termination_type}

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (185,12,'nl','Employee Termination','

Betreft: -HR-afdeling/Bedrijf voor verzending van afgiftebrief.

\n

Geachte { employee_termination_name },

\n

Deze brief is geschreven om u te melden dat uw werk met ons bedrijf wordt beëindigd.

\n

Meer details over beëindiging:

\n

Datum kennisgeving: { notice_date }

\n

Beëindigingsdatum: { termination_date }

\n

Beëindigingstype: { termination_type }

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (186,12,'pl','Employee Termination','

Temat: -Dział kadr/Firma do wysyłania listu zakańczego.

\n

Droga {employee_termination_name },

\n

Ten list jest napisany, aby poinformować Cię, że Twoje zatrudnienie z naszą firmą zostaje zakończone.

\n

Więcej szczegółów na temat zakończenia pracy:

\n

Data ogłoszenia: {notice_date }

\n

Data zakończenia: {termination_date }

\n

Typ zakończenia: {termination_type }

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (187,12,'ru','Employee Termination','

Тема: -HR отдел/Компания отправить письмо о прекращении.

\n

Уважаемый { employee_termination_name },

\n

Это письмо написано, чтобы уведомить вас о том, что ваше трудоустройство с нашей компанией прекратилось.

\n

Более подробная информация о завершении:

\n

Дата уведомления: { notice_date }

\n

Дата завершения: { termination_date }

\n

Тип завершения: { termination_type }

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (188,12,'pt','Employee Termination','

Assunto:-Departamento de RH / Empresa para enviar carta de rescisão.

\n

Querido {employee_termination_name},

\n

Esta carta é escrita para notificá-lo de que seu emprego com a nossa empresa está finalizado.

\n

Mais detalhes sobre a finalização:

\n

Data de Aviso: {notice_date}

\n

Data de Finalização: {termination_date}

\n

Tipo de Rescisão: {termination_type}

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (189,12,'tr','Employee Termination','

Konu:-İK departmanı/Şirket fesih mektubu gönderecek.

\n

Sayın {employee_termination_name},

\n

Bu mektup, şirketimizle olan işinize son verildiğini size bildirmek için yazılmıştır.

\n

Sonlandırma hakkında daha fazla ayrıntı:

\n

Bildirim Tarihi :{notice_date}

\n

Bitiş tarihi:{termination_date}

\n

Sonlandırma Türü:{termination_type}

\n

 

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (190,12,'zh','Employee Termination','

主题:-人力资源部门/公司发送终止函.

\n

亲爱的 {employee_termination_name},

\n

这封信旨在通知您,您与我们公司的雇佣关系已终止.

\n

有关终止的更多详细信息:

\n

通知日期 :{notice_date}

\n

终止日期:{termination_date}

\n

端接类型:{termination_type}

\n

 

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (191,12,'he','Employee Termination','

נושא:-מחלקת משאבי אנוש/חברה לשלוח מכתב סיום.

\n

יָקָר {employee_termination_name},

\n

מכתב זה נכתב כדי להודיע ​​לך על סיום העסקתך בחברה שלנו.

\n

פרטים נוספים על סיום:

\n

תאריך הודעה :{notice_date}

\n

תאריך סיום:{termination_date}

\n

סוג סיום:{termination_type}

\n

 

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (192,12,'pt-br','Employee Termination','

Assunto:-Departamento de RH / Empresa para enviar carta de rescisão.

\n

Querido {employee_termination_name},

\n

Esta carta é escrita para notificá-lo de que seu emprego com a nossa empresa está finalizado.

\n

Mais detalhes sobre a finalização:

\n

Data de Aviso: {notice_date}

\n

Data de Finalização: {termination_date}

\n

Tipo de Rescisão: {termination_type}

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (193,13,'ar','Leave Status','

Subject : -HR ادارة / شركة لارسال رسالة الموافقة الى { leave_status } اجازة أو ترك.

\n

عزيزي { leave_status_name } ،

\n

لدي { leave_status } طلب الخروج الخاص بك الى { leave_reason } من { leave_start_date } الى { leave_end_date }.

\n

{ total_leave_days } أيام لدي { leave_status } طلب الخروج الخاص بك ل ـ { leave_reason }.

\n

ونحن نطلب منكم أن تكملوا كل أعمالكم المعلقة أو أي قضية مهمة أخرى حتى لا تواجه الشركة أي خسارة أو مشكلة أثناء غيابكم. نحن نقدر لك مصداقيتك لإبلاغنا بوقت كاف مقدما

\n

إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.

\n

شكرا لك

\n

Regards,

\n

إدارة الموارد البشرية ،

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (194,13,'da','Leave Status','

Emne:-HR-afdelingen / Kompagniet for at sende godkendelsesbrev til { leave_status } en ferie eller orlov.

\n

Kære { leave_status_name },

\n

Jeg har { leave_status } din orlov-anmodning for { leave_reason } fra { leave_start_date } til { leave_end_date }.

\n

{ total_leave_days } dage Jeg har { leave_status } din anmodning om { leave_reason } for { leave_reason }.

\n

Vi beder dig om at færdiggøre alt dit udestående arbejde eller andet vigtigt spørgsmål, så virksomheden ikke står over for nogen tab eller problemer under dit fravær. Vi sætter pris på din betænksomhed at informere os godt på forhånd

\n

Du er velkommen til at række ud, hvis du har nogen spørgsmål.

\n

Tak.

\n

Med venlig hilsen

\n

HR-afdelingen,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (195,13,'de','Leave Status','

Betreff: -Personalabteilung/Firma, um den Genehmigungsschreiben an {leave_status} einen Urlaub oder Urlaub zu schicken.

\n

Sehr geehrter {leave_status_name},

\n

Ich habe {leave_status} Ihre Urlaubsanforderung für {leave_reason} von {leave_start_date} bis {leave_end_date}.

\n

{total_leave_days} Tage Ich habe {leave_status} Ihre Urlaubs-Anfrage für {leave_reason}.

\n

Wir bitten Sie, Ihre gesamte anstehende Arbeit oder ein anderes wichtiges Thema abzuschließen, so dass das Unternehmen während Ihrer Abwesenheit keinen Verlust oder kein Problem zu Gesicht bekommen hat. Wir schätzen Ihre Nachdenklichkeit, um uns im Vorfeld gut zu informieren

\n

Fühlen Sie sich frei, wenn Sie Fragen haben.

\n

Danke.

\n

Betrachtet,

\n

Personalabteilung,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (196,13,'en','Leave Status','

Subject:-HR department/Company to send approval letter to {leave_status} a vacation or leave.

\n

Dear {leave_status_name},

\n

I have {leave_status} your leave request for {leave_reason} from {leave_start_date} to {leave_end_date}.

\n

{total_leave_days} days I have {leave_status}  your leave request for {leave_reason}.

\n

We request you to complete all your pending work or any other important issue so that the company does not face any loss or problem during your absence. We appreciate your thoughtfulness to inform us well in advance

\n

 

\n

Feel free to reach out if you have any questions.

\n

Thank you

\n

Regards,

\n

HR Department,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (197,13,'es','Leave Status','

Asunto: -Departamento de RR.HH./Empresa para enviar la carta de aprobación a {leave_status} unas vacaciones o permisos.

\n

Estimado {leave_status_name},

\n

Tengo {leave_status} la solicitud de licencia para {leave_reason} de {leave_start_date} a {leave_end_date}.

\n

{total_leave_days} días tengo {leave_status} la solicitud de licencia para {leave_reason}.

\n

Le solicitamos que complete todos sus trabajos pendientes o cualquier otro asunto importante para que la empresa no se enfrente a ninguna pérdida o problema durante su ausencia. Agradecemos su atención para informarnos con mucha antelación

\n

Siéntase libre de llegar si usted tiene alguna pregunta.

\n

¡Gracias!

\n

Considerando,

\n

Departamento de Recursos Humanos,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (198,13,'fr','Leave Status','

Objet: -HR department / Company to send approval letter to { leave_status } a vacances or leave.

\n

Cher { leave_status_name },

\n

Jai { leave_statut } votre demande de congé pour { leave_reason } de { leave_start_date } à { leave_date_fin }.

\n

{ total_leave_days } jours I have { leave_status } your leave request for { leave_reason }.

\n

Nous vous demandons de remplir tous vos travaux en cours ou toute autre question importante afin que lentreprise ne soit pas confrontée à une perte ou à un problème pendant votre absence. Nous apprécions votre attention pour nous informer longtemps à lavance

\n

Nhésitez pas à nous contacter si vous avez des questions.

\n

Je vous remercie

\n

Regards,

\n

Département des RH,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (199,13,'it','Leave Status','

Oggetto: - Dipartimento HR / Società per inviare lettera di approvazione a {leave_status} una vacanza o un congedo.

\n

Caro {leave_status_name},

\n

Ho {leave_status} la tua richiesta di permesso per {leave_reason} da {leave_start_date} a {leave_end_date}.

\n

{total_leave_days} giorni I ho {leave_status} la tua richiesta di permesso per {leave_reason}.

\n

Ti richiediamo di completare tutte le tue lavorazioni in sospeso o qualsiasi altra questione importante in modo che lazienda non faccia alcuna perdita o problema durante la tua assenza. Apprezziamo la vostra premura per informarci bene in anticipo

\n

Sentiti libero di raggiungere se hai domande.

\n

Grazie

\n

Riguardo,

\n

Dipartimento HR,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (200,13,'ja','Leave Status','

件名: 承認レターを { leave_status} に送信するには、 -HR 部門/会社が休暇または休暇を入力します。

\n

{leave_status_name} を終了します。

\n

{ leave_reason } の { leave_start_date} から {leave_end_date}までの { leave_status} の終了要求を { leave_status} しています。

\n

{total_leave_days} 日に { leave_reason}{ leave_status} に対するあなたの休暇要求があります。

\n

お客様は、お客様の不在中に損失や問題が発生しないように、保留中のすべての作業またはその他の重要な問題を完了するよう要求します。 私たちは、前もってお知らせすることに感謝しています。

\n

質問がある場合は、自由に連絡してください。

\n

ありがとう

\n

よろしく

\n

HR 部門

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (201,13,'nl','Leave Status','

Betreft: -HR-afdeling/Bedrijf voor het verzenden van een goedkeuringsbrief aan { leave_status } een vakantie of verlof.

\n

Geachte { leave_status_name },

\n

Ik heb { leave_status } uw verzoek om verlof voor { leave_reason } van { leave_start_date } tot { leave_end_date }.

\n

{ total_leave_days } dagen Ik heb { leave_status } uw verzoek om verlof voor { leave_reason }.

\n

Wij vragen u om al uw lopende werk of een andere belangrijke kwestie, zodat het bedrijf geen verlies of probleem tijdens uw afwezigheid geconfronteerd. We waarderen uw bedachtzaamheid om ons van tevoren goed te informeren.

\n

Voel je vrij om uit te reiken als je vragen hebt.

\n

Dank u wel

\n

Betreft:

\n

HR-afdeling,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (202,13,'pl','Leave Status','

Temat: -Dział kadr/Firma wysyłająca list zatwierdzający do {leave_status } wakacji lub urlopów.

\n

Drogi {leave_status_name },

\n

Mam {leave_status } żądanie pozostania dla {leave_reason } od {leave_start_date } do {leave_end_date }.

\n

{total_leave_days } dni Mam {leave_status } Twoje żądanie opuszczenia dla {leave_reason }.

\n

Prosimy o wypełnienie wszystkich oczekujących prac lub innych ważnych kwestii, tak aby firma nie borykała się z żadną stratą lub problemem w czasie Twojej nieobecności. Doceniamy Twoją przemyślność, aby poinformować nas dobrze z wyprzedzeniem

\n

Czuj się swobodnie, jeśli masz jakieś pytania.

\n

Dziękujemy

\n

W odniesieniu do

\n

Dział HR,

\n

{app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (203,13,'ru','Leave Status','

Тема: -HR отдел/Компания отправить письмо с утверждением на { leave_status } отпуск или отпуск.

\n

Уважаемый { leave_status_name },

\n

У меня { leave_status } ваш запрос на отпуск для { leave_reason } из { leave_start_date } в { leave_end_date }.

\n

{ total_leave_days } дней { leave_status } ваш запрос на отпуск для { leave_reason }.

\n

Мы просим вас завершить все ваши ожидающие работы или любой другой важный вопрос, чтобы компания не сталкивалась с потерей или проблемой во время вашего отсутствия. Мы ценим вашу задумчивость, чтобы заблаговременно информировать нас о

\n

Не стеснитесь, если у вас есть вопросы.

\n

Спасибо.

\n

С уважением,

\n

Отдел кадров,

\n

{ app_name }

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (204,13,'pt','Leave Status','

Assunto:-Departamento de RH / Empresa para enviar carta de aprovação para {leave_status} férias ou licença.

\n

Querido {leave_status_name},

\n

Eu tenho {leave_status} sua solicitação de licença para {leave_reason} de {leave_start_date} para {leave_end_date}.

\n

{total_leave_days} dias eu tenho {leave_status} o seu pedido de licença para {leave_reason}.

\n

Solicitamos que você complete todo o seu trabalho pendente ou qualquer outra questão importante para que a empresa não enfrente qualquer perda ou problema durante a sua ausência. Agradecemos a sua atenciosidade para nos informar com bastante antecedência

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (205,13,'tr','Leave Status','

Konu:-Onay yazısının gönderileceği İK departmanı/Şirket {leave_status} tatil ya da izin.

\n

Sayın {leave_status_name},

\n

Sahibim {leave_status} için izin talebiniz {leave_reason} itibaren {leave_start_date} ile {leave_end_date}.

\n

{total_leave_days} sahip olduğum günler {leave_status}  için izin talebiniz {leave_reason}.

\n

Şirketin yokluğunuz sırasında herhangi bir kayıp veya sorunla karşılaşmaması için bekleyen tüm işlerinizi veya diğer önemli hususlarınızı tamamlamanızı rica ederiz. Bizi önceden bilgilendirme konusundaki düşünceniz için teşekkür ederiz

\n

 

\n

Herhangi bir sorunuz varsa ulaşmaktan çekinmeyin.

\n

Teşekkür ederim

\n

Saygılarımızla,

\n

İK Departmanı,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (206,13,'zh','Leave Status','

主题:-人力资源部门/公司发送批准函 {leave_status} 休假或请假.

\n

亲爱的 {leave_status_name},

\n

我有 {leave_status} 您的请假申请 {leave_reason} 从 {leave_start_date} 到 {leave_end_date}.

\n

{total_leave_days} 我有的日子 {leave_status}  您的请假申请 {leave_reason}.

\n

我们要求您完成所有未完成的工作或任何其他重要问题,以便公司在您缺席期间不会面临任何损失或问题。感谢您的周到提前通知我们

\n

 

\n

如果您有任何疑问,请随时与我们联系.

\n

谢谢

\n

问候,

\n

人事部,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (207,13,'he','Leave Status','

Subject:-מחלקת משאבי אנוש/חברה לשלוח אליה מכתב אישור {leave_status} חופשה או חופשה.

\n

יָקָר {leave_status_name},

\n

יש לי {leave_status} בקשת החופשה שלך עבור {leave_reason} מ {leave_start_date} ל {leave_end_date}.

\n

{total_leave_days} ימים שיש לי {leave_status}  בקשת החופשה שלך עבור {leave_reason}.

\n

אנו מבקשים מכם להשלים את כל העבודה הממתינה או כל נושא חשוב אחר על מנת שהחברה לא תעמוד בפני כל אובדן או בעיה במהלך היעדרותכם. אנו מעריכים את התחשבותך להודיע ​​לנו זמן רב מראש

\n

 

\n

אל תהסס לפנות אם יש לך שאלות.

\n

תודה

\n

בברכה,

\n

מחלקת משאבי אנוש,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (208,13,'pt-br','Leave Status','

Assunto:-Departamento de RH / Empresa para enviar carta de aprovação para {leave_status} férias ou licença.

\n

Querido {leave_status_name},

\n

Eu tenho {leave_status} sua solicitação de licença para {leave_reason} de {leave_start_date} para {leave_end_date}.

\n

{total_leave_days} dias eu tenho {leave_status} o seu pedido de licença para {leave_reason}.

\n

Solicitamos que você complete todo o seu trabalho pendente ou qualquer outra questão importante para que a empresa não enfrente qualquer perda ou problema durante a sua ausência. Agradecemos a sua atenciosidade para nos informar com bastante antecedência

\n

Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.

\n

Obrigado

\n

Considera,

\n

Departamento de RH,

\n

{app_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (209,14,'ar','Contract','

مرحبا { contract_employee }

\n

العقد : { contract_subject }

\n

Sتاريخ البدء: { contract_start_date }

\n

تاريخ الانتهاء: { contract_end_date }

\n

اتطلع للسمع منك.

\n

Regards Regards ،

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (210,14,'da','Contract','

Hej { contract_employee }

\n

Aftaleemne: { contract_subject }

\n

Start-dato: { contract_start_date }

\n

Slutdato: { contract_end_date }

\n

Ser frem til at høre fra dig.

\n

Kærlig hilsen

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (211,14,'de','Contract','

{contract_employee}

\n

Vertragssubjekt: {contract_subject}

\n

tart-Datum: {contract_start_date}

\n

Sluttdato :{contract_end_date}

\n

Freuen Sie sich auf die von Ihnen zu hörenden Informationen.

\n

-Regards,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (212,14,'en','Contract','

Hi {contract_employee}

\n

Contract Subject: {contract_subject}

\n

Start Date: {contract_start_date}

\n

End Date: {contract_end_date}

\n

Looking forward to hear from you.

\n

Kind Regards,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (213,14,'es','Contract','

Hi {contract_employee}

\n

de contrato: {contract_subject}

\n

Start Date: {contract_start_date}

\n

Fecha de finalización: {contract_end_date}

\n

Con ganas de escuchar de usted.

\n

Regards de tipo,

\n

{contract_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (214,14,'fr','Contract','

{ contract_employee }

\n

Objet du contrat: { contract_subject }

\n

SDate de début: { contract_start_date }

\n

Date de fin: { contract_end_date }

\n

Vous avez hâte de vous entendre.

\n

Kind Regards

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (215,14,'it','Contract','

Ciao {contract_employee}

\n

Oggetto Contratto: {contract_subject}

\n

SData tarte: {contract_start_date}

\n

Data di fine: {contract_end_date}

\n

Non vedo lora di sentire da te.

\n

Kind indipendentemente,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (216,14,'ja','Contract','

ハイ {contract_employee}

\n

契約件名: {契約対象}

\n

Start Date: {contract_start_date}

\n

終了日: {contract_end_date}

\n

お客様から連絡をお待ちしています。

\n

クインド・レード

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (217,14,'nl','Contract','

Hi { contract_employee }

\n

Contractonderwerp: { contract_subject }

\n

Start Date: { contract_start_date }

\n

Einddatum: { contract_end_date }

\n

Ik kijk ernaar uit om van u te horen.

\n

Soort Regards,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (218,14,'pl','Contract','

Hi {contract_employee}

\n

Temat umowy: {contract_subject}

\n

Sdata tartu: {contract_start_date}

\n

Data zakończenia: {contract_end_date}

\n

Nie można się doczekać, aby usłyszeć od użytkownika.

\n

Regaty typu,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (219,14,'ru','Contract','

Привет { contract_employee }

\n

Тема договора: { contract_subject }

\n

Sдата запуска: { contract_start_date }

\n

Дата окончания: { contract_end_date }

\n

С нетерпением ожидаю услышать от вас.

\n

Карты вида,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (220,14,'pt','Contract','

Oi {contract_employee}

\n

Assunto do Contrato: {contract_subject}

\n

Start Date: {contract_start_date}

\n

Data de término: {contract_end_date}

\n

Olhando para a frente para ouvir de você.

\n

Kind Considerar,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (221,14,'tr','Contract','

MERHABA {contract_employee}

\n

Sözleşme Konusu: {contract_subject}

\n

SBaşlangıç ​​tarihi: {contract_start_date}

\n

Bitiş tarihi: {contract_end_date}

\n

senden haber bekliyorum.

\n

Saygılarımla,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (222,14,'zh','Contract','

你好 {contract_employee}

\n

合同主体: {contract_subject}

\n

开始日期: {contract_start_date}

\n

结束日期: {contract_end_date}

\n

期待着听到您的意见.

\n

亲切的问候,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (223,14,'he','Contract','

היי {contract_employee}

\n

נושא החוזה: {contract_subject}

\n

תאריך התחלה: {contract_start_date}

\n

תאריך סיום: {contract_end_date}

\n

מצפה לשמוע ממך.

\n

בברכה,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'), (224,14,'pt-br','Contract','

Oi {contract_employee}

\n

Assunto do Contrato: {contract_subject}

\n

Start Date: {contract_start_date}

\n

Data de término: {contract_end_date}

\n

Olhando para a frente para ouvir de você.

\n

Kind Considerar,

\n

{company_name}

','2024-05-29 04:33:17','2024-05-29 04:33:17'); /*!40000 ALTER TABLE `email_template_langs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_templates` -- DROP TABLE IF EXISTS `email_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `email_templates` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `from` varchar(191) DEFAULT NULL, `slug` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_templates` -- LOCK TABLES `email_templates` WRITE; /*!40000 ALTER TABLE `email_templates` DISABLE KEYS */; INSERT INTO `email_templates` VALUES (1,'New User',NULL,'new_user',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'New Employee',NULL,'new_employee',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'New Payroll',NULL,'new_payroll',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'New Ticket',NULL,'new_ticket',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'New Award',NULL,'new_award',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,'Employee Transfer',NULL,'employee_transfer',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,'Employee Resignation',NULL,'employee_resignation',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,'Employee Trip',NULL,'employee_trip',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,'Employee Promotion',NULL,'employee_promotion',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,'Employee Complaints',NULL,'employee_complaints',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,'Employee Warning',NULL,'employee_warning',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,'Employee Termination',NULL,'employee_termination',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,'Leave Status',NULL,'leave_status',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,'Contract',NULL,'contract',1,'2024-05-29 04:33:16','2024-05-29 04:33:16'); /*!40000 ALTER TABLE `email_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employee_documents` -- DROP TABLE IF EXISTS `employee_documents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employee_documents` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `document_id` int(11) NOT NULL, `document_value` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employee_documents` -- LOCK TABLES `employee_documents` WRITE; /*!40000 ALTER TABLE `employee_documents` DISABLE KEYS */; /*!40000 ALTER TABLE `employee_documents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employees` -- DROP TABLE IF EXISTS `employees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `name` varchar(191) NOT NULL, `dob` date DEFAULT NULL, `gender` varchar(191) NOT NULL, `phone` varchar(191) DEFAULT NULL, `address` varchar(191) NOT NULL, `email` varchar(191) NOT NULL, `password` varchar(191) NOT NULL, `employee_id` varchar(191) NOT NULL, `biometric_emp_id` int(11) DEFAULT NULL, `branch_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `designation_id` int(11) NOT NULL, `company_doj` varchar(191) DEFAULT NULL, `documents` varchar(191) DEFAULT NULL, `account_holder_name` varchar(191) DEFAULT NULL, `account_number` varchar(191) DEFAULT NULL, `bank_name` varchar(191) DEFAULT NULL, `bank_identifier_code` varchar(191) DEFAULT NULL, `branch_location` varchar(191) DEFAULT NULL, `tax_payer_id` varchar(191) DEFAULT NULL, `salary_type` int(11) DEFAULT NULL, `account_type` int(11) DEFAULT NULL, `salary` double(20,2) NOT NULL DEFAULT 0.00, `is_active` int(11) NOT NULL DEFAULT 1, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employees` -- LOCK TABLES `employees` WRITE; /*!40000 ALTER TABLE `employees` DISABLE KEYS */; /*!40000 ALTER TABLE `employees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_employees` -- DROP TABLE IF EXISTS `event_employees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `event_employees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `event_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_employees` -- LOCK TABLES `event_employees` WRITE; /*!40000 ALTER TABLE `event_employees` DISABLE KEYS */; /*!40000 ALTER TABLE `event_employees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `events` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch_id` int(11) NOT NULL, `department_id` longtext NOT NULL, `employee_id` longtext NOT NULL, `title` varchar(191) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `color` varchar(191) NOT NULL, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expense_types` -- DROP TABLE IF EXISTS `expense_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `expense_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expense_types` -- LOCK TABLES `expense_types` WRITE; /*!40000 ALTER TABLE `expense_types` DISABLE KEYS */; /*!40000 ALTER TABLE `expense_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expenses` -- DROP TABLE IF EXISTS `expenses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `expenses` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `account_id` int(11) NOT NULL, `amount` double(15,2) NOT NULL, `date` date NOT NULL, `expense_category_id` int(11) NOT NULL, `payee_id` int(11) NOT NULL, `payment_type_id` int(11) NOT NULL, `referal_id` varchar(191) DEFAULT NULL, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expenses` -- LOCK TABLES `expenses` WRITE; /*!40000 ALTER TABLE `expenses` DISABLE KEYS */; /*!40000 ALTER TABLE `expenses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `experience_certificates` -- DROP TABLE IF EXISTS `experience_certificates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `experience_certificates` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(255) NOT NULL, `content` longtext NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `experience_certificates` -- LOCK TABLES `experience_certificates` WRITE; /*!40000 ALTER TABLE `experience_certificates` DISABLE KEYS */; INSERT INTO `experience_certificates` VALUES (1,'ar','

بريد إلكتروني تجربة

\n \n

{app_name}

\n \n

إلي من يهمه الامر

\n \n

{date}

\n \n

{employee_name}

\n \n

مدة الخدمة {duration} في {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

الادوار والمسؤوليات

\n \n \n \n

وصف موجز لمسار عمل الموظف وبيان إيجابي من المدير أو المشرف.

\n \n \n \n

بإخلاص،

\n \n

{employee_name}

\n \n

{designation}

\n \n

التوقيع

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'da','

Erfaringsbrev

\n \n

{app_name}

\n \n

TIL HVEM DET MÅTTE VEDRØRE

\n \n

{date}

\n \n

{employee_name}

\n \n

Tjenesteperiode {duration} i {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Roller og ansvar

\n \n \n \n

Kort beskrivelse af medarbejderens ansættelsesforløb og positiv udtalelse fra leder eller arbejdsleder.

\n \n \n \n

Med venlig hilsen

\n \n

{employee_name}

\n \n

{designation}

\n \n

Underskrift

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'de','

Erfahrungsbrief

\n \n \n \n

{app_name}

\n \n

WEN ES ANGEHT

\n \n

{date}

\n \n

{employee_name}

\n \n

Dienstzeit {duration} in {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Rollen und Verantwortlichkeiten

\n \n \n \n

Kurze Beschreibung des beruflichen Werdegangs des Mitarbeiters und eine positive Stellungnahme des Vorgesetzten oder Vorgesetzten.

\n \n \n \n

Aufrichtig,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Unterschrift

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'en','

Experience Letter

\n

 

\n

{app_name}

\n

TO WHOM IT MAY CONCERN

\n

{date}

\n

{employee_name}

\n

Tenure of Service {duration} in {app_name}.

\n

{designation}

\n

{payroll}

\n

Roles and Responsibilities

\n

 

\n

Brief description of the employee’s course of employment and a positive statement from the manager or supervisor.

\n

 

\n

Sincerely,

\n

{employee_name}

\n

{designation}

\n

Signature

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'es','

Carta de experiencia

\n \n \n

{app_name}

\n \n

A QUIEN LE INTERESE

\n \n

{date}

\n \n

{employee_name}

\n \n

Duración del servicio {duration} en {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Funciones y responsabilidades

\n \n \n \n

Breve descripción del curso de empleo del empleado y una declaración positiva del gerente o supervisor.

\n \n \n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,'fr','

Lettre dexpérience

\n \n \n \n

{app_name}

\n \n

À QUI DE DROIT

\n \n

{date}

\n \n

{employee_name}

\n \n

Durée du service {duration} dans {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Rôles et responsabilités

\n \n \n \n

Brève description de lévolution de lemploi de lemployé et une déclaration positive du gestionnaire ou du superviseur.

\n \n \n \n

Sincèrement,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Signature

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,'id','

Surat Pengalaman

\n \n \n \n

{app_name}

\n \n

UNTUK PERHATIAN

\n \n

{date}

\n \n

{employee_name}

\n \n

Jangka Waktu Layanan {duration} di {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Peran dan Tanggung Jawab

\n \n \n \n

Deskripsi singkat tentang pekerjaan karyawan dan pernyataan positif dari manajer atau supervisor.

\n \n \n \n

Sungguh-sungguh,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Tanda tangan

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,'it','

Lettera di esperienza

\n \n \n \n

{app_name}

\n \n

PER CHI È COINVOLTO

\n \n

{date}

\n \n

{employee_name}

\n \n

Durata del servizio {duration} in {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Ruoli e responsabilità

\n \n \n \n

Breve descrizione del percorso lavorativo del dipendente e dichiarazione positiva del manager o supervisore.

\n \n \n \n

Cordiali saluti,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,'ja','\n

体験談

\n \n \n \n

{app_name}

\n \n

ご担当者様

\n \n

{date}

\n \n

{employee_name}

\n \n

{app_name} のサービス {duration} の保有期間。

\n \n

{designation}

\n \n

{payroll}

\n \n

役割と責任

\n \n \n \n

従業員の雇用コースの簡単な説明と、マネージャーまたはスーパーバイザーからの肯定的な声明。

\n \n \n \n

心から、

\n \n

{employee_name}

\n \n

{designation}

\n \n

サイン

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,'nl','

Ervaringsbrief

\n \n \n

{app_name}

\n \n

VOOR WIE HET AANGAAT

\n \n

{date}

\n \n

{employee_name}

\n \n

Diensttijd {duration} in {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Rollen en verantwoordelijkheden

\n \n \n \n

Korte omschrijving van het dienstverband van de medewerker en een positieve verklaring van de leidinggevende of leidinggevende.

\n \n \n \n

Eerlijk,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Handtekening

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,'pl','

Doświadczenie List

\n \n \n \n

{app_name}

\n \n

DO TYCH KTÓRYCH MOŻE TO DOTYCZYĆ

\n \n

{date}

\n \n

{employee_name}

\n \n

Okres świadczenia usług {duration} w aplikacji {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Role i obowiązki

\n \n \n \n

Krótki opis przebiegu zatrudnienia pracownika oraz pozytywna opinia kierownika lub przełożonego.

\n \n \n \n

Z poważaniem,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Podpis

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,'pt','

Carta de Experiência

\n \n \n \n

{app_name}

\n \n

A QUEM POSSA INTERESSAR

\n \n

{date}

\n \n

{employee_name}

\n \n

Tempo de serviço {duration} em {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Papéis e responsabilidades

\n \n \n \n

Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.

\n \n \n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,'ru','

Письмо об опыте

\n \n

{app_name}

\n \n

ДЛЯ ПРЕДЪЯВЛЕНИЯ ПО МЕСТУ ТРЕБОВАНИЯ

\n \n

{date}

\n \n

{employee_name}

\n \n

Срок службы {duration} в {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Роли и обязанности

\n \n

Краткое описание трудового стажа работника и положительное заключение руководителя или руководителя.

\n \n

Искренне,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Подпись

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,'tr','

Tecrübe mektubu

\n \n

{app_name}

\n \n

İLGİLİ MAKAMA

\n \n

{date}

\n \n

{employee_name}

\n \n

Hizmet süresi {duration} içinde {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Görev ve Sorumluluklar

\n \n

Çalışanların istihdam sürecinin kısa açıklaması ve yönetici veya amirden olumlu bir açıklama.

\n \n

Samimi olarak,

\n \n

{employee_name}

\n \n

{designation}

\n \n

İmza

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (15,'zh','

经验信

\n \n

{app_name}

\n \n

敬启者

\n \n

{date}

\n \n

{employee_name}

\n \n

服务期限 {duration} 在 {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

角色和责任

\n \n

员工就业历程的简要描述以及经理或主管的积极声明.

\n \n

真挚地,

\n \n

{employee_name}

\n \n

{designation}

\n \n

签名

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (16,'he','

מכתב ניסיון

\n \n

{app_name}

\n \n

לכל מאן דבעי

\n \n

{date}

\n \n

{employee_name}

\n \n

כהונת שירות {duration} ב {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

תפקידים ואחריות

\n \n

תיאור קצר של מהלך העסקת העובדים והצהרה חיובית מהמנהל או הממונה.

\n \n

בכנות,

\n \n

{employee_name}

\n \n

{designation}

\n \n

חֲתִימָה

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (17,'pt-br','

Carta de Experiência

\n \n

{app_name}

\n \n

A QUEM POSSA INTERESSAR

\n \n

{date}

\n \n

{employee_name}

\n \n

Tempo de serviço {duration} em {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Papéis e responsabilidades

\n \n

Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.

\n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (18,'ar','

بريد إلكتروني تجربة

\n \n \n \n

{app_name}

\n \n

إلي من يهمه الامر

\n \n

{date}

\n \n

{employee_name}

\n \n

مدة الخدمة {duration} في {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

الادوار والمسؤوليات

\n \n \n \n

وصف موجز لمسار عمل الموظف وبيان إيجابي من المدير أو المشرف.

\n \n \n \n

بإخلاص،

\n \n

{employee_name}

\n \n

{designation}

\n \n

التوقيع

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (19,'da','

Erfaringsbrev

\n \n

{app_name}

\n \n

TIL HVEM DET MÅTTE VEDRØRE

\n \n

{date}

\n \n

{employee_name}

\n \n

Tjenesteperiode {duration} i {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Roller og ansvar

\n \n \n \n

Kort beskrivelse af medarbejderens ansættelsesforløb og positiv udtalelse fra leder eller arbejdsleder.

\n \n \n \n

Med venlig hilsen

\n \n

{employee_name}

\n \n

{designation}

\n \n

Underskrift

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (20,'de','

Erfahrungsbrief

\n \n \n \n

{app_name}

\n \n

WEN ES ANGEHT

\n \n

{date}

\n \n

{employee_name}

\n \n

Dienstzeit {duration} in {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Rollen und Verantwortlichkeiten

\n \n \n \n

Kurze Beschreibung des beruflichen Werdegangs des Mitarbeiters und eine positive Stellungnahme des Vorgesetzten oder Vorgesetzten.

\n \n \n \n

Aufrichtig,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Unterschrift

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (21,'en','

Experience Letter

\n

 

\n

{app_name}

\n

TO WHOM IT MAY CONCERN

\n

{date}

\n

{employee_name}

\n

Tenure of Service {duration} in {app_name}.

\n

{designation}

\n

{payroll}

\n

Roles and Responsibilities

\n

 

\n

Brief description of the employee’s course of employment and a positive statement from the manager or supervisor.

\n

 

\n

Sincerely,

\n

{employee_name}

\n

{designation}

\n

Signature

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (22,'es','

Carta de experiencia

\n \n \n

{app_name}

\n \n

A QUIEN LE INTERESE

\n \n

{date}

\n \n

{employee_name}

\n \n

Duración del servicio {duration} en {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Funciones y responsabilidades

\n \n \n \n

Breve descripción del curso de empleo del empleado y una declaración positiva del gerente o supervisor.

\n \n \n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (23,'fr','

Lettre dexpérience

\n \n \n \n

{app_name}

\n \n

À QUI DE DROIT

\n \n

{date}

\n \n

{employee_name}

\n \n

Durée du service {duration} dans {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Rôles et responsabilités

\n \n \n \n

Brève description de lévolution de lemploi de lemployé et une déclaration positive du gestionnaire ou du superviseur.

\n \n \n \n

Sincèrement,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Signature

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (24,'id','

Surat Pengalaman

\n \n \n \n

{app_name}

\n \n

UNTUK PERHATIAN

\n \n

{date}

\n \n

{employee_name}

\n \n

Jangka Waktu Layanan {duration} di {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Peran dan Tanggung Jawab

\n \n \n \n

Deskripsi singkat tentang pekerjaan karyawan dan pernyataan positif dari manajer atau supervisor.

\n \n \n \n

Sungguh-sungguh,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Tanda tangan

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (25,'it','

Lettera di esperienza

\n \n \n \n

{app_name}

\n \n

PER CHI È COINVOLTO

\n \n

{date}

\n \n

{employee_name}

\n \n

Durata del servizio {duration} in {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Ruoli e responsabilità

\n \n \n \n

Breve descrizione del percorso lavorativo del dipendente e dichiarazione positiva del manager o supervisore.

\n \n \n \n

Cordiali saluti,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (26,'ja','\n

体験談

\n \n \n \n

{app_name}

\n \n

ご担当者様

\n \n

{date}

\n \n

{employee_name}

\n \n

{app_name} のサービス {duration} の保有期間。

\n \n

{designation}

\n \n

{payroll}

\n \n

役割と責任

\n \n \n \n

従業員の雇用コースの簡単な説明と、マネージャーまたはスーパーバイザーからの肯定的な声明。

\n \n \n \n

心から、

\n \n

{employee_name}

\n \n

{designation}

\n \n

サイン

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (27,'nl','

Ervaringsbrief

\n \n \n

{app_name}

\n \n

VOOR WIE HET AANGAAT

\n \n

{date}

\n \n

{employee_name}

\n \n

Diensttijd {duration} in {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Rollen en verantwoordelijkheden

\n \n \n \n

Korte omschrijving van het dienstverband van de medewerker en een positieve verklaring van de leidinggevende of leidinggevende.

\n \n \n \n

Eerlijk,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Handtekening

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (28,'pl','

Doświadczenie List

\n \n \n \n

{app_name}

\n \n

DO TYCH KTÓRYCH MOŻE TO DOTYCZYĆ

\n \n

{date}

\n \n

{employee_name}

\n \n

Okres świadczenia usług {duration} w aplikacji {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Role i obowiązki

\n \n \n \n

Krótki opis przebiegu zatrudnienia pracownika oraz pozytywna opinia kierownika lub przełożonego.

\n \n \n \n

Z poważaniem,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Podpis

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (29,'pt','

Carta de Experiência

\n \n

{app_name}

\n \n

A QUEM POSSA INTERESSAR

\n \n

{date}

\n \n

{employee_name}

\n \n

Tempo de serviço {duration} em {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Papéis e responsabilidades

\n \n

Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.

\n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (30,'ru','

Письмо об опыте

\n \n \n \n

{app_name}

\n \n

ДЛЯ ПРЕДЪЯВЛЕНИЯ ПО МЕСТУ ТРЕБОВАНИЯ

\n \n

{date}

\n \n

{employee_name}

\n \n

Срок службы {duration} в {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Роли и обязанности

\n \n \n \n

Краткое описание трудового стажа работника и положительное заключение руководителя или руководителя.

\n \n \n \n

Искренне,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Подпись

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (31,'tr','

Tecrübe mektubu

\n \n

{app_name}

\n \n

İLGİLİ MAKAMA

\n \n

{date}

\n \n

{employee_name}

\n \n

Hizmet süresi {duration} içinde {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Görev ve Sorumluluklar

\n \n

Çalışanların istihdam sürecinin kısa açıklaması ve yönetici veya amirden olumlu bir açıklama.

\n \n

Samimi olarak,

\n \n

{employee_name}

\n \n

{designation}

\n \n

İmza

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (32,'zh','

经验信

\n \n

{app_name}

\n \n

敬启者

\n \n

{date}

\n \n

{employee_name}

\n \n

服务期限 {duration} 在 {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

角色和责任

\n \n

员工就业历程的简要描述以及经理或主管的积极声明.

\n \n

真挚地,

\n \n

{employee_name}

\n \n

{designation}

\n \n

签名

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (33,'he','

מכתב ניסיון

\n \n

{app_name}

\n \n

לכל מאן דבעי

\n \n

{date}

\n \n

{employee_name}

\n \n

כהונת שירות {duration} ב {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

תפקידים ואחריות

\n \n

תיאור קצר של מהלך העסקת העובדים והצהרה חיובית מהמנהל או הממונה.

\n \n

בכנות,

\n \n

{employee_name}

\n \n

{designation}

\n \n

חֲתִימָה

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (34,'pt-br','

Carta de Experiência

\n \n

{app_name}

\n \n

A QUEM POSSA INTERESSAR

\n \n

{date}

\n \n

{employee_name}

\n \n

Tempo de serviço {duration} em {app_name}.

\n \n

{designation}

\n \n

{payroll}

\n \n

Papéis e responsabilidades

\n \n

Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.

\n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'); /*!40000 ALTER TABLE `experience_certificates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `failed_jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `generate_offer_letters` -- DROP TABLE IF EXISTS `generate_offer_letters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `generate_offer_letters` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(100) NOT NULL, `content` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `generate_offer_letters` -- LOCK TABLES `generate_offer_letters` WRITE; /*!40000 ALTER TABLE `generate_offer_letters` DISABLE KEYS */; INSERT INTO `generate_offer_letters` VALUES (1,'ar','

رسالة عرض

\n \n

عزيزي {applicationant_name} ،

\n \n

{app_name} متحمس لاصطحابك على متن الطائرة بصفتك {job_title}.

\n \n

كنت على بعد خطوات قليلة من الشروع في العمل. يرجى أخذ الوقت الكافي لمراجعة عرضنا الرسمي. يتضمن تفاصيل مهمة حول راتبك ومزاياك وبنود وشروط عملك المتوقع مع {app_name}.

\n \n \n

{app_name} يقدم {job_type}. المنصب بالنسبة لك كـ {job_title} ، تقديم التقارير إلى [المدير المباشر / المشرف] بدءًا من {start_date} في {workplace_location}. ساعات العمل المتوقعة هي {days_of_week}.

\n \n \n

في هذا المنصب ، يعرض عليك {app_name}  {salary}أن تبدأ لك بمعدل دفع {salary_type} لكل {salary_duration}. سوف يتم الدفع لك على أساس.

\n \n \n

كجزء من تعويضك ، إذا كان ذلك ممكنًا ، ستصف مكافأتك ومشاركة الأرباح وهيكل العمولة وخيارات الأسهم وقواعد لجنة التعويضات هنا.

\n \n \n

بصفتك موظفًا في {app_name} ، ستكون مؤهلاً للحصول على مزايا الاسم المختصر ، مثل التأمين الصحي ، وخطة الأسهم ، والتأمين على الأسنان ، وما إلى ذلك.

\n \n \n

الرجاء توضيح موافقتك على هذه البنود وقبول هذا العرض عن طريق التوقيع على هذه الاتفاقية وتأريخها في أو قبل {offer_expiration_date}.

\n \n

بإخلاص،

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'da','

Tilbudsbrev

\n \n

Kære {applicant_name}

\n \n

{app_name} er glade for at få dig med som {job_title}.

\n \n

Der var kun et par formaliteter fra at komme på arbejde. Tag dig tid til at gennemgå vores formelle tilbud. Den indeholder vigtige oplysninger om din kompensation, fordele og vilkårene og betingelserne for din forventede ansættelse hos {app_name}.

\n \n

{app_name} tilbyder en {job_type}. stilling til dig som {job_title}, der rapporterer til [nærmeste leder/supervisor] fra og med {start_date} på{workplace_location}. Forventet arbejdstid er {days_of_week}.

\n \n \n

I denne stilling tilbyder {app_name} at starte dig med en lønsats på {salary} pr. {salary_type}. Du vil blive betalt på {salary_duration}-basis.

\n \n

Som en del af din kompensation, du også tilbyder, hvis det er relevant, vil du beskrive din bonus, overskudsdeling, kommissionsstruktur, aktieoptioner og regler for kompensationsudvalget her.

\n \n \n

Som ansat hos {app_name} vil du være berettiget til kort navnefordele, såsom sundhedsforsikring, aktieplan, tandforsikring osv.

\n \n

Angiv venligst din accept af disse vilkår og accepter dette tilbud ved at underskrive og datere denne aftale på eller før {offer_expiration_date}.

\n \n

Med venlig hilsen

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'de','

Angebotsschreiben

\n \n

Sehr geehrter {applicant_name},

\n \n

{app_name} freut sich, Sie als {job_title} an Bord zu holen.

\n \n \n

Nur noch wenige Formalitäten bis zur Arbeit. Bitte nehmen Sie sich die Zeit, unser formelles Angebot zu prüfen. Es enthält wichtige Details zu Ihrer Vergütung, Ihren Leistungen und den Bedingungen Ihrer voraussichtlichen Anstellung bei {app_name}.

\n \n \n

{app_name} bietet einen {job_type} an. Position für Sie als {job_title}, ab {start_date} am {workplace_location} unterstellt an unmittelbarer Manager/Vorgesetzter. Erwartete Arbeitszeiten sind {days_of_week}.

\n \n \n

In dieser Position bietet {app_name} Ihnen an, mit einem Gehaltssatz von {salary} pro {salary_type} zu beginnen. Sie werden auf Basis von {salary_duration} bezahlt.

\n \n \n

Als Teil Ihrer Vergütung, die Sie gegebenenfalls auch anbieten, beschreiben Sie hier Ihren Bonus, Ihre Gewinnbeteiligung, Ihre Provisionsstruktur, Ihre Aktienoptionen und die Regeln des Vergütungsausschusses.

\n \n \n

Als Mitarbeiter von {app_name} haben Sie Anspruch auf Kurznamenvorteile wie Krankenversicherung, Aktienplan, Zahnversicherung usw.

\n \n

Bitte erklären Sie Ihr Einverständnis mit diesen Bedingungen und nehmen Sie dieses Angebot an, indem Sie diese Vereinbarung am oder vor dem {offer_expiration_date} unterzeichnen und datieren.

\n \n

Aufrichtig,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'en','

Offer Letter

\n \n

Dear {applicant_name},

\n \n

{app_name} is excited to bring you on board as {job_title}.

\n \n

Were just a few formalities away from getting down to work. Please take the time to review our formal offer. It includes important details about your compensation, benefits, and the terms and conditions of your anticipated employment with {app_name}.

\n \n

{app_name} is offering a {job_type}. position for you as {job_title}, reporting to [immediate manager/supervisor] starting on {start_date} at{workplace_location}. Expected hours of work are{days_of_week}.

\n \n

In this position, {app_name} is offering to start you at a pay rate of {salary} per {salary_type}. You will be paid on a{salary_duration} basis. 

\n \n

As part of your compensation, were also offering [if applicable, youll describe your bonus, profit sharing, commission structure, stock options, and compensation committee rules here].

\n \n

As an employee of {app_name} , you will be eligible for briefly name benefits, such as health insurance, stock plan, dental insurance, etc.

\n \n

Please indicate your agreement with these terms and accept this offer by signing and dating this agreement on or before {offer_expiration_date}.

\n \n

Sincerely,

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'es','

Carta de oferta

\n \n \n

Estimado {applicant_name},

\n \n

{app_name} se complace en incorporarlo como {job_title}.

\n \n \n

Faltaban sólo unos trámites para ponerse manos a la obra. Tómese el tiempo para revisar nuestra oferta formal. Incluye detalles importantes sobre su compensación, beneficios y los términos y condiciones de su empleo anticipado con {app_name}.

\n \n \n

{app_name} está ofreciendo {job_type}. posición para usted como {job_title}, reportando al gerente/supervisor inmediato a partir del {start_date} en {workplace_location}. Las horas de trabajo esperadas son {days_of_week}.

\n \n \n

En este puesto, {app_name} te ofrece comenzar con una tarifa de pago de {salary} por {salary_type}. Se le pagará sobre la base de {salary_duration}.

\n \n \n

Como parte de su compensación, también ofrecemos, si corresponde, aquí describirá su bonificación, participación en las ganancias, estructura de comisiones, opciones sobre acciones y reglas del comité de compensación.

\n \n \n

Como empleado de {app_name}, será elegible para beneficios de nombre breve, como seguro médico, plan de acciones, seguro dental, etc.

\n \n \n

Indique su acuerdo con estos términos y acepte esta oferta firmando y fechando este acuerdo el {offer_expiration_date} o antes.

\n \n \n

Sinceramente,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,'fr','

Lettre doffre

\n \n \n

Cher {applicant_name},

\n \n \n

{app_name} est ravi de vous accueillir en tant que {job_title}.

\n \n \n

Étaient juste quelques formalités loin de se mettre au travail. Veuillez prendre le temps dexaminer notre offre formelle. Il comprend des détails importants sur votre rémunération, vos avantages et les termes et conditions de votre emploi prévu avec {app_name}.

\n \n \n

{app_name} propose un {job_type}. poste pour vous en tant que {job_title}, relevant du directeur/superviseur immédiat à partir du {start_date} à {workplace_location}. Les heures de travail prévues sont de {days_of_week}.

\n \n \n

À ce poste, {app_name} vous propose de commencer avec un taux de rémunération de {salary} par {salary_type}. Vous serez payé sur une base de {salary_duration}.

\n \n \n

Dans le cadre de votre rémunération, le cas échéant, vous décrivez ici votre bonus, votre participation aux bénéfices, votre structure de commission, vos options sur actions et les règles du comité de rémunération.

\n \n \n

En tant quemployé de {app_name}, vous aurez droit à des avantages brièvement nommés, tels que lassurance maladie, le plan dactionnariat, lassurance dentaire, etc.

\n \n \n

Veuillez indiquer votre accord avec ces conditions et accepter cette offre en signant et en datant cet accord au plus tard le {offer_expiration_date}.

\n \n \n

Sincèrement,

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,'id','

Surat penawaran

\n \n \n

{applicant_name} yang terhormat,

\n \n \n

{app_name} dengan senang hati membawa Anda sebagai {job_title}.

\n \n \n

Tinggal beberapa formalitas lagi untuk mulai bekerja. Harap luangkan waktu untuk meninjau penawaran resmi kami. Ini mencakup detail penting tentang kompensasi, tunjangan, serta persyaratan dan ketentuan pekerjaan yang Anda harapkan dengan {app_name}.

\n \n \n

{app_name} menawarkan {job_type}. posisi untuk Anda sebagai {job_title}, melapor ke manajer/penyelia langsung mulai {start_date} di{workplace_location}. Jam kerja yang diharapkan adalah{days_of_week}.

\n \n \n

Di posisi ini, {app_name} menawarkan untuk memulai Anda dengan tarif pembayaran {salary} per {salary_type}. Anda akan dibayar berdasarkan {salary_duration}.

\n \n \n

Sebagai bagian dari kompensasi Anda, yang juga ditawarkan jika berlaku, Anda akan menjelaskan bonus, pembagian keuntungan, struktur komisi, opsi saham, dan aturan komite kompensasi Anda di sini.

\n \n \n

Sebagai karyawan {app_name} , Anda akan memenuhi syarat untuk mendapatkan manfaat singkat, seperti asuransi kesehatan, paket saham, asuransi gigi, dll.

\n \n \n

Harap tunjukkan persetujuan Anda dengan persyaratan ini dan terima penawaran ini dengan menandatangani dan memberi tanggal pada perjanjian ini pada atau sebelum {offer_expiration_date}.

\n \n \n

Sungguh-sungguh,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,'it','

Lettera di offerta

\n \n \n

Gentile {nome_richiedente},

\n \n \n

{app_name} è entusiasta di portarti a bordo come {job_title}.

\n \n \n

Mancavano solo poche formalità per mettersi al lavoro. Per favore, prenditi del tempo per rivedere la nostra offerta formale. Include dettagli importanti sul compenso, i vantaggi e i termini e le condizioni del tuo impiego previsto con {app_name}.

\n \n \n

{app_name} offre un {job_type}. posizione per te come {job_title}, riportando al manager/supervisore immediato a partire da {start_date} a {workplace_location}. Lorario di lavoro previsto è di {days_of_week}.

\n \n \n

In questa posizione, {app_name} ti offre di iniziare con una paga di {salary} per {salary_type}. Sarai pagato su base {salary_duration}.

\n \n \n

Come parte del tuo compenso, se applicabile, descrivi anche il tuo bonus, la partecipazione agli utili, la struttura delle commissioni, le stock option e le regole del comitato di compensazione qui.

\n \n \n

In qualità di dipendente di {app_name} , avrai diritto a vantaggi per nomi brevi, come assicurazione sanitaria, piano azionario, assicurazione dentale, ecc.

\n \n \n

Indica il tuo accordo con questi termini e accetta questa offerta firmando e datando questo accordo entro il {offer_expiration_date}.

\n \n \n

Cordiali saluti,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,'ja','

内定通知

\n \n \n

{applicant_name} 様

\n \n

{app_name} は、あなたを {job_title} として迎えることに興奮しています。

\n \n

仕事に取り掛かる前に、ほんの少しの手続きがありました。時間をかけて正式なオファーを確認してください。これには、あなたの報酬、福利厚生、および {app_name} での予想される雇用条件に関する重要な詳細が含まれています。

\n \n

{app_name} が {job_type} を提供しています。 {job_title} として、{start_date} から {workplace_location} の直属のマネージャー/スーパーバイザーに報告します。予想される勤務時間は {days_of_week} です。

\n \n

このポジションでは、{app_name} は、{salary_type} あたり {salary} の賃金率であなたをスタートさせることを提案しています。 {salary_duration} 単位で支払われます。

\n \n

報酬の一部として、該当する場合は提供もしていました。ボーナス、利益分配、手数料体系、ストック オプション、および報酬委員会の規則についてここに説明します。

\n \n

{app_name} の従業員として、健康保険、ストック プラン、歯科保険などの簡単な名前の特典を受ける資格があります。

\n \n

{offer_expiration_date} 日までに本契約に署名し日付を記入して、これらの条件に同意し、このオファーを受け入れてください。

\n \n

心から、

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,'nl','

Aanbiedingsbrief

\n \n \n \n

Beste {applicant_name},

\n \n \n \n

{app_name} is verheugd je aan boord te mogen verwelkomen als {job_title}.

\n \n \n \n

Waren slechts een paar formaliteiten verwijderd om aan het werk te gaan. Neem de tijd om ons formele aanbod te bekijken. Het bevat belangrijke details over uw vergoeding, voordelen en de voorwaarden van uw verwachte dienstverband bij {app_name}.

\n \n \n \n

{app_name} biedt een {job_type} aan. functie voor jou als {job_title}, rapporterend aan directe manager/supervisor vanaf {start_date} op {workplace_location}. De verwachte werkuren zijn {days_of_week}.

\n \n \n \n

In deze functie biedt {app_name} aan om je te starten tegen een salaris van {salary} per {salary_type}. U wordt betaald op basis van {salary_duration}.

\n \n \n \n

Als onderdeel van uw vergoeding, die u, indien van toepassing, ook aanbiedt, beschrijft u hier uw bonus, winstdeling, commissiestructuur, aandelenopties en regels van het vergoedingscomité.

\n \n \n \n

Als medewerker van {app_name} kom je in aanmerking voor korte naamvoordelen, zoals een ziektekostenverzekering, aandelenplan, tandartsverzekering, enz.

\n \n \n \n

Geef aan dat u akkoord gaat met deze voorwaarden en accepteer deze aanbieding door deze overeenkomst op of vóór {offer_expiration_date} te ondertekenen en te dateren.

\n \n \n \n

Eerlijk,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,'pl','

List ofertowy

\n \n

Drogi {applicant_name},

\n \n

{app_name} z radością zaprasza Cię do współpracy jako {job_title}.

\n \n

Od rozpoczęcia pracy dzieliło mnie tylko kilka formalności. Prosimy o poświęcenie czasu na zapoznanie się z naszą oficjalną ofertą. Zawiera ważne szczegóły dotyczące Twojego wynagrodzenia, świadczeń oraz warunków Twojego przewidywanego zatrudnienia w {app_name}.

\n \n \n

{app_name} oferuje {job_type}. stanowisko dla Ciebie jako {job_title}, raportowanie do bezpośredniego przełożonego/przełożonego począwszy od {start_date} w {workplace_location}. Przewidywane godziny pracy to {days_of_week}.

\n \n \n

Na tym stanowisku {app_name} oferuje Ci rozpoczęcie pracy za stawkę {salary} za {salary_type}. Otrzymasz zapłatę na podstawie {salary_duration}.

\n \n \n

W ramach wynagrodzenia, które oferowaliśmy, jeśli dotyczy, opiszesz tutaj swoją premię, podział zysków, strukturę prowizji, opcje na akcje i zasady komitetu ds. Wynagrodzeń.

\n \n \n

Jako pracownik {app_name} będziesz mieć prawo do krótkich imiennych świadczeń, takich jak ubezpieczenie zdrowotne, plan akcji, ubezpieczenie dentystyczne itp.

\n \n

Zaznacz, że zgadzasz się z tymi warunkami i zaakceptuj tę ofertę, podpisując i datując tę ​​umowę w dniu {offer_expiration_date} lub wcześniej.

\n \n

Z poważaniem,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,'pt','

Carta de oferta

\n \n \n

Prezado {applicant_name},

\n \n \n

{app_name} tem o prazer de trazer você a bordo como {job_title}.

\n \n \n

Faltavam apenas algumas formalidades para começar a trabalhar. Por favor, reserve um tempo para revisar nossa oferta formal. Ele inclui detalhes importantes sobre sua remuneração, benefícios e os termos e condições de seu emprego previsto com {app_name}.

\n \n \n

{app_name} está oferecendo um {job_type}. posição para você como {job_title}, reportando-se ao gerente/supervisor imediato a partir de {start_date} em {workplace_location}. As horas de trabalho previstas são {days_of_week}.

\n \n \n

Nesta posição, {app_name} está oferecendo para você começar com uma taxa de pagamento de {salary} por {salary_type}. Você será pago em uma base de {salary_duration}.

\n \n \n

Como parte de sua remuneração, também oferecida, se aplicável, você descreverá seu bônus, participação nos lucros, estrutura de comissões, opções de ações e regras do comitê de remuneração aqui.

\n \n \n

Como funcionário de {app_name} , você se qualificará para benefícios de nome breve, como seguro saúde, plano de ações, seguro odontológico etc.

\n \n \n

Indique sua concordância com estes termos e aceite esta oferta assinando e datando este contrato em ou antes de {offer_expiration_date}.

\n \n \n

Sinceramente,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,'ru','

Письмо с предложением

\n \n \n

Уважаемый {applicant_name!

\n \n \n

{app_name} рад предложить вам присоединиться к нам в качестве {job_title}.

\n \n \n

Осталось всего несколько формальностей, чтобы приступить к работе. Пожалуйста, найдите время, чтобы ознакомиться с нашим официальным предложением. В нем содержится важная информация о вашем вознаграждении, льготах и ​​условиях вашего предполагаемого трудоустройства в {app_name}.

\n \n \n

{app_name} предлагает {job_type}. должность для вас как {job_title}, подчинение непосредственному руководителю/руководителю начиная с {start_date} в {workplace_location}. Ожидаемое рабочее время: {days_of_week}.

\n \n \n

На этой должности {app_name} предлагает вам начать работу со ставкой заработной платы {salary} за {salary_type}. Вам будут платить на основе {salary_duration}.

\n \n \n

В рамках вашего вознаграждения мы также предлагаем, если это применимо, вы описываете свой бонус, распределение прибыли, структуру комиссионных, опционы на акции и правила компенсационного комитета здесь.

\n \n \n

Как сотрудник {app_name}, вы будете иметь право на краткосрочные льготы, такие как медицинская страховка, план акций, стоматологическая страховка и т. д.

\n \n \n

Пожалуйста, подтвердите свое согласие с этими условиями и примите это предложение, подписав и датировав это соглашение не позднее {offer_expiration_date}.

\n \n \n

Искренне,

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,'tr','

Teklif mektubu

\n \n

Canım {applicant_name},

\n \n

{app_name} olarak sizi gemiye getirmekten heyecan duyuyor {job_title}.

\n \n

İşe başlamaktan sadece birkaç formalite uzaktaydı. Lütfen resmi teklifimizi incelemek için zaman ayırın. Tazminatınız, sosyal yardımlarınız ve sizin için öngörülen istihdamınızın hüküm ve koşulları hakkında önemli ayrıntıları içerir. {app_name}.

\n \n

{app_name} teklif ediyor {job_type}. senin için pozisyon {job_title}, [acil yöneticiye/denetçiye] raporlama, şu tarihten itibaren {start_date} de{workplace_location}. Beklenen çalışma saatleri{days_of_week}.

\n \n

Bu pozisyonda, {app_name} size bir ödeme oranıyla başlamayı teklif ediyor {salary} başına {salary_type}. size bir ödeme yapılacak{salary_duration} temel. 

\n \n

Tazminatınızın bir parçası olarak [varsa, ikramiyenizi, kâr paylaşımınızı, komisyon yapınızı, hisse senedi opsiyonlarınızı ve ücret komitesi kurallarınızı burada açıklayacaksınız].

\n \n

çalışanı olarak {app_name} , sağlık sigortası, stok planı, diş sigortası vb. gibi kısaca isim haklarına hak kazanacaksınız.

\n \n

Lütfen bu şartları kabul ettiğinizi belirtin ve bu sözleşmeyi tarihinde veya daha önce imzalayarak ve tarih atarak bu teklifi kabul edin {offer_expiration_date}.

\n \n

Samimi olarak,

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (15,'zh','

录取通知书

\n \n

亲爱的 {applicant_name},

\n \n

{app_name} 很高兴邀请您加入 {job_title}.

\n \n

只需要办理一些手续就可以开始工作了。请花时间查看我们的正式报价。它包括有关您的薪酬、福利以及您预期就业的条款和条件的重要详细信息 {app_name}.

\n \n

{app_name} 正在提供 {job_type}. 为您定位为 {job_title}, 向[直接经理/主管]汇报工作开始 {start_date} 在{workplace_location}. 预计工作时间为{days_of_week}.

\n \n

在这个位置, {app_name} 提供给你的起始工资为 {salary} 每 {salary_type}. 您将获得报酬{salary_duration} 基础. 

\n \n

作为薪酬的一部分,我们还提供[如果适用,您将在此处描述您的奖金、利润分享、佣金结构、股票期权和薪酬委员会规则].

\n \n

作为一名员工 {app_name} , 您将有资格获得简单的福利,例如健康保险、股票计划、牙科保险等.

\n \n

请在以下日期或之前签署本协议并注明日期,以表明您同意这些条款并接受本要约 {offer_expiration_date}.

\n \n

真挚地,

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (16,'he','

מכתב הצעה

\n \n

יָקָר {applicant_name},

\n \n

{app_name} נרגש להעלות אותך לסיפון {job_title}.

\n \n

היו רק כמה הליכים פורמליים מלהגיע לעבודה. אנא הקדישו זמן לעיון בהצעה הרשמית שלנו. הוא כולל פרטים חשובים על התגמול שלך, ההטבות והתנאים וההגבלות של העסקה הצפויה שלך {app_name}.

\n \n

{app_name} מציעה א {job_type}. עמדה עבורך כ {job_title}, דיווח ל[מנהל/מפקח מיידי] החל מהיום {start_date} בְּ-{workplace_location}. שעות העבודה הצפויות הן{days_of_week}.

\n \n

בתפקיד הזה, {app_name} מציעה להתחיל אותך בשיעור שכר של {salary} לְכָל {salary_type}. תשולם לך על א{salary_duration} בָּסִיס. 

\n \n

כחלק מהתגמול שלך, הוצעו גם [אם רלוונטי, תתאר את הבונוס שלך, חלוקת הרווחים, מבנה העמלות, אופציות למניות וכללי ועדת התגמול שלך כאן].

\n \n

בתור עובד של {app_name} , אתה תהיה זכאי להטבות עם שם קצר, כגון ביטוח בריאות, תוכנית מניות, ביטוח שיניים וכו.

\n \n

אנא ציין את הסכמתך לתנאים אלה וקבל הצעה זו על ידי חתימה ותיארוך על הסכם זה או לפני כן {offer_expiration_date}.

\n \n

בכנות,

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (17,'pt-br','

Carta de oferta

\n \n

Prezado {applicant_name},

\n \n

{app_name} tem o prazer de trazer você a bordo como {job_title}.

\n \n

Faltavam apenas algumas formalidades para começar a trabalhar. Por favor, reserve um tempo para revisar nossa oferta formal. Ele inclui detalhes importantes sobre sua remuneração, benefícios e os termos e condições de seu emprego previsto com {app_name}.

\n \n

{app_name} está oferecendo um {job_type}. posição para você como {job_title}, reportando-se ao gerente/supervisor imediato a partir de {start_date} em {workplace_location}. As horas de trabalho previstas são {days_of_week}.

\n \n

Nesta posição, {app_name} está oferecendo para você começar com uma taxa de pagamento de {salary} por {salary_type}. Você será pago em uma base de {salary_duration}.

\n \n

Como parte de sua remuneração, também oferecida, se aplicável, você descreverá seu bônus, participação nos lucros, estrutura de comissões, opções de ações e regras do comitê de remuneração aqui.

\n \n

Como funcionário de {app_name} , você se qualificará para benefícios de nome breve, como seguro saúde, plano de ações, seguro odontológico etc.

\n \n

Indique sua concordância com estes termos e aceite esta oferta assinando e datando este contrato em ou antes de {offer_expiration_date}.

\n \n

Sinceramente,

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (18,'ar','

رسالة عرض

\n \n \n

عزيزي {applicationant_name} ،

\n \n \n

{app_name} متحمس لاصطحابك على متن الطائرة بصفتك {job_title}.

\n \n

كنت على بعد خطوات قليلة من الشروع في العمل. يرجى أخذ الوقت الكافي لمراجعة عرضنا الرسمي. يتضمن تفاصيل مهمة حول راتبك ومزاياك وبنود وشروط عملك المتوقع مع {app_name}.

\n \n \n

{app_name} يقدم {job_type}. المنصب بالنسبة لك كـ {job_title} ، تقديم التقارير إلى [المدير المباشر / المشرف] بدءًا من {start_date} في {workplace_location}. ساعات العمل المتوقعة هي {days_of_week}.

\n \n \n

في هذا المنصب ، يعرض عليك {app_name}  {salary}أن تبدأ لك بمعدل دفع {salary_type} لكل {salary_duration}. سوف يتم الدفع لك على أساس.

\n \n \n

كجزء من تعويضك ، إذا كان ذلك ممكنًا ، ستصف مكافأتك ومشاركة الأرباح وهيكل العمولة وخيارات الأسهم وقواعد لجنة التعويضات هنا.

\n \n \n

بصفتك موظفًا في {app_name} ، ستكون مؤهلاً للحصول على مزايا الاسم المختصر ، مثل التأمين الصحي ، وخطة الأسهم ، والتأمين على الأسنان ، وما إلى ذلك.

\n \n \n

الرجاء توضيح موافقتك على هذه البنود وقبول هذا العرض عن طريق التوقيع على هذه الاتفاقية وتأريخها في أو قبل {offer_expiration_date}.

\n \n

بإخلاص،

\n \n

{app_name}

\n ',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (19,'da','

Tilbudsbrev

\n \n

Kære {applicant_name}

\n \n

{app_name} er glade for at få dig med som {job_title}.

\n \n

Der var kun et par formaliteter fra at komme på arbejde. Tag dig tid til at gennemgå vores formelle tilbud. Den indeholder vigtige oplysninger om din kompensation, fordele og vilkårene og betingelserne for din forventede ansættelse hos {app_name}.

\n \n

{app_name} tilbyder en {job_type}. stilling til dig som {job_title}, der rapporterer til [nærmeste leder/supervisor] fra og med {start_date} på{workplace_location}. Forventet arbejdstid er {days_of_week}.

\n \n \n

I denne stilling tilbyder {app_name} at starte dig med en lønsats på {salary} pr. {salary_type}. Du vil blive betalt på {salary_duration}-basis.

\n \n

Som en del af din kompensation, du også tilbyder, hvis det er relevant, vil du beskrive din bonus, overskudsdeling, kommissionsstruktur, aktieoptioner og regler for kompensationsudvalget her.

\n \n \n

Som ansat hos {app_name} vil du være berettiget til kort navnefordele, såsom sundhedsforsikring, aktieplan, tandforsikring osv.

\n \n

Angiv venligst din accept af disse vilkår og accepter dette tilbud ved at underskrive og datere denne aftale på eller før {offer_expiration_date}.

\n \n

Med venlig hilsen

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (20,'de','

Angebotsschreiben

\n \n \n

Sehr geehrter {applicant_name},

\n \n \n

{app_name} freut sich, Sie als {job_title} an Bord zu holen.

\n \n \n

Nur noch wenige Formalitäten bis zur Arbeit. Bitte nehmen Sie sich die Zeit, unser formelles Angebot zu prüfen. Es enthält wichtige Details zu Ihrer Vergütung, Ihren Leistungen und den Bedingungen Ihrer voraussichtlichen Anstellung bei {app_name}.

\n \n \n

{app_name} bietet einen {job_type} an. Position für Sie als {job_title}, ab {start_date} am {workplace_location} unterstellt an unmittelbarer Manager/Vorgesetzter. Erwartete Arbeitszeiten sind {days_of_week}.

\n \n \n

In dieser Position bietet {app_name} Ihnen an, mit einem Gehaltssatz von {salary} pro {salary_type} zu beginnen. Sie werden auf Basis von {salary_duration} bezahlt.

\n \n \n

Als Teil Ihrer Vergütung, die Sie gegebenenfalls auch anbieten, beschreiben Sie hier Ihren Bonus, Ihre Gewinnbeteiligung, Ihre Provisionsstruktur, Ihre Aktienoptionen und die Regeln des Vergütungsausschusses.

\n \n \n

Als Mitarbeiter von {app_name} haben Sie Anspruch auf Kurznamenvorteile wie Krankenversicherung, Aktienplan, Zahnversicherung usw.

\n \n \n \n

Bitte erklären Sie Ihr Einverständnis mit diesen Bedingungen und nehmen Sie dieses Angebot an, indem Sie diese Vereinbarung am oder vor dem {offer_expiration_date} unterzeichnen und datieren.

\n \n \n

Aufrichtig,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (21,'en','

Offer Letter

\n \n

Dear {applicant_name},

\n \n

{app_name} is excited to bring you on board as {job_title}.

\n \n

Were just a few formalities away from getting down to work. Please take the time to review our formal offer. It includes important details about your compensation, benefits, and the terms and conditions of your anticipated employment with {app_name}.

\n \n

{app_name} is offering a {job_type}. position for you as {job_title}, reporting to [immediate manager/supervisor] starting on {start_date} at{workplace_location}. Expected hours of work are{days_of_week}.

\n \n

In this position, {app_name} is offering to start you at a pay rate of {salary} per {salary_type}. You will be paid on a{salary_duration} basis. 

\n \n

As part of your compensation, were also offering [if applicable, youll describe your bonus, profit sharing, commission structure, stock options, and compensation committee rules here].

\n \n

As an employee of {app_name} , you will be eligible for briefly name benefits, such as health insurance, stock plan, dental insurance, etc.

\n \n

Please indicate your agreement with these terms and accept this offer by signing and dating this agreement on or before {offer_expiration_date}.

\n \n

Sincerely,

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (22,'es','

Carta de oferta

\n \n \n

Estimado {applicant_name},

\n \n

{app_name} se complace en incorporarlo como {job_title}.

\n \n \n

Faltaban sólo unos trámites para ponerse manos a la obra. Tómese el tiempo para revisar nuestra oferta formal. Incluye detalles importantes sobre su compensación, beneficios y los términos y condiciones de su empleo anticipado con {app_name}.

\n \n \n

{app_name} está ofreciendo {job_type}. posición para usted como {job_title}, reportando al gerente/supervisor inmediato a partir del {start_date} en {workplace_location}. Las horas de trabajo esperadas son {days_of_week}.

\n \n \n

En este puesto, {app_name} te ofrece comenzar con una tarifa de pago de {salary} por {salary_type}. Se le pagará sobre la base de {salary_duration}.

\n \n \n

Como parte de su compensación, también ofrecemos, si corresponde, aquí describirá su bonificación, participación en las ganancias, estructura de comisiones, opciones sobre acciones y reglas del comité de compensación.

\n \n \n

Como empleado de {app_name}, será elegible para beneficios de nombre breve, como seguro médico, plan de acciones, seguro dental, etc.

\n \n \n

Indique su acuerdo con estos términos y acepte esta oferta firmando y fechando este acuerdo el {offer_expiration_date} o antes.

\n \n \n

Sinceramente,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (23,'fr','

Lettre doffre

\n \n \n

Cher {applicant_name},

\n \n \n

{app_name} est ravi de vous accueillir en tant que {job_title}.

\n \n \n

Étaient juste quelques formalités loin de se mettre au travail. Veuillez prendre le temps dexaminer notre offre formelle. Il comprend des détails importants sur votre rémunération, vos avantages et les termes et conditions de votre emploi prévu avec {app_name}.

\n \n \n

{app_name} propose un {job_type}. poste pour vous en tant que {job_title}, relevant du directeur/superviseur immédiat à partir du {start_date} à {workplace_location}. Les heures de travail prévues sont de {days_of_week}.

\n \n \n

À ce poste, {app_name} vous propose de commencer avec un taux de rémunération de {salary} par {salary_type}. Vous serez payé sur une base de {salary_duration}.

\n \n \n

Dans le cadre de votre rémunération, le cas échéant, vous décrivez ici votre bonus, votre participation aux bénéfices, votre structure de commission, vos options sur actions et les règles du comité de rémunération.

\n \n \n

En tant quemployé de {app_name}, vous aurez droit à des avantages brièvement nommés, tels que lassurance maladie, le plan dactionnariat, lassurance dentaire, etc.

\n \n \n

Veuillez indiquer votre accord avec ces conditions et accepter cette offre en signant et en datant cet accord au plus tard le {offer_expiration_date}.

\n \n \n

Sincèrement,

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (24,'id','

Surat penawaran

\n \n \n

{applicant_name} yang terhormat,

\n \n \n

{app_name} dengan senang hati membawa Anda sebagai {job_title}.

\n \n \n

Tinggal beberapa formalitas lagi untuk mulai bekerja. Harap luangkan waktu untuk meninjau penawaran resmi kami. Ini mencakup detail penting tentang kompensasi, tunjangan, serta persyaratan dan ketentuan pekerjaan yang Anda harapkan dengan {app_name}.

\n \n \n

{app_name} menawarkan {job_type}. posisi untuk Anda sebagai {job_title}, melapor ke manajer/penyelia langsung mulai {start_date} di{workplace_location}. Jam kerja yang diharapkan adalah{days_of_week}.

\n \n \n

Di posisi ini, {app_name} menawarkan untuk memulai Anda dengan tarif pembayaran {salary} per {salary_type}. Anda akan dibayar berdasarkan {salary_duration}.

\n \n \n

Sebagai bagian dari kompensasi Anda, yang juga ditawarkan jika berlaku, Anda akan menjelaskan bonus, pembagian keuntungan, struktur komisi, opsi saham, dan aturan komite kompensasi Anda di sini.

\n \n \n

Sebagai karyawan {app_name} , Anda akan memenuhi syarat untuk mendapatkan manfaat singkat, seperti asuransi kesehatan, paket saham, asuransi gigi, dll.

\n \n \n

Harap tunjukkan persetujuan Anda dengan persyaratan ini dan terima penawaran ini dengan menandatangani dan memberi tanggal pada perjanjian ini pada atau sebelum {offer_expiration_date}.

\n \n \n

Sungguh-sungguh,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (25,'it','

Lettera di offerta

\n \n \n

Gentile {nome_richiedente},

\n \n \n

{app_name} è entusiasta di portarti a bordo come {job_title}.

\n \n \n

Mancavano solo poche formalità per mettersi al lavoro. Per favore, prenditi del tempo per rivedere la nostra offerta formale. Include dettagli importanti sul compenso, i vantaggi e i termini e le condizioni del tuo impiego previsto con {app_name}.

\n \n \n

{app_name} offre un {job_type}. posizione per te come {job_title}, riportando al manager/supervisore immediato a partire da {start_date} a {workplace_location}. Lorario di lavoro previsto è di {days_of_week}.

\n \n \n

In questa posizione, {app_name} ti offre di iniziare con una paga di {salary} per {salary_type}. Sarai pagato su base {salary_duration}.

\n \n \n

Come parte del tuo compenso, se applicabile, descrivi anche il tuo bonus, la partecipazione agli utili, la struttura delle commissioni, le stock option e le regole del comitato di compensazione qui.

\n \n \n

In qualità di dipendente di {app_name} , avrai diritto a vantaggi per nomi brevi, come assicurazione sanitaria, piano azionario, assicurazione dentale, ecc.

\n \n \n

Indica il tuo accordo con questi termini e accetta questa offerta firmando e datando questo accordo entro il {offer_expiration_date}.

\n \n \n

Cordiali saluti,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (26,'ja','

内定通知

\n \n \n

{applicant_name} 様

\n \n

{app_name} は、あなたを {job_title} として迎えることに興奮しています。

\n \n

仕事に取り掛かる前に、ほんの少しの手続きがありました。時間をかけて正式なオファーを確認してください。これには、あなたの報酬、福利厚生、および {app_name} での予想される雇用条件に関する重要な詳細が含まれています。

\n \n

{app_name} が {job_type} を提供しています。 {job_title} として、{start_date} から {workplace_location} の直属のマネージャー/スーパーバイザーに報告します。予想される勤務時間は {days_of_week} です。

\n \n

このポジションでは、{app_name} は、{salary_type} あたり {salary} の賃金率であなたをスタートさせることを提案しています。 {salary_duration} 単位で支払われます。

\n \n

報酬の一部として、該当する場合は提供もしていました。ボーナス、利益分配、手数料体系、ストック オプション、および報酬委員会の規則についてここに説明します。

\n \n

{app_name} の従業員として、健康保険、ストック プラン、歯科保険などの簡単な名前の特典を受ける資格があります。

\n \n

{offer_expiration_date} 日までに本契約に署名し日付を記入して、これらの条件に同意し、このオファーを受け入れてください。

\n \n

心から、

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (27,'nl','

Aanbiedingsbrief

\n \n \n \n

Beste {applicant_name},

\n \n \n \n

{app_name} is verheugd je aan boord te mogen verwelkomen als {job_title}.

\n \n \n \n

Waren slechts een paar formaliteiten verwijderd om aan het werk te gaan. Neem de tijd om ons formele aanbod te bekijken. Het bevat belangrijke details over uw vergoeding, voordelen en de voorwaarden van uw verwachte dienstverband bij {app_name}.

\n \n \n \n

{app_name} biedt een {job_type} aan. functie voor jou als {job_title}, rapporterend aan directe manager/supervisor vanaf {start_date} op {workplace_location}. De verwachte werkuren zijn {days_of_week}.

\n \n \n \n

In deze functie biedt {app_name} aan om je te starten tegen een salaris van {salary} per {salary_type}. U wordt betaald op basis van {salary_duration}.

\n \n \n \n

Als onderdeel van uw vergoeding, die u, indien van toepassing, ook aanbiedt, beschrijft u hier uw bonus, winstdeling, commissiestructuur, aandelenopties en regels van het vergoedingscomité.

\n \n \n \n

Als medewerker van {app_name} kom je in aanmerking voor korte naamvoordelen, zoals een ziektekostenverzekering, aandelenplan, tandartsverzekering, enz.

\n \n \n \n

Geef aan dat u akkoord gaat met deze voorwaarden en accepteer deze aanbieding door deze overeenkomst op of vóór {offer_expiration_date} te ondertekenen en te dateren.

\n \n \n \n

Eerlijk,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (28,'pl','

List ofertowy

\n \n

Drogi {applicant_name},

\n \n

{app_name} z radością zaprasza Cię do współpracy jako {job_title}.

\n \n

Od rozpoczęcia pracy dzieliło mnie tylko kilka formalności. Prosimy o poświęcenie czasu na zapoznanie się z naszą oficjalną ofertą. Zawiera ważne szczegóły dotyczące Twojego wynagrodzenia, świadczeń oraz warunków Twojego przewidywanego zatrudnienia w {app_name}.

\n \n \n

{app_name} oferuje {job_type}. stanowisko dla Ciebie jako {job_title}, raportowanie do bezpośredniego przełożonego/przełożonego począwszy od {start_date} w {workplace_location}. Przewidywane godziny pracy to {days_of_week}.

\n \n \n

Na tym stanowisku {app_name} oferuje Ci rozpoczęcie pracy za stawkę {salary} za {salary_type}. Otrzymasz zapłatę na podstawie {salary_duration}.

\n \n \n

W ramach wynagrodzenia, które oferowaliśmy, jeśli dotyczy, opiszesz tutaj swoją premię, podział zysków, strukturę prowizji, opcje na akcje i zasady komitetu ds. Wynagrodzeń.

\n \n \n

Jako pracownik {app_name} będziesz mieć prawo do krótkich imiennych świadczeń, takich jak ubezpieczenie zdrowotne, plan akcji, ubezpieczenie dentystyczne itp.

\n \n

Zaznacz, że zgadzasz się z tymi warunkami i zaakceptuj tę ofertę, podpisując i datując tę ​​umowę w dniu {offer_expiration_date} lub wcześniej.

\n \n

Z poważaniem,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (29,'pt','

Carta de oferta

\n \n \n

Prezado {applicant_name},

\n \n \n

{app_name} tem o prazer de trazer você a bordo como {job_title}.

\n \n \n

Faltavam apenas algumas formalidades para começar a trabalhar. Por favor, reserve um tempo para revisar nossa oferta formal. Ele inclui detalhes importantes sobre sua remuneração, benefícios e os termos e condições de seu emprego previsto com {app_name}.

\n \n \n

{app_name} está oferecendo um {job_type}. posição para você como {job_title}, reportando-se ao gerente/supervisor imediato a partir de {start_date} em {workplace_location}. As horas de trabalho previstas são {days_of_week}.

\n \n \n

Nesta posição, {app_name} está oferecendo para você começar com uma taxa de pagamento de {salary} por {salary_type}. Você será pago em uma base de {salary_duration}.

\n \n \n

Como parte de sua remuneração, também oferecida, se aplicável, você descreverá seu bônus, participação nos lucros, estrutura de comissões, opções de ações e regras do comitê de remuneração aqui.

\n \n \n

Como funcionário de {app_name} , você se qualificará para benefícios de nome breve, como seguro saúde, plano de ações, seguro odontológico etc.

\n \n \n

Indique sua concordância com estes termos e aceite esta oferta assinando e datando este contrato em ou antes de {offer_expiration_date}.

\n \n \n

Sinceramente,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (30,'ru','

Письмо с предложением

\n \n \n

Уважаемый {applicant_name!

\n \n \n

{app_name} рад предложить вам присоединиться к нам в качестве {job_title}.

\n \n \n

Осталось всего несколько формальностей, чтобы приступить к работе. Пожалуйста, найдите время, чтобы ознакомиться с нашим официальным предложением. В нем содержится важная информация о вашем вознаграждении, льготах и ​​условиях вашего предполагаемого трудоустройства в {app_name}.

\n \n \n

{app_name} предлагает {job_type}. должность для вас как {job_title}, подчинение непосредственному руководителю/руководителю начиная с {start_date} в {workplace_location}. Ожидаемое рабочее время: {days_of_week}.

\n \n \n

На этой должности {app_name} предлагает вам начать работу со ставкой заработной платы {salary} за {salary_type}. Вам будут платить на основе {salary_duration}.

\n \n \n

В рамках вашего вознаграждения мы также предлагаем, если это применимо, вы описываете свой бонус, распределение прибыли, структуру комиссионных, опционы на акции и правила компенсационного комитета здесь.

\n \n \n

Как сотрудник {app_name}, вы будете иметь право на краткосрочные льготы, такие как медицинская страховка, план акций, стоматологическая страховка и т. д.

\n \n \n

Пожалуйста, подтвердите свое согласие с этими условиями и примите это предложение, подписав и датировав это соглашение не позднее {offer_expiration_date}.

\n \n \n

Искренне,

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (31,'tr','

Teklif mektubu

\n \n

Canım {applicant_name},

\n \n

{app_name} olarak sizi gemiye getirmekten heyecan duyuyor {job_title}.

\n \n

İşe başlamaktan sadece birkaç formalite uzaktaydı. Lütfen resmi teklifimizi incelemek için zaman ayırın. Tazminatınız, sosyal yardımlarınız ve sizin için öngörülen istihdamınızın hüküm ve koşulları hakkında önemli ayrıntıları içerir. {app_name}.

\n \n

{app_name} teklif ediyor {job_type}. senin için pozisyon {job_title}, [acil yöneticiye/denetçiye] raporlama, şu tarihten itibaren {start_date} de{workplace_location}. Beklenen çalışma saatleri{days_of_week}.

\n \n

Bu pozisyonda, {app_name} size bir ödeme oranıyla başlamayı teklif ediyor {salary} başına {salary_type}. size bir ödeme yapılacak{salary_duration} temel. 

\n \n

Tazminatınızın bir parçası olarak [varsa, ikramiyenizi, kâr paylaşımınızı, komisyon yapınızı, hisse senedi opsiyonlarınızı ve ücret komitesi kurallarınızı burada açıklayacaksınız].

\n \n

çalışanı olarak {app_name} , sağlık sigortası, stok planı, diş sigortası vb. gibi kısaca isim haklarına hak kazanacaksınız.

\n \n

Lütfen bu şartları kabul ettiğinizi belirtin ve bu sözleşmeyi tarihinde veya daha önce imzalayarak ve tarih atarak bu teklifi kabul edin {offer_expiration_date}.

\n \n

Samimi olarak,

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (32,'zh','

录取通知书

\n \n

亲爱的 {applicant_name},

\n \n

{app_name} 很高兴邀请您加入 {job_title}.

\n \n

只需要办理一些手续就可以开始工作了。请花时间查看我们的正式报价。它包括有关您的薪酬、福利以及您预期就业的条款和条件的重要详细信息 {app_name}.

\n \n

{app_name} 正在提供 {job_type}. 为您定位为 {job_title}, 向[直接经理/主管]汇报工作开始 {start_date} 在{workplace_location}. 预计工作时间为{days_of_week}.

\n \n

在这个位置, {app_name} 提供给你的起始工资为 {salary} 每 {salary_type}. 您将获得报酬{salary_duration} 基础. 

\n \n

作为薪酬的一部分,我们还提供[如果适用,您将在此处描述您的奖金、利润分享、佣金结构、股票期权和薪酬委员会规则].

\n \n

作为一名员工 {app_name} , 您将有资格获得简单的福利,例如健康保险、股票计划、牙科保险等.

\n \n

请在以下日期或之前签署本协议并注明日期,以表明您同意这些条款并接受本要约 {offer_expiration_date}.

\n \n

真挚地,

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (33,'he','

מכתב הצעה

\n \n

יָקָר {applicant_name},

\n \n

{app_name} נרגש להעלות אותך לסיפון {job_title}.

\n \n

היו רק כמה הליכים פורמליים מלהגיע לעבודה. אנא הקדישו זמן לעיון בהצעה הרשמית שלנו. הוא כולל פרטים חשובים על התגמול שלך, ההטבות והתנאים וההגבלות של העסקה הצפויה שלך {app_name}.

\n \n

{app_name} מציעה א {job_type}. עמדה עבורך כ {job_title}, דיווח ל[מנהל/מפקח מיידי] החל מהיום {start_date} בְּ-{workplace_location}. שעות העבודה הצפויות הן{days_of_week}.

\n \n

בתפקיד הזה, {app_name} מציעה להתחיל אותך בשיעור שכר של {salary} לְכָל {salary_type}. תשולם לך על א{salary_duration} בָּסִיס. 

\n \n

כחלק מהתגמול שלך, הוצעו גם [אם רלוונטי, תתאר את הבונוס שלך, חלוקת הרווחים, מבנה העמלות, אופציות למניות וכללי ועדת התגמול שלך כאן].

\n \n

בתור עובד של {app_name} , אתה תהיה זכאי להטבות עם שם קצר, כגון ביטוח בריאות, תוכנית מניות, ביטוח שיניים וכו.

\n \n

אנא ציין את הסכמתך לתנאים אלה וקבל הצעה זו על ידי חתימה ותיארוך על הסכם זה או לפני כן {offer_expiration_date}.

\n \n

בכנות,

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (34,'pt-br','

Carta de oferta

\n \n

Prezado {applicant_name},

\n \n

{app_name} tem o prazer de trazer você a bordo como {job_title}.

\n \n

Faltavam apenas algumas formalidades para começar a trabalhar. Por favor, reserve um tempo para revisar nossa oferta formal. Ele inclui detalhes importantes sobre sua remuneração, benefícios e os termos e condições de seu emprego previsto com {app_name}.

\n \n

{app_name} está oferecendo um {job_type}. posição para você como {job_title}, reportando-se ao gerente/supervisor imediato a partir de {start_date} em {workplace_location}. As horas de trabalho previstas são {days_of_week}.

\n \n

Nesta posição, {app_name} está oferecendo para você começar com uma taxa de pagamento de {salary} por {salary_type}. Você será pago em uma base de {salary_duration}.

\n \n

Como parte de sua remuneração, também oferecida, se aplicável, você descreverá seu bônus, participação nos lucros, estrutura de comissões, opções de ações e regras do comitê de remuneração aqui.

\n \n

Como funcionário de {app_name} , você se qualificará para benefícios de nome breve, como seguro saúde, plano de ações, seguro odontológico etc.

\n \n

Indique sua concordância com estes termos e aceite esta oferta assinando e datando este contrato em ou antes de {offer_expiration_date}.

\n \n

Sinceramente,

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'); /*!40000 ALTER TABLE `generate_offer_letters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `genrate_payslip_options` -- DROP TABLE IF EXISTS `genrate_payslip_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `genrate_payslip_options` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `genrate_payslip_options` -- LOCK TABLES `genrate_payslip_options` WRITE; /*!40000 ALTER TABLE `genrate_payslip_options` DISABLE KEYS */; /*!40000 ALTER TABLE `genrate_payslip_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `goal_trackings` -- DROP TABLE IF EXISTS `goal_trackings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `goal_trackings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch` int(11) NOT NULL, `goal_type` int(11) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `subject` varchar(191) DEFAULT NULL, `rating` varchar(191) DEFAULT NULL, `target_achievement` varchar(191) DEFAULT NULL, `description` text DEFAULT NULL, `status` int(11) NOT NULL DEFAULT 0, `progress` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `goal_trackings` -- LOCK TABLES `goal_trackings` WRITE; /*!40000 ALTER TABLE `goal_trackings` DISABLE KEYS */; /*!40000 ALTER TABLE `goal_trackings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `goal_types` -- DROP TABLE IF EXISTS `goal_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `goal_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `goal_types` -- LOCK TABLES `goal_types` WRITE; /*!40000 ALTER TABLE `goal_types` DISABLE KEYS */; /*!40000 ALTER TABLE `goal_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `holidays` -- DROP TABLE IF EXISTS `holidays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `holidays` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `occasion` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `holidays` -- LOCK TABLES `holidays` WRITE; /*!40000 ALTER TABLE `holidays` DISABLE KEYS */; /*!40000 ALTER TABLE `holidays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `income_types` -- DROP TABLE IF EXISTS `income_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `income_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `income_types` -- LOCK TABLES `income_types` WRITE; /*!40000 ALTER TABLE `income_types` DISABLE KEYS */; /*!40000 ALTER TABLE `income_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `indicators` -- DROP TABLE IF EXISTS `indicators`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `indicators` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch` int(11) NOT NULL DEFAULT 0, `department` int(11) NOT NULL DEFAULT 0, `designation` int(11) NOT NULL DEFAULT 0, `rating` varchar(191) DEFAULT NULL, `customer_experience` int(11) NOT NULL DEFAULT 0, `marketing` int(11) NOT NULL DEFAULT 0, `administration` int(11) NOT NULL DEFAULT 0, `professionalism` int(11) NOT NULL DEFAULT 0, `integrity` int(11) NOT NULL DEFAULT 0, `attendance` int(11) NOT NULL DEFAULT 0, `created_user` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `indicators` -- LOCK TABLES `indicators` WRITE; /*!40000 ALTER TABLE `indicators` DISABLE KEYS */; /*!40000 ALTER TABLE `indicators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `interview_schedules` -- DROP TABLE IF EXISTS `interview_schedules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `interview_schedules` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `candidate` int(11) NOT NULL, `employee` int(11) NOT NULL DEFAULT 0, `date` date NOT NULL, `time` time NOT NULL, `comment` text DEFAULT NULL, `employee_response` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `interview_schedules` -- LOCK TABLES `interview_schedules` WRITE; /*!40000 ALTER TABLE `interview_schedules` DISABLE KEYS */; /*!40000 ALTER TABLE `interview_schedules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ip_restricts` -- DROP TABLE IF EXISTS `ip_restricts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `ip_restricts` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ip_restricts` -- LOCK TABLES `ip_restricts` WRITE; /*!40000 ALTER TABLE `ip_restricts` DISABLE KEYS */; /*!40000 ALTER TABLE `ip_restricts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job_application_notes` -- DROP TABLE IF EXISTS `job_application_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `job_application_notes` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `application_id` int(11) NOT NULL DEFAULT 0, `note_created` int(11) NOT NULL DEFAULT 0, `note` text DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job_application_notes` -- LOCK TABLES `job_application_notes` WRITE; /*!40000 ALTER TABLE `job_application_notes` DISABLE KEYS */; /*!40000 ALTER TABLE `job_application_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job_applications` -- DROP TABLE IF EXISTS `job_applications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `job_applications` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `job` int(11) NOT NULL, `name` varchar(191) DEFAULT NULL, `email` varchar(191) DEFAULT NULL, `phone` varchar(191) DEFAULT NULL, `profile` varchar(191) DEFAULT NULL, `resume` varchar(191) DEFAULT NULL, `cover_letter` text DEFAULT NULL, `dob` date DEFAULT NULL, `gender` varchar(191) DEFAULT NULL, `address` varchar(191) DEFAULT NULL, `country` varchar(191) DEFAULT NULL, `state` varchar(191) DEFAULT NULL, `city` varchar(191) DEFAULT NULL, `zip_code` varchar(191) DEFAULT NULL, `stage` int(11) NOT NULL DEFAULT 1, `order` int(11) NOT NULL DEFAULT 0, `skill` text DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `is_archive` int(11) NOT NULL DEFAULT 0, `custom_question` text DEFAULT NULL, `terms_condition_check` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job_applications` -- LOCK TABLES `job_applications` WRITE; /*!40000 ALTER TABLE `job_applications` DISABLE KEYS */; /*!40000 ALTER TABLE `job_applications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job_categories` -- DROP TABLE IF EXISTS `job_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `job_categories` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job_categories` -- LOCK TABLES `job_categories` WRITE; /*!40000 ALTER TABLE `job_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `job_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job_on_boards` -- DROP TABLE IF EXISTS `job_on_boards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `job_on_boards` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `application` int(11) NOT NULL, `joining_date` date DEFAULT NULL, `status` varchar(191) DEFAULT NULL, `job_type` varchar(191) DEFAULT NULL, `days_of_week` int(11) DEFAULT NULL, `salary` double(15,2) DEFAULT NULL, `salary_type` varchar(191) DEFAULT NULL, `salary_duration` varchar(191) DEFAULT NULL, `convert_to_employee` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job_on_boards` -- LOCK TABLES `job_on_boards` WRITE; /*!40000 ALTER TABLE `job_on_boards` DISABLE KEYS */; /*!40000 ALTER TABLE `job_on_boards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job_stages` -- DROP TABLE IF EXISTS `job_stages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `job_stages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `order` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job_stages` -- LOCK TABLES `job_stages` WRITE; /*!40000 ALTER TABLE `job_stages` DISABLE KEYS */; INSERT INTO `job_stages` VALUES (1,'Applied',0,2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'Phone Screen',0,2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'Interview',0,2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'Hired',0,2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'Rejected',0,2,'2024-05-29 04:33:16','2024-05-29 04:33:16'); /*!40000 ALTER TABLE `job_stages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jobs` -- DROP TABLE IF EXISTS `jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `description` text DEFAULT NULL, `requirement` text DEFAULT NULL, `terms_and_conditions` text DEFAULT NULL, `branch` int(11) NOT NULL DEFAULT 0, `category` int(11) NOT NULL DEFAULT 0, `skill` text DEFAULT NULL, `position` int(11) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` varchar(191) DEFAULT NULL, `applicant` varchar(191) DEFAULT NULL, `visibility` varchar(191) DEFAULT NULL, `code` varchar(191) DEFAULT NULL, `custom_question` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jobs` -- LOCK TABLES `jobs` WRITE; /*!40000 ALTER TABLE `jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `join_us` -- DROP TABLE IF EXISTS `join_us`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `join_us` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `join_us_email_unique` (`email`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `join_us` -- LOCK TABLES `join_us` WRITE; /*!40000 ALTER TABLE `join_us` DISABLE KEYS */; /*!40000 ALTER TABLE `join_us` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `joining_letters` -- DROP TABLE IF EXISTS `joining_letters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `joining_letters` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(100) NOT NULL, `content` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `joining_letters` -- LOCK TABLES `joining_letters` WRITE; /*!40000 ALTER TABLE `joining_letters` DISABLE KEYS */; INSERT INTO `joining_letters` VALUES (1,'ar','

خطاب الانضمام

\n

{date}

\n

{employee_name}

\n

{address}

\n

الموضوع: موعد لوظيفة {designation}

\n

عزيزي {employee_name} ،

\n

يسعدنا أن نقدم لك منصب {designation} مع {app_name} \"الشركة\" وفقًا للشروط التالية و

\n

الظروف:

\n

1. بدء العمل

\n

سيصبح عملك ساريًا اعتبارًا من {start_date}

\n

2. المسمى الوظيفي

\n

سيكون المسمى الوظيفي الخاص بك هو {designation}.

\n

3. الراتب

\n

سيكون راتبك والمزايا الأخرى على النحو المبين في الجدول 1 ، طيه.

\n

4. مكان الإرسال

\n

سيتم إرسالك إلى {branch}. ومع ذلك ، قد يُطلب منك العمل في أي مكان عمل تمتلكه الشركة ، أو

\n

قد تحصل لاحقًا.

\n

5. ساعات العمل

\n

أيام العمل العادية هي من الاثنين إلى الجمعة. سيُطلب منك العمل لساعات حسب الضرورة لـ

\n

أداء واجباتك على النحو الصحيح تجاه الشركة. ساعات العمل العادية من {start_time} إلى {end_time} وأنت

\n

من المتوقع أن يعمل ما لا يقل عن {total_hours} ساعة كل أسبوع ، وإذا لزم الأمر لساعات إضافية اعتمادًا على

\n

المسؤوليات.

\n

6. الإجازة / العطل

\n

6.1 يحق لك الحصول على إجازة غير رسمية مدتها 12 يومًا.

\n

6.2 يحق لك الحصول على إجازة مرضية مدفوعة الأجر لمدة 12 يوم عمل.

\n

6.3 تخطر الشركة بقائمة الإجازات المعلنة في بداية كل عام.

\n

7. طبيعة الواجبات

\n

ستقوم بأداء أفضل ما لديك من واجبات متأصلة في منصبك ومهام إضافية مثل الشركة

\n

قد يدعوك لأداء ، من وقت لآخر. واجباتك المحددة منصوص عليها في الجدول الثاني بهذه الرسالة.

\n

8. ممتلكات الشركة

\n

ستحافظ دائمًا على ممتلكات الشركة في حالة جيدة ، والتي قد يتم تكليفك بها للاستخدام الرسمي خلال فترة عملها

\n

عملك ، ويجب أن تعيد جميع هذه الممتلكات إلى الشركة قبل التخلي عن الرسوم الخاصة بك ، وإلا فإن التكلفة

\n

نفس الشيء سوف تسترده منك الشركة.

\n

9. الاقتراض / قبول الهدايا

\n

لن تقترض أو تقبل أي أموال أو هدية أو مكافأة أو تعويض مقابل مكاسبك الشخصية من أو تضع نفسك بأي طريقة أخرى

\n

بموجب التزام مالي تجاه أي شخص / عميل قد تكون لديك تعاملات رسمية معه.

\n

10. الإنهاء

\n

10.1 يمكن للشركة إنهاء موعدك ، دون أي سبب ، من خلال إعطائك ما لا يقل عن [إشعار] قبل أشهر

\n

إشعار خطي أو راتب بدلاً منه. لغرض هذا البند ، يقصد بالراتب المرتب الأساسي.

\n

10.2 إنهاء عملك مع الشركة ، دون أي سبب ، من خلال تقديم ما لا يقل عن إشعار الموظف

\n

أشهر الإخطار أو الراتب عن الفترة غير المحفوظة ، المتبقية بعد تعديل الإجازات المعلقة ، كما في التاريخ.

\n

10.3 تحتفظ الشركة بالحق في إنهاء عملك بإيجاز دون أي فترة إشعار أو مدفوعات إنهاء

\n

إذا كان لديه سبب معقول للاعتقاد بأنك مذنب بسوء السلوك أو الإهمال ، أو ارتكبت أي خرق جوهري لـ

\n

العقد ، أو تسبب في أي خسارة للشركة.

\n

10. 4 عند إنهاء عملك لأي سبب من الأسباب ، ستعيد إلى الشركة جميع ممتلكاتك ؛ المستندات و

\n

الأوراق الأصلية ونسخها ، بما في ذلك أي عينات ، وأدبيات ، وعقود ، وسجلات ، وقوائم ، ورسومات ، ومخططات ،

\n

الرسائل والملاحظات والبيانات وما شابه ذلك ؛ والمعلومات السرية التي بحوزتك أو تحت سيطرتك والمتعلقة بك

\n

التوظيف أو الشؤون التجارية للعملاء.

\n

11. المعلومات السرية

\n

11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات

\n

عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو

\n

الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو

\n

الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من

\n

شركة.

\n

11. المعلومات السرية

\n

11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات

\n

عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو

\n

الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو

\n

الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من

\n

شركة.

\n

11.2 يجب عليك دائمًا الحفاظ على أعلى درجة من السرية والحفاظ على سرية السجلات والوثائق وغيرها

\n

المعلومات السرية المتعلقة بأعمال الشركة والتي قد تكون معروفة لك أو مخولة لك بأي وسيلة

\n

ولن تستخدم هذه السجلات والمستندات والمعلومات إلا بالطريقة المصرح بها حسب الأصول لصالح الشركة. إلى عن على

\n

أغراض هذا البند \"المعلومات السرية\" تعني المعلومات المتعلقة بأعمال الشركة وعملائها

\n

التي لا تتوفر لعامة الناس والتي قد تتعلمها أثناء عملك. هذا يشمل،

\n

على سبيل المثال لا الحصر ، المعلومات المتعلقة بالمنظمة وقوائم العملاء وسياسات التوظيف والموظفين والمعلومات

\n

حول منتجات الشركة وعملياتها بما في ذلك الأفكار والمفاهيم والإسقاطات والتكنولوجيا والكتيبات والرسم والتصاميم ،

\n

المواصفات وجميع الأوراق والسير الذاتية والسجلات والمستندات الأخرى التي تحتوي على هذه المعلومات السرية.

\n

11.3 لن تقوم في أي وقت بإزالة أي معلومات سرية من المكتب دون إذن.

\n \n

11.4 واجبك في الحماية وعدم الإفشاء

\n \n

تظل المعلومات السرية سارية بعد انتهاء أو إنهاء هذه الاتفاقية و / أو عملك مع الشركة.

\n \n

11.5 سوف يجعلك خرق شروط هذا البند عرضة للفصل بإجراءات موجزة بموجب الفقرة أعلاه بالإضافة إلى أي

\n \n

أي تعويض آخر قد يكون للشركة ضدك في القانون.

\n \n

12. الإخطارات

\n \n

يجوز لك إرسال إخطارات إلى الشركة على عنوان مكتبها المسجل. يمكن أن ترسل لك الشركة إشعارات على

\n \n

العنوان الذي أشرت إليه في السجلات الرسمية.

\n \n \n \n

13. تطبيق سياسة الشركة

\n \n

يحق للشركة تقديم إعلانات السياسة من وقت لآخر فيما يتعلق بمسائل مثل استحقاق الإجازة والأمومة

\n \n

الإجازة ، ومزايا الموظفين ، وساعات العمل ، وسياسات النقل ، وما إلى ذلك ، ويمكن تغييرها من وقت لآخر وفقًا لتقديرها الخاص.

\n \n

جميع قرارات سياسة الشركة هذه ملزمة لك ويجب أن تلغي هذه الاتفاقية إلى هذا الحد.

\n \n \n \n

14. القانون الحاكم / الاختصاص القضائي

\n \n

يخضع عملك في الشركة لقوانين الدولة. تخضع جميع النزاعات للاختصاص القضائي للمحكمة العليا

\n \n

غوجارات فقط.

\n \n \n \n

15. قبول عرضنا

\n \n

يرجى تأكيد قبولك لعقد العمل هذا من خلال التوقيع وإعادة النسخة المكررة.

\n \n \n \n

نرحب بكم ونتطلع إلى تلقي موافقتكم والعمل معكم.

\n \n \n \n

تفضلوا بقبول فائق الاحترام،

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'da','

Tilslutningsbrev

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n

Emne: Udnævnelse til stillingen som {designation}

\n \n \n \n \n \n \n \n

Kære {employee_name}

\n \n \n \n

Vi er glade for at kunne tilbyde dig stillingen som {designation} hos {app_name} \"Virksomheden\" på følgende vilkår og

\n \n

betingelser:

\n \n \n

1. Påbegyndelse af ansættelse

\n \n

Din ansættelse træder i kraft fra {start_date}

\n \n \n \n

2. Jobtitel

\n \n \n

Din jobtitel vil være {designation}.

\n \n \n \n

3. Løn

\n \n

Din løn og andre goder vil være som angivet i skema 1, hertil.

\n \n \n \n

4. Udstationeringssted

\n \n

Du vil blive slået op på {branch}. Du kan dog blive bedt om at arbejde på ethvert forretningssted, som virksomheden har, eller

\n \n

senere kan erhverve.

\n \n \n

5. Arbejdstimer

\n \n

De normale arbejdsdage er mandag til fredag. Du vil blive forpligtet til at arbejde i de timer, som er nødvendige for

\n \n

behørig varetagelse af dine pligter over for virksomheden. Den normale arbejdstid er fra {start_time} til {end_time}, og det er du

\n \n

forventes at arbejde ikke mindre end {total_hours} timer hver uge, og om nødvendigt yderligere timer afhængigt af din

\n \n

ansvar.

\n \n \n \n

6. Orlov/Ferie

\n \n

6.1 Du har ret til tilfældig ferie på 12 dage.

\n \n

6.2 Du har ret til 12 arbejdsdages sygefravær med løn.

\n \n

6.3 Virksomheden skal meddele en liste over erklærede helligdage i begyndelsen af ​​hvert år.

\n \n \n \n

7. Arbejdsopgavernes art

\n \n

Du vil efter bedste evne udføre alle de opgaver, der er iboende i din stilling og sådanne yderligere opgaver som virksomheden

\n \n

kan opfordre dig til at optræde, fra tid til anden. Dine specifikke pligter er beskrevet i skema II hertil.

\n \n \n

8. Firmaejendom

\n \n

Du vil altid vedligeholde virksomhedens ejendom i god stand, som kan blive overdraget til dig til officiel brug i løbet af

\n \n

din ansættelse, og skal returnere al sådan ejendom til virksomheden, før du opgiver din afgift, i modsat fald vil omkostningerne

\n \n

af samme vil blive inddrevet fra dig af virksomheden.

\n \n \n \n

9. Lån/modtagelse af gaver

\n \n

Du vil ikke låne eller acceptere nogen penge, gave, belønning eller kompensation for dine personlige gevinster fra eller på anden måde placere dig selv

\n \n

under en økonomisk forpligtelse over for enhver person/kunde, som du måtte have officielle forbindelser med.

\n \n

10. Opsigelse

\n \n

10.1 Din ansættelse kan opsiges af virksomheden uden nogen grund ved at give dig mindst [varsel] måneder før

\n \n

skriftligt varsel eller løn i stedet herfor. Ved løn forstås i denne paragraf grundløn.

\n \n

10.2 Du kan opsige dit ansættelsesforhold i virksomheden uden nogen grund ved at give mindst [Medarbejdermeddelelse]

\n \n

måneders forudgående varsel eller løn for den ikke-opsparede periode, tilbage efter regulering af afventende orlov, som på dato.

\n \n

10.3 Virksomheden forbeholder sig retten til at opsige dit ansættelsesforhold midlertidigt uden opsigelsesfrist eller opsigelsesbetaling

\n \n

hvis den har rimelig grund til at tro, at du er skyldig i forseelse eller uagtsomhed, eller har begået et grundlæggende brud på

\n \n

kontrakt, eller forårsaget tab for virksomheden.

\n \n

10. 4 Ved ophør af din ansættelse uanset årsag, vil du returnere al ejendom til virksomheden; dokumenter, og

\n \n

papir, både originale og kopier heraf, inklusive prøver, litteratur, kontrakter, optegnelser, lister, tegninger, tegninger,

\n \n

breve, notater, data og lignende; og fortrolige oplysninger, i din besiddelse eller under din kontrol vedrørende din

\n \n

ansættelse eller til kunders forretningsforhold.

\n

11. Fortrolige oplysninger

\n \n

11. 1 Under din ansættelse i virksomheden vil du bruge al din tid, opmærksomhed og dygtighed efter bedste evne til

\n \n

sin virksomhed. Du må ikke, direkte eller indirekte, engagere eller associere dig med, være forbundet med, bekymret, ansat eller

\n \n

tid eller forfølge et hvilket som helst studieforløb uden forudgående tilladelse fra virksomheden. involveret i anden virksomhed eller

\n \n

aktiviteter eller enhver anden stilling eller arbejde på deltid eller forfølge ethvert studieforløb uden forudgående tilladelse fra

\n \n

Selskab.

\n

11.2 Du skal altid opretholde den højeste grad af fortrolighed og opbevare optegnelser, dokumenter og andre fortrolige oplysninger.

\n \n

Fortrolige oplysninger vedrørende virksomhedens virksomhed, som kan være kendt af dig eller betroet dig på nogen måde

\n \n

og du vil kun bruge sådanne optegnelser, dokumenter og oplysninger på en behørigt autoriseret måde i virksomhedens interesse. Til

\n \n

formålene med denne paragraf \"Fortrolige oplysninger\" betyder oplysninger om virksomhedens og dets kunders forretning

\n \n

som ikke er tilgængelig for offentligheden, og som du kan lære i løbet af din ansættelse. Dette inkluderer,

\n \n

men er ikke begrænset til information vedrørende organisationen, dens kundelister, ansættelsespolitikker, personale og information

\n \n

om virksomhedens produkter, processer, herunder ideer, koncepter, projektioner, teknologi, manualer, tegning, design,

\n \n

specifikationer og alle papirer, CVer, optegnelser og andre dokumenter, der indeholder sådanne fortrolige oplysninger.

\n \n

11.3 Du vil på intet tidspunkt fjerne fortrolige oplysninger fra kontoret uden tilladelse.

\n \n

11.4 Din pligt til at beskytte og ikke oplyse

\n \n

e Fortrolige oplysninger vil overleve udløbet eller opsigelsen af ​​denne aftale og/eller din ansættelse hos virksomheden.

\n \n

11.5 Overtrædelse af betingelserne i denne klausul vil gøre dig ansvarlig for midlertidig afskedigelse i henhold til klausulen ovenfor ud over evt.

\n \n

andre retsmidler, som virksomheden måtte have mod dig i henhold til loven.

\n

12. Meddelelser

\n \n

Meddelelser kan gives af dig til virksomheden på dets registrerede kontoradresse. Meddelelser kan gives af virksomheden til dig på

\n \n

den adresse, du har angivet i de officielle optegnelser.

\n \n \n \n

13. Anvendelse af virksomhedens politik

\n \n

Virksomheden er berettiget til fra tid til anden at afgive politiske erklæringer vedrørende sager som ret til orlov, barsel

\n \n

orlov, ansattes ydelser, arbejdstider, overførselspolitikker osv., og kan ændre det samme fra tid til anden efter eget skøn.

\n \n

Alle sådanne politiske beslutninger fra virksomheden er bindende for dig og tilsidesætter denne aftale i det omfang.

\n \n \n \n

14. Gældende lov/Jurisdiktion

\n \n

Din ansættelse hos virksomheden er underlagt landets love. Alle tvister er underlagt High Courts jurisdiktion

\n \n

Kun Gujarat.

\n \n \n \n

15. Accept af vores tilbud

\n \n

Bekræft venligst din accept af denne ansættelseskontrakt ved at underskrive og returnere kopien.

\n \n \n \n

Vi byder dig velkommen og ser frem til at modtage din accept og til at arbejde sammen med dig.

\n \n \n \n

Venlig hilsen,

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'de','

Beitrittsbrief

\n \n

{date}

\n

{employee_name}

\n

{address}

\n \n \n \n

Betreff: Ernennung für die Stelle von {designation}

\n \n \n \n \n \n \n \n

Sehr geehrter {employee_name},

\n \n \n \n

Wir freuen uns, Ihnen die Position von {designation} bei {app_name} dem „Unternehmen“ zu den folgenden Bedingungen anbieten zu können

\n \n

Bedingungen:

\n \n \n

1. Aufnahme des Arbeitsverhältnisses

\n \n

Ihre Anstellung gilt ab dem {start_date}

\n \n \n

2. Berufsbezeichnung

\n \n

Ihre Berufsbezeichnung lautet {designation}.

\n \n \n

3. Gehalt

\n \n

Ihr Gehalt und andere Leistungen sind in Anhang 1 zu diesem Dokument aufgeführt.

\n \n \n

4. Postort

\n \n

Sie werden bei {branch} eingestellt. Es kann jedoch erforderlich sein, dass Sie an jedem Geschäftssitz arbeiten, den das Unternehmen hat, oder

\n \n

später erwerben kann.

\n \n \n

5. Arbeitszeit

\n

Die normalen Arbeitstage sind Montag bis Freitag. Sie müssen so viele Stunden arbeiten, wie es für die erforderlich ist

\n

ordnungsgemäße Erfüllung Ihrer Pflichten gegenüber dem Unternehmen. Die normalen Arbeitszeiten sind von {start_time} bis {end_time} und Sie sind es

\n

voraussichtlich nicht weniger als {total_hours} Stunden pro Woche arbeiten, und falls erforderlich, abhängig von Ihren zusätzlichen Stunden

\n

Verantwortlichkeiten.

\n \n \n \n

6. Urlaub/Urlaub

\n \n

6.1 Sie haben Anspruch auf Freizeiturlaub von 12 Tagen.

\n \n

6.2 Sie haben Anspruch auf 12 Arbeitstage bezahlten Krankenurlaub.

\n \n

6.3 Das Unternehmen teilt zu Beginn jedes Jahres eine Liste der erklärten Feiertage mit.

\n \n \n \n

7. Art der Pflichten

\n \n

Sie werden alle Aufgaben, die mit Ihrer Funktion verbunden sind, sowie alle zusätzlichen Aufgaben als Unternehmen nach besten Kräften erfüllen

\n \n

kann Sie von Zeit zu Zeit zur Leistung auffordern. Ihre spezifischen Pflichten sind in Anhang II zu diesem Dokument aufgeführt.

\n \n \n \n

8. Firmeneigentum

\n \n

Sie werden das Firmeneigentum, das Ihnen im Laufe der Zeit für offizielle Zwecke anvertraut werden kann, stets in gutem Zustand halten

\n \n

Ihrer Anstellung und muss all dieses Eigentum an das Unternehmen zurückgeben, bevor Sie Ihre Gebühr aufgeben, andernfalls die Kosten

\n \n

derselben werden von der Gesellschaft von Ihnen zurückgefordert.

\n \n \n \n

9. Leihen/Annehmen von Geschenken

\n \n

Sie werden kein Geld, Geschenk, keine Belohnung oder Entschädigung für Ihre persönlichen Gewinne von sich leihen oder annehmen oder sich anderweitig platzieren

\n \n

unter finanzieller Verpflichtung gegenüber Personen/Kunden, mit denen Sie möglicherweise dienstliche Beziehungen unterhalten.

\n \n

10. Kündigung

\n \n

10.1 Ihre Ernennung kann vom Unternehmen ohne Angabe von Gründen gekündigt werden, indem es Ihnen mindestens [Kündigung] Monate im Voraus mitteilt

\n \n

schriftliche Kündigung oder Gehalt statt dessen. Gehalt im Sinne dieser Klausel bedeutet Grundgehalt.

\n \n

10.2 Sie können Ihre Anstellung beim Unternehmen ohne Angabe von Gründen kündigen, indem Sie mindestens [Mitarbeitermitteilung]

\n \n

Kündigungsfrist von Monaten oder Gehalt für den nicht angesparten Zeitraum, der nach Anpassung der anstehenden Urlaubstage übrig bleibt, zum Stichtag.

\n \n

10.3 Das Unternehmen behält sich das Recht vor, Ihr Arbeitsverhältnis ohne Kündigungsfrist oder Abfindungszahlung fristlos zu kündigen

\n \n

wenn es begründeten Anlass zu der Annahme gibt, dass Sie sich eines Fehlverhaltens oder einer Fahrlässigkeit schuldig gemacht haben oder einen wesentlichen Verstoß begangen haben

\n \n

oder dem Unternehmen Verluste verursacht haben.

\n \n

10. 4 Bei Beendigung Ihres Beschäftigungsverhältnisses, aus welchem ​​Grund auch immer, werden Sie sämtliches Eigentum an das Unternehmen zurückgeben; Dokumente und

\n \n

Papier, sowohl Original als auch Kopien davon, einschließlich aller Muster, Literatur, Verträge, Aufzeichnungen, Listen, Zeichnungen, Blaupausen,

\n \n

Briefe, Notizen, Daten und dergleichen; und vertrauliche Informationen, die sich in Ihrem Besitz oder unter Ihrer Kontrolle befinden und sich auf Sie beziehen

\n \n

Beschäftigung oder für die geschäftlichen Angelegenheiten der Kunden.

\n \n

11. Confidential Information

\n \n

11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for

\n \n

its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or

\n \n

time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or

\n \n

activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the

\n \n

Company.

\n \n

11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other 

\n \n

Confidential Information relating to the business of the Company which may be known to you or confided in you by any means

\n \n

and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For

\n \n

the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers

\n \n

which is not available to the general public and which may be learned by you in the course of your employment. This includes,

\n \n

but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information

\n \n

about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, 

\n \n

specifications, and all papers, resumes, records and other documents containing such Confidential Information.

\n \n

11.3 At no time, will you remove any Confidential Information from the office without permission.

\n \n

11.4 Your duty to safeguard and not disclos

\n \n

e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.

\n \n

11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any

\n \n

other remedy the Company may have against you in law.

\n

12. Notices

\n \n

Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at

\n \n

the address intimated by you in the official records.

\n \n \n \n

13. Applicability of Company Policy

\n \n

The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity

\n \n

leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.

\n \n

All such policy decisions of the Company shall be binding on you and shall override this Agreement to that  extent.

\n \n \n \n

14. Governing Law/Jurisdiction

\n \n

Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court

\n \n

Gujarat only.

\n \n \n \n

15. Acceptance of our offer

\n \n

Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.

\n \n \n \n

We welcome you and look forward to receiving your acceptance and to working with you.

\n \n \n \n

Yours Sincerely,

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'en','

Joining Letter

\n

{date}

\n

{employee_name}

\n

{address}

\n

Subject: Appointment for the post of {designation}

\n

Dear {employee_name},

\n

We are pleased to offer you the position of {designation} with {app_name} theCompany on the following terms and

\n

conditions:

\n

1. Commencement of employment

\n

Your employment will be effective, as of {start_date}

\n

2. Job title

\n

Your job title will be{designation}.

\n

3. Salary

\n

Your salary and other benefits will be as set out in Schedule 1, hereto.

\n

4. Place of posting

\n

You will be posted at {branch}. You may however be required to work at any place of business which the Company has, or

\n

may later acquire.

\n

5. Hours of Work

\n

The normal working days are Monday through Friday. You will be required to work for such hours as necessary for the

\n

proper discharge of your duties to the Company. The normal working hours are from {start_time} to {end_time} and you are

\n

expected to work not less than {total_hours} hours each week, and if necessary for additional hours depending on your

\n

responsibilities.

\n

6. Leave/Holidays

\n

6.1 You are entitled to casual leave of 12 days.

\n

6.2 You are entitled to 12 working days of paid sick leave.

\n

6.3 The Company shall notify a list of declared holidays at the beginning of each year.

\n

7. Nature of duties

\n

You will perform to the best of your ability all the duties as are inherent in your post and such additional duties as the company

\n

may call upon you to perform, from time to time. Your specific duties are set out in Schedule II hereto.

\n

8. Company property

\n

You will always maintain in good condition Company property, which may be entrusted to you for official use during the course of

\n

your employment, and shall return all such property to the Company prior to relinquishment of your charge, failing which the cost

\n

of the same will be recovered from you by the Company.

\n

9. Borrowing/accepting gifts

\n

You will not borrow or accept any money, gift, reward, or compensation for your personal gains from or otherwise place yourself

\n

under pecuniary obligation to any person/client with whom you may be having official dealings.

\n

10. Termination

\n

10.1 Your appointment can be terminated by the Company, without any reason, by giving you not less than [Notice] months prior

\n

notice in writing or salary in lieu thereof. For the purpose of this clause, salary shall mean basic salary.

\n

10.2 You may terminate your employment with the Company, without any cause, by giving no less than [Employee Notice]

\n

months prior notice or salary for the unsaved period, left after adjustment of pending leaves, as on date.

\n

10.3 The Company reserves the right to terminate your employment summarily without any notice period or termination payment

\n

if it has reasonable ground to believe you are guilty of misconduct or negligence, or have committed any fundamental breach of

\n

contract, or caused any loss to the Company.

\n

10. 4 On the termination of your employment for whatever reason, you will return to the Company all property; documents, and

\n

paper, both original and copies thereof, including any samples, literature, contracts, records, lists, drawings, blueprints,

\n

letters, notes, data and the like; and Confidential Information, in your possession or under your control relating to your

\n

employment or to clients business affairs.

\n

11. Confidential Information

\n

11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for

\n

its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or

\n

time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or

\n

activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the

\n

Company.

\n

11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other

\n

Confidential Information relating to the business of the Company which may be known to you or confided in you by any means

\n

and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For

\n

the purposes of this clauseConfidential Information means information about the Companys business and that of its customers

\n

which is not available to the general public and which may be learned by you in the course of your employment. This includes,

\n

but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information

\n

about the Companys products, processes including ideas, concepts, projections, technology, manuals, drawing, designs,

\n

specifications, and all papers, resumes, records and other documents containing such Confidential Information.

\n

11.3 At no time, will you remove any Confidential Information from the office without permission.

\n

11.4 Your duty to safeguard and not disclos

\n

e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.

\n

11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any

\n

other remedy the Company may have against you in law.

\n

12. Notices

\n

Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at

\n

the address intimated by you in the official records.

\n

13. Applicability of Company Policy

\n

The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity

\n

leave, employees benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.

\n

All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.

\n

14. Governing Law/Jurisdiction

\n

Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court

\n

Gujarat only.

\n

15. Acceptance of our offer

\n

Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.

\n

We welcome you and look forward to receiving your acceptance and to working with you.

\n

Yours Sincerely,

\n

{app_name}

\n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'es','

Carta de unión

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n \n \n

Asunto: Nombramiento para el puesto de {designation}

\n \n \n \n

Estimado {employee_name},

\n \n

Nos complace ofrecerle el puesto de {designation} con {app_name}, la Compañía en los siguientes términos y

\n \n

condiciones:

\n \n \n

1. Comienzo del empleo

\n \n

Su empleo será efectivo a partir del {start_date}

\n \n \n

2. Título del trabajo

\n

El título de su trabajo será {designation}.

\n \n

3. Salario

\n \n

Su salario y otros beneficios serán los establecidos en el Anexo 1 del presente.

\n \n \n

4. Lugar de destino

\n

Se le publicará en {branch}. Sin embargo, es posible que deba trabajar en cualquier lugar de negocios que tenga la Compañía, o

\n \n

puede adquirir posteriormente.

\n \n \n \n

5. Horas de trabajo

\n \n

Los días normales de trabajo son de lunes a viernes. Se le pedirá que trabaje las horas que sean necesarias para el

\n \n

cumplimiento adecuado de sus deberes para con la Compañía. El horario normal de trabajo es de {start_time} a {end_time} y usted está

\n \n

se espera que trabaje no menos de {total_hours} horas cada semana y, si es necesario, horas adicionales dependiendo de su

\n \n

responsabilidades.

\n \n \n \n

6. Licencia/Vacaciones

\n \n

6.1 Tiene derecho a un permiso eventual de 12 días.

\n \n

6.2 Tiene derecho a 12 días laborables de baja por enfermedad remunerada.

\n \n

6.3 La Compañía deberá notificar una lista de días festivos declarados al comienzo de cada año.

\n \n \n \n

7. Naturaleza de los deberes

\n \n

Desempeñará lo mejor que pueda todas las funciones inherentes a su puesto y aquellas funciones adicionales que la empresa

\n \n

puede pedirte que actúes, de vez en cuando. Sus deberes específicos se establecen en el Anexo II del presente.

\n \n \n \n

8. Propiedad de la empresa

\n \n

Siempre mantendrá en buenas condiciones la propiedad de la Compañía, que se le puede confiar para uso oficial durante el curso de

\n \n

su empleo, y devolverá todos esos bienes a la Compañía antes de renunciar a su cargo, en caso contrario, el costo

\n \n

de la misma será recuperada de usted por la Compañía.

\n \n \n \n

9. Tomar prestado/aceptar regalos

\n \n

No pedirá prestado ni aceptará dinero, obsequios, recompensas o compensaciones por sus ganancias personales o se colocará de otra manera

\n \n

bajo obligación pecuniaria a cualquier persona/cliente con quien pueda tener tratos oficiales.

\n

10. Terminación

\n \n

10.1 Su nombramiento puede ser rescindido por la Compañía, sin ningún motivo, al darle no menos de [Aviso] meses antes

\n \n

aviso por escrito o salario en su lugar. Para los efectos de esta cláusula, se entenderá por salario el salario base.

\n \n

10.2 Puede rescindir su empleo con la Compañía, sin ninguna causa, dando no menos de [Aviso al empleado]

\n \n

meses de preaviso o salario por el período no ahorrado, remanente después del ajuste de licencias pendientes, a la fecha.

\n \n

10.3 La Compañía se reserva el derecho de rescindir su empleo sumariamente sin ningún período de preaviso o pago por rescisión

\n \n

si tiene motivos razonables para creer que usted es culpable de mala conducta o negligencia, o ha cometido una violación fundamental de

\n \n

contrato, o causado cualquier pérdida a la Compañía.

\n \n

10. 4 A la terminación de su empleo por cualquier motivo, devolverá a la Compañía todos los bienes; documentos, y

\n \n

papel, tanto en original como en copia del mismo, incluyendo cualquier muestra, literatura, contratos, registros, listas, dibujos, planos,

\n \n

cartas, notas, datos y similares; e Información confidencial, en su posesión o bajo su control en relación con su

\n \n

empleo o a los asuntos comerciales de los clientes.

\n

11. Información confidencial

\n \n

11. 1 Durante su empleo en la Compañía, dedicará todo su tiempo, atención y habilidad lo mejor que pueda para

\n \n

son negocios. Usted no deberá, directa o indirectamente, comprometerse o asociarse con, estar conectado, interesado, empleado o

\n \n

tiempo o seguir cualquier curso de estudio, sin el permiso previo de la Compañía. participar en cualquier otro negocio o

\n \n

actividades o cualquier otro puesto o trabajo a tiempo parcial o seguir cualquier curso de estudio, sin el permiso previo de la

\n \n

Compañía.

\n \n

11.2 Siempre debe mantener el más alto grado de confidencialidad y mantener como confidenciales los registros, documentos y otros

\n \n

Información confidencial relacionada con el negocio de la Compañía que usted pueda conocer o confiarle por cualquier medio

\n \n

y utilizará dichos registros, documentos e información solo de manera debidamente autorizada en interés de la Compañía. Para

\n \n

A los efectos de esta cláusula, \"Información confidencial\" significa información sobre el negocio de la Compañía y el de sus clientes.

\n \n

que no está disponible para el público en general y que usted puede aprender en el curso de su empleo. Esto incluye,

\n \n

pero no se limita a, información relacionada con la organización, sus listas de clientes, políticas de empleo, personal e información

\n \n

sobre los productos de la Compañía, procesos que incluyen ideas, conceptos, proyecciones, tecnología, manuales, dibujos, diseños,

\n \n

especificaciones, y todos los papeles, currículos, registros y otros documentos que contengan dicha Información Confidencial.

\n \n

11.3 En ningún momento, sacará ninguna Información Confidencial de la oficina sin permiso.

\n \n

11.4 Su deber de salvaguardar y no divulgar

\n \n

La Información Confidencial sobrevivirá a la expiración o terminación de este Acuerdo y/o su empleo con la Compañía.

\n \n

11.5 El incumplimiento de las condiciones de esta cláusula le hará pasible de despido sumario en virtud de la cláusula anterior además de cualquier

\n \n

otro recurso que la Compañía pueda tener contra usted por ley.

\n

12. Avisos

\n \n

Usted puede enviar notificaciones a la Compañía a su domicilio social. La Compañía puede enviarle notificaciones a usted en

\n \n

la dirección indicada por usted en los registros oficiales.

\n \n \n \n

13. Aplicabilidad de la política de la empresa

\n \n

La Compañía tendrá derecho a hacer declaraciones de política de vez en cuando relacionadas con asuntos como el derecho a licencia, maternidad

\n \n

licencia, beneficios de los empleados, horas de trabajo, políticas de transferencia, etc., y puede modificarlas de vez en cuando a su sola discreción.

\n \n

Todas las decisiones políticas de la Compañía serán vinculantes para usted y anularán este Acuerdo en esa medida.

\n \n \n \n

14. Ley aplicable/Jurisdicción

\n \n

Su empleo con la Compañía está sujeto a las leyes del País. Todas las disputas estarán sujetas a la jurisdicción del Tribunal Superior

\n \n

Sólo Gujarat.

\n \n \n \n

15. Aceptación de nuestra oferta

\n \n

Por favor, confirme su aceptación de este Contrato de Empleo firmando y devolviendo el duplicado.

\n \n \n \n

Le damos la bienvenida y esperamos recibir su aceptación y trabajar con usted.

\n \n \n \n

Tuyo sinceramente,

\n \n

{app_name}

\n \n

{date}

\n ',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,'fr','

Lettre dadhésion

\n \n \n

{date}

\n \n

{employee_name}

\n

{address}

\n \n \n

Objet : Nomination pour le poste de {designation}

\n \n \n \n

Cher {employee_name},

\n \n \n

Nous sommes heureux de vous proposer le poste de {designation} avec {app_name} la \"Société\" selon les conditions suivantes et

\n \n

les conditions:

\n \n

1. Entrée en fonction

\n \n

Votre emploi sera effectif à partir du {start_date}

\n \n \n \n

2. Intitulé du poste

\n \n

Votre titre de poste sera {designation}.

\n \n \n \n

3. Salaire

\n \n

Votre salaire et vos autres avantages seront tels quindiqués à lannexe 1 ci-jointe.

\n \n \n

4. Lieu de détachement

\n

Vous serez affecté à {branch}. Vous pouvez cependant être tenu de travailler dans nimporte quel lieu daffaires que la Société a, ou

\n \n

pourra acquérir plus tard.

\n \n \n \n

5. Heures de travail

\n \n

Les jours ouvrables normaux sont du lundi au vendredi. Vous devrez travailler les heures nécessaires à la

\n \n

lexercice correct de vos fonctions envers la Société. Les heures normales de travail vont de {start_time} à {end_time} et vous êtes

\n \n

devrait travailler au moins {total_hours} heures par semaine, et si nécessaire des heures supplémentaires en fonction de votre

\n \n

responsabilités.

\n \n

6. Congés/Vacances

\n \n

6.1 Vous avez droit à un congé occasionnel de 12 jours.

\n \n

6.2 Vous avez droit à 12 jours ouvrables de congé de maladie payé.

\n \n

6.3 La Société communiquera une liste des jours fériés déclarés au début de chaque année.

\n \n \n \n

7. Nature des fonctions

\n \n

Vous exécuterez au mieux de vos capacités toutes les tâches inhérentes à votre poste et les tâches supplémentaires que lentreprise

\n \n

peut faire appel à vous pour effectuer, de temps à autre. Vos fonctions spécifiques sont énoncées à lannexe II ci-jointe.

\n \n \n \n

8. Biens sociaux

\n \n

Vous maintiendrez toujours en bon état les biens de la Société, qui peuvent vous être confiés pour un usage officiel au cours de votre

\n \n

votre emploi, et doit restituer tous ces biens à la Société avant labandon de votre charge, à défaut de quoi le coût

\n \n

de même seront récupérés auprès de vous par la Société.

\n \n \n \n

9. Emprunter/accepter des cadeaux

\n \n

Vous nemprunterez ni naccepterez dargent, de cadeau, de récompense ou de compensation pour vos gains personnels ou vous placerez autrement

\n \n

sous obligation pécuniaire envers toute personne/client avec qui vous pourriez avoir des relations officielles.

\n

10. Résiliation

\n \n

10.1 Votre nomination peut être résiliée par la Société, sans aucune raison, en vous donnant au moins [Préavis] mois avant

\n \n

un préavis écrit ou un salaire en tenant lieu. Aux fins de la présente clause, salaire sentend du salaire de base.

\n \n

10.2 Vous pouvez résilier votre emploi au sein de la Société, sans motif, en donnant au moins [Avis à lemployé]

\n \n

mois de préavis ou de salaire pour la période non épargnée, restant après régularisation des congés en attente, à la date.

\n \n

10.3 La Société se réserve le droit de résilier votre emploi sans préavis ni indemnité de licenciement.

\n \n

sil a des motifs raisonnables de croire que vous êtes coupable dinconduite ou de négligence, ou que vous avez commis une violation fondamentale de

\n \n

contrat, ou causé une perte à la Société.

\n \n

10. 4 À la fin de votre emploi pour quelque raison que ce soit, vous restituerez à la Société tous les biens ; document, et

\n \n

papier, à la fois loriginal et les copies de celui-ci, y compris les échantillons, la littérature, les contrats, les dossiers, les listes, les dessins, les plans,

\n \n

lettres, notes, données et similaires; et Informations confidentielles, en votre possession ou sous votre contrôle relatives à votre

\n \n

lemploi ou aux affaires commerciales des clients.

\n

11. Informations confidentielles

\n \n

11. 1 Au cours de votre emploi au sein de la Société, vous consacrerez tout votre temps, votre attention et vos compétences au mieux de vos capacités pour

\n \n

son affaire. Vous ne devez pas, directement ou indirectement, vous engager ou vous associer à, être lié à, concerné, employé ou

\n \n

temps ou poursuivre quelque programme détudes que ce soit, sans lautorisation préalable de la Société. engagé dans toute autre entreprise ou

\n \n

activités ou tout autre poste ou travail à temps partiel ou poursuivre des études quelconques, sans lautorisation préalable du

\n \n

Compagnie.

\n \n

11.2 Vous devez toujours maintenir le plus haut degré de confidentialité et garder confidentiels les dossiers, documents et autres

\n \n

Informations confidentielles relatives à lactivité de la Société dont vous pourriez avoir connaissance ou qui vous seraient confiées par tout moyen

\n \n

et vous nutiliserez ces registres, documents et informations que dune manière dûment autorisée dans lintérêt de la Société. Pour

\n \n

aux fins de la présente clause « Informations confidentielles » désigne les informations sur les activités de la Société et celles de ses clients

\n \n

qui nest pas accessible au grand public et dont vous pourriez avoir connaissance dans le cadre de votre emploi. Ceci comprend,

\n \n

mais sans sy limiter, les informations relatives à lorganisation, ses listes de clients, ses politiques demploi, son personnel et les informations

\n \n

sur les produits, les processus de la Société, y compris les idées, les concepts, les projections, la technologie, les manuels, les dessins, les conceptions,

\n \n

spécifications, et tous les papiers, curriculum vitae, dossiers et autres documents contenant de telles informations confidentielles.

\n \n

11.3 À aucun moment, vous ne retirerez des informations confidentielles du bureau sans autorisation.

\n \n

11.4 Votre devoir de protéger et de ne pas divulguer

\n \n

Les Informations confidentielles survivront à lexpiration ou à la résiliation du présent Contrat et/ou à votre emploi au sein de la Société.

\n \n

11.5 La violation des conditions de cette clause vous rendra passible dun renvoi sans préavis en vertu de la clause ci-dessus en plus de tout

\n \n

autre recours que la Société peut avoir contre vous en droit.

\n

12. Avis

\n \n

Des avis peuvent être donnés par vous à la Société à ladresse de son siège social. Des avis peuvent vous être donnés par la Société à

\n \n

ladresse que vous avez indiquée dans les registres officiels.

\n \n \n \n

13. Applicabilité de la politique de lentreprise

\n \n

La Société est autorisée à faire des déclarations de politique de temps à autre concernant des questions telles que le droit aux congés, la maternité

\n \n

les congés, les avantages sociaux des employés, les heures de travail, les politiques de transfert, etc., et peut les modifier de temps à autre à sa seule discrétion.

\n \n

Toutes ces décisions politiques de la Société vous lieront et prévaudront sur le présent Contrat dans cette mesure.

\n \n \n \n

14. Droit applicable/juridiction

\n \n

Votre emploi au sein de la Société est soumis aux lois du pays. Tous les litiges seront soumis à la compétence du tribunal de grande instance

\n \n

Gujarat uniquement.

\n \n \n \n

15. Acceptation de notre offre

\n \n

Veuillez confirmer votre acceptation de ce contrat de travail en signant et en renvoyant le duplicata.

\n \n \n \n

Nous vous souhaitons la bienvenue et nous nous réjouissons de recevoir votre acceptation et de travailler avec vous.

\n \n \n \n

Cordialement,

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,'id','

Surat Bergabung

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n \n \n

Perihal: Pengangkatan untuk jabatan {designation}

\n \n \n

{employee_name} yang terhormat,

\n \n

Kami dengan senang hati menawarkan kepada Anda, posisi {designation} dengan {app_name} sebagai Perusahaan dengan persyaratan dan

\n \n

kondisi:

\n \n \n \n

1. Mulai bekerja

\n \n

Pekerjaan Anda akan efektif, mulai {start_date}

\n \n \n

2. Jabatan

\n

Jabatan Anda adalah {designation}.

\n \n

3. Gaji

\n

Gaji Anda dan tunjangan lainnya akan diatur dalam Jadwal 1, di sini.

\n \n \n

4. Tempat posting

\n \n

Anda akan diposkan di {branch}. Namun Anda mungkin diminta untuk bekerja di tempat bisnis mana pun yang dimiliki Perusahaan, atau

\n \n

nantinya dapat memperoleh.

\n \n \n \n

5. Jam Kerja

\n \n

Hari kerja normal adalah Senin sampai Jumat. Anda akan diminta untuk bekerja selama jam-jam yang diperlukan untuk

\n \n

pelaksanaan tugas Anda dengan benar di Perusahaan. Jam kerja normal adalah dari {start_time} hingga {end_time} dan Anda

\n \n

diharapkan bekerja tidak kurang dari {total_hours} jam setiap minggu, dan jika perlu untuk jam tambahan tergantung pada

\n \n

tanggung jawab.

\n \n \n \n

6. Cuti/Libur

\n \n

6.1 Anda berhak atas cuti biasa selama 12 hari.

\n \n

6.2 Anda berhak atas 12 hari kerja cuti sakit berbayar.

\n \n

6.3 Perusahaan akan memberitahukan daftar hari libur yang diumumkan pada awal setiap tahun.

\n \n \n \n

7. Sifat tugas

\n \n

Anda akan melakukan yang terbaik dari kemampuan Anda semua tugas yang melekat pada jabatan Anda dan tugas tambahan seperti perusahaan

\n \n

dapat memanggil Anda untuk tampil, dari waktu ke waktu. Tugas khusus Anda ditetapkan dalam Jadwal II di sini.

\n \n \n \n

8. Properti perusahaan

\n \n

Anda akan selalu menjaga properti Perusahaan dalam kondisi baik, yang dapat dipercayakan kepada Anda untuk penggunaan resmi selama

\n \n

pekerjaan Anda, dan akan mengembalikan semua properti tersebut kepada Perusahaan sebelum melepaskan biaya Anda, jika tidak ada biayanya

\n \n

yang sama akan dipulihkan dari Anda oleh Perusahaan.

\n \n \n \n

9. Meminjam/menerima hadiah

\n \n

Anda tidak akan meminjam atau menerima uang, hadiah, hadiah, atau kompensasi apa pun untuk keuntungan pribadi Anda dari atau dengan cara lain menempatkan diri Anda sendiri

\n \n

di bawah kewajiban uang kepada setiap orang/klien dengan siapa Anda mungkin memiliki hubungan resmi.

\n

10. Penghentian

\n \n

10.1 Penunjukan Anda dapat diakhiri oleh Perusahaan, tanpa alasan apa pun, dengan memberi Anda tidak kurang dari [Pemberitahuan] bulan sebelumnya

\n \n

pemberitahuan secara tertulis atau gaji sebagai penggantinya. Untuk maksud pasal ini, gaji berarti gaji pokok.

\n \n

10.2 Anda dapat memutuskan hubungan kerja Anda dengan Perusahaan, tanpa alasan apa pun, dengan memberikan tidak kurang dari [Pemberitahuan Karyawan]

\n \n

pemberitahuan atau gaji bulan sebelumnya untuk periode yang belum disimpan, yang tersisa setelah penyesuaian cuti yang tertunda, pada tanggal.

\n \n

10.3 Perusahaan berhak untuk mengakhiri hubungan kerja Anda dengan segera tanpa pemberitahuan jangka waktu atau pembayaran pemutusan hubungan kerja

\n \n

jika memiliki alasan yang masuk akal untuk meyakini bahwa Anda bersalah atas kesalahan atau kelalaian, atau telah melakukan pelanggaran mendasar apa pun terhadap

\n \n

kontrak, atau menyebabkan kerugian bagi Perusahaan.

\n \n

10. 4 Pada pemutusan hubungan kerja Anda karena alasan apa pun, Anda akan mengembalikan semua properti kepada Perusahaan; dokumen, dan

\n \n

kertas, baik asli maupun salinannya, termasuk contoh, literatur, kontrak, catatan, daftar, gambar, cetak biru,

\n \n

surat, catatan, data dan sejenisnya; dan Informasi Rahasia, yang Anda miliki atau di bawah kendali Anda terkait dengan

\n \n

pekerjaan atau untuk urusan bisnis klien.

\n

11. Informasi Rahasia

\n \n

11. 1 Selama bekerja di Perusahaan, Anda akan mencurahkan seluruh waktu, perhatian, dan keterampilan Anda sebaik mungkin untuk

\n \n

bisnisnya. Anda tidak boleh, secara langsung atau tidak langsung, terlibat atau mengasosiasikan diri Anda dengan, terhubung dengan, terkait, dipekerjakan, atau

\n \n

waktu atau mengikuti program studi apapun, tanpa izin sebelumnya dari Perusahaan.terlibat dalam bisnis lain atau

\n \n

kegiatan atau pos atau pekerjaan paruh waktu lainnya atau mengejar program studi apa pun, tanpa izin sebelumnya dari

\n \n

Perusahaan.

\n \n

11.2 Anda harus selalu menjaga tingkat kerahasiaan tertinggi dan merahasiakan catatan, dokumen, dan lainnya

\n \n

Informasi Rahasia yang berkaitan dengan bisnis Perusahaan yang mungkin Anda ketahui atau rahasiakan kepada Anda dengan cara apa pun

\n \n

dan Anda akan menggunakan catatan, dokumen, dan informasi tersebut hanya dengan cara yang sah untuk kepentingan Perusahaan. Untuk

\n \n

tujuan klausul ini Informasi Rahasia berarti informasi tentang bisnis Perusahaan dan pelanggannya

\n \n

yang tidak tersedia untuk masyarakat umum dan yang mungkin Anda pelajari selama masa kerja Anda. Ini termasuk,

\n \n

tetapi tidak terbatas pada, informasi yang berkaitan dengan organisasi, daftar pelanggannya, kebijakan ketenagakerjaan, personel, dan informasi

\n \n

tentang produk Perusahaan, proses termasuk ide, konsep, proyeksi, teknologi, manual, gambar, desain,

\n \n

spesifikasi, dan semua makalah, resume, catatan dan dokumen lain yang berisi Informasi Rahasia tersebut.

\n \n

11.3 Kapan pun Anda akan menghapus Informasi Rahasia apa pun dari kantor tanpa izin.

\n \n

11.4 Kewajiban Anda untuk melindungi dan tidak mengungkapkan

\n \n

e Informasi Rahasia akan tetap berlaku setelah berakhirnya atau pengakhiran Perjanjian ini dan/atau hubungan kerja Anda dengan Perusahaan.

\n \n

11.5 Pelanggaran terhadap ketentuan klausul ini akan membuat Anda bertanggung jawab atas pemecatan singkat berdasarkan klausul di atas selain dari:

\n \n

upaya hukum lain yang mungkin dimiliki Perusahaan terhadap Anda secara hukum.

\n

12. Pemberitahuan

\n \n

Pemberitahuan dapat diberikan oleh Anda kepada Perusahaan di alamat kantor terdaftarnya. Pemberitahuan dapat diberikan oleh Perusahaan kepada Anda di

\n \n

alamat yang diberitahukan oleh Anda dalam catatan resmi.

\n \n \n \n

13. Keberlakuan Kebijakan Perusahaan

\n \n

Perusahaan berhak untuk membuat pernyataan kebijakan dari waktu ke waktu berkaitan dengan hal-hal seperti hak cuti, persalinan

\n \n

cuti, tunjangan karyawan, jam kerja, kebijakan transfer, dll., dan dapat mengubahnya dari waktu ke waktu atas kebijakannya sendiri.

\n \n

Semua keputusan kebijakan Perusahaan tersebut akan mengikat Anda dan akan mengesampingkan Perjanjian ini sejauh itu.

\n \n \n \n

14. Hukum/Yurisdiksi yang Mengatur

\n \n

Pekerjaan Anda dengan Perusahaan tunduk pada undang-undang Negara. Semua perselisihan akan tunduk pada yurisdiksi Pengadilan Tinggi

\n \n

Gujarat saja.

\n \n \n \n

15. Penerimaan penawaran kami

\n \n

Harap konfirmasikan penerimaan Anda atas Kontrak Kerja ini dengan menandatangani dan mengembalikan salinan duplikatnya.

\n \n \n \n

Kami menyambut Anda dan berharap untuk menerima penerimaan Anda dan bekerja sama dengan Anda.

\n \n \n \n

Dengan hormat,

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,'it','

Lettera di adesione

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n

Oggetto: Appuntamento alla carica di {designation}

\n \n \n

Gentile {employee_name},

\n \n

Siamo lieti di offrirti la posizione di {designation} con {app_name} la \"Società\" alle seguenti condizioni e

\n \n

condizioni:

\n \n \n

1. Inizio del rapporto di lavoro

\n \n

Il tuo impiego sarà effettivo a partire da {start_date}

\n \n \n \n

2. Titolo di lavoro

\n \n

Il tuo titolo di lavoro sarà {designation}.

\n \n

3. Stipendio

\n \n

Il tuo stipendio e altri benefici saranno come indicato nellAllegato 1, qui di seguito.

\n \n \n \n

4. Luogo di invio

\n \n

Sarai inviato a {branch}. Tuttavia, potrebbe essere richiesto di lavorare in qualsiasi luogo di attività che la Società ha, o

\n \n

potrà successivamente acquisire.

\n \n \n \n

5. Orario di lavoro

\n \n

I normali giorni lavorativi sono dal lunedì al venerdì. Ti verrà richiesto di lavorare per le ore necessarie per il

\n \n

corretto adempimento dei propri doveri nei confronti della Società. Lorario di lavoro normale va da {start_time} a {end_time} e tu lo sei

\n \n

dovrebbe lavorare non meno di {total_hours} ore ogni settimana e, se necessario, per ore aggiuntive a seconda del tuo

\n \n

responsabilità.

\n \n \n \n

6. Permessi/Festività

\n \n

6.1 Hai diritto a un congedo occasionale di 12 giorni.

\n \n

6.2 Hai diritto a 12 giorni lavorativi di congedo per malattia retribuito.

\n \n

6.3 La Società comunica allinizio di ogni anno un elenco delle festività dichiarate.

\n \n \n \n

7. Natura degli incarichi

\n \n

Eseguirai al meglio delle tue capacità tutti i compiti inerenti al tuo incarico e compiti aggiuntivi come lazienda

\n \n

può invitarti a esibirti, di tanto in tanto. I tuoi doveri specifici sono stabiliti nellAllegato II del presente documento.

\n \n \n \n

8. Proprietà aziendale

\n \n

Manterrete sempre in buono stato i beni dellAzienda, che nel corso dellanno potrebbero esservi affidati per uso ufficiale

\n \n

il tuo impiego, e restituirà tutte queste proprietà alla Società prima della rinuncia al tuo addebito, in caso contrario il costo

\n \n

degli stessi saranno da voi recuperati dalla Società.

\n \n \n \n

9. Prendere in prestito/accettare regali

\n \n

Non prenderai in prestito né accetterai denaro, dono, ricompensa o compenso per i tuoi guadagni personali da o altrimenti collocato te stesso

\n \n

sotto obbligazione pecuniaria nei confronti di qualsiasi persona/cliente con cui potresti avere rapporti ufficiali.

\n

10. Cessazione

\n \n

10.1 Il tuo incarico può essere risolto dalla Società, senza alcun motivo, dandoti non meno di [Avviso] mesi prima

\n \n

avviso scritto o stipendio in sostituzione di esso. Ai fini della presente clausola, per stipendio si intende lo stipendio base.

\n \n

10.2 È possibile terminare il proprio rapporto di lavoro con la Società, senza alcuna causa, fornendo non meno di [Avviso per il dipendente]

\n \n

mesi di preavviso o stipendio per il periodo non risparmiato, lasciato dopo ladeguamento delle ferie pendenti, come alla data.

\n \n

10.3 La Società si riserva il diritto di terminare il rapporto di lavoro sommariamente senza alcun periodo di preavviso o pagamento di cessazione

\n \n

se ha fondati motivi per ritenere che tu sia colpevole di cattiva condotta o negligenza, o abbia commesso una violazione fondamentale

\n \n

contratto, o ha causato danni alla Società.

\n \n

10. 4 Alla cessazione del rapporto di lavoro per qualsiasi motivo, restituirete alla Società tutti i beni; documenti, e

\n \n

carta, sia in originale che in copia, inclusi eventuali campioni, letteratura, contratti, registrazioni, elenchi, disegni, progetti,

\n \n

lettere, note, dati e simili; e Informazioni Riservate, in tuo possesso o sotto il tuo controllo, relative alla tua

\n \n

lavoro o agli affari dei clienti.

\n

11. Confidential Information

\n \n

11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for

\n \n

its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or

\n \n

time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or

\n \n

activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the

\n \n

Company.

\n \n

11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other 

\n \n

Confidential Information relating to the business of the Company which may be known to you or confided in you by any means

\n \n

and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For

\n \n

the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers

\n \n

which is not available to the general public and which may be learned by you in the course of your employment. This includes,

\n \n

but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information

\n \n

about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, 

\n \n

specifications, and all papers, resumes, records and other documents containing such Confidential Information.

\n \n

11.3 At no time, will you remove any Confidential Information from the office without permission.

\n \n

11.4 Your duty to safeguard and not disclos

\n \n

e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.

\n \n

11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any

\n \n

other remedy the Company may have against you in law.

\n

12. Notices

\n \n

Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at

\n \n

the address intimated by you in the official records.

\n \n \n \n

13. Applicability of Company Policy

\n \n

The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity

\n \n

leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.

\n \n

All such policy decisions of the Company shall be binding on you and shall override this Agreement to that  extent.

\n \n \n \n

14. Governing Law/Jurisdiction

\n \n

Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court

\n \n

Gujarat only.

\n \n \n \n

15. Acceptance of our offer

\n \n

Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.

\n \n \n \n

We welcome you and look forward to receiving your acceptance and to working with you.

\n \n \n \n

Yours Sincerely,

\n \n

{app_name}

\n \n

{date}

\n ',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,'ja','

入会の手紙

\n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n \n \n

件名: {designation} の役職への任命

\n \n \n \n

{employee_name} 様

\n \n \n

{app_name} の {designation} の地位を以下の条件で「会社」として提供できることをうれしく思います。

\n \n

条件:

\n \n \n

1. 雇用開始

\n \n

あなたの雇用は {start_date} から有効になります

\n \n \n

2. 役職

\n \n

あなたの役職は{designation}になります。

\n \n \n

3. 給与

\n \n

あなたの給与およびその他の福利厚生は、本明細書のスケジュール 1 に記載されているとおりです。

\n \n \n

4. 掲示場所

\n \n

{branch} に掲載されます。ただし、会社が所有する事業所で働く必要がある場合があります。

\n \n

後で取得する場合があります。

\n \n \n \n

5. 労働時間

\n \n

通常の営業日は月曜日から金曜日です。あなたは、そのために必要な時間働く必要があります。

\n \n

会社に対するあなたの義務の適切な遂行。通常の勤務時間は {start_time} から {end_time} までで、あなたは

\n \n

毎週 {total_hours} 時間以上の勤務が期待される

\n \n

責任。

\n \n \n \n

6.休暇・休日

\n \n

6.1 12 日間の臨時休暇を取得する権利があります。

\n \n

6.2 12 日間の有給病気休暇を取る権利があります。

\n \n

6.3 当社は、毎年の初めに宣言された休日のリストを通知するものとします。

\n \n \n \n

7. 職務内容

\n \n

あなたは、自分のポストに固有のすべての義務と、会社としての追加の義務を最大限に遂行します。

\n \n

時々あなたに演奏を依頼するかもしれません。あなたの特定の義務は、本明細書のスケジュール II に記載されています。

\n \n \n \n

8. 会社財産

\n \n

あなたは、会社の所有物を常に良好な状態に維持するものとします。

\n \n

あなたの雇用を放棄し、あなたの料金を放棄する前に、そのようなすべての財産を会社に返還するものとします。

\n \n

同じのは、会社によってあなたから回収されます。

\n \n \n \n

9. 貸出・贈答品の受け取り

\n \n

あなたは、あなた自身から、または他の方法であなた自身の場所から個人的な利益を得るための金銭、贈り物、報酬、または補償を借りたり、受け取ったりしません。

\n \n

あなたが公式の取引をしている可能性のある人物/クライアントに対する金銭的義務の下で。

\n

10. 終了

\n \n

10.1 少なくとも [通知] か月前に通知することにより、理由のいかんを問わず、会社はあなたの任命を終了することができます。

\n \n

書面による通知またはその代わりの給与。この条項の目的上、給与とは基本給を意味するものとします。

\n \n

10.2 あなたは、少なくとも [従業員通知] を提出することにより、理由のいかんを問わず、会社での雇用を終了することができます。

\n \n

保留中の休暇の調整後に残された、保存されていない期間の数か月前の通知または給与は、日付のとおりです。

\n \n

10.3 当社は、通知期間や解雇補償金なしに、あなたの雇用を即座に終了させる権利を留保します。

\n \n

あなたが不正行為または過失で有罪であると信じる合理的な根拠がある場合、または基本的な違反を犯した場合

\n \n

契約、または当社に損害を与えた。

\n \n

10. 4 何らかの理由で雇用が終了した場合、あなたは会社にすべての財産を返還するものとします。ドキュメント、および

\n \n

サンプル、文献、契約書、記録、リスト、図面、青写真を含む、原本とコピーの両方の紙、

\n \n

手紙、メモ、データなど。あなたが所有する、またはあなたの管理下にある機密情報。

\n \n

雇用またはクライアントの業務に。

\n

11. 機密情報

\n \n

11. 1 当社での雇用期間中、あなたは自分の全時間、注意、およびスキルを、自分の能力の限りを尽くして捧げます。

\n \n

そのビジネス。あなたは、直接的または間接的に、関与したり、関連付けたり、接続したり、関係したり、雇用したり、または

\n \n

会社の事前の許可なしに、時間や学習コースを追求すること。他のビジネスに従事すること、または

\n \n

の事前の許可なしに、活動またはその他の投稿またはアルバイトをしたり、何らかの研究コースを追求したりすること。

\n \n

会社。

\n \n

11.2 常に最高度の機密性を維持し、記録、文書、およびその他の情報を機密として保持する必要があります。

\n \n

お客様が知っている、または何らかの方法でお客様に内密にされている可能性がある、当社の事業に関連する機密情報

\n \n

また、あなたは、会社の利益のために正当に承認された方法でのみ、そのような記録、文書、および情報を使用するものとします。為に

\n \n

この条項の目的 「機密情報」とは、会社の事業および顧客の事業に関する情報を意味します。

\n \n

これは一般には公開されておらず、雇用の過程で学習する可能性があります。これも、

\n \n

組織、その顧客リスト、雇用方針、人事、および情報に関連する情報に限定されません

\n \n

当社の製品、アイデアを含むプロセス、コンセプト、予測、技術、マニュアル、図面、デザイン、

\n \n

仕様、およびそのような機密情報を含むすべての書類、履歴書、記録、およびその他の文書。

\n \n

11.3 いかなる時も、許可なくオフィスから機密情報を削除しないでください。

\n \n

11.4 保護し、開示しないというあなたの義務

\n \n

e 機密情報は、本契約および/または当社との雇用の満了または終了後も存続します。

\n \n

11.5 この条項の条件に違反した場合、上記の条項に基づく略式解雇の対象となります。

\n \n

会社が法律であなたに対して持つことができるその他の救済。

\n

12. 通知

\n \n

通知は、登録された事務所の住所で会社に提出することができます。通知は、当社からお客様に提供される場合があります。

\n \n

公式記録であなたがほのめかした住所。

\n \n \n \n

13. 会社方針の適用性

\n \n

会社は、休暇の資格、出産などの事項に関して、随時方針を宣言する権利を有するものとします。

\n \n

休暇、従業員の福利厚生、勤務時間、異動ポリシーなどであり、独自の裁量により随時変更される場合があります。

\n \n

当社のそのようなポリシー決定はすべて、あなたを拘束し、その範囲で本契約を無効にするものとします。

\n \n \n \n

14. 準拠法・裁判管轄

\n \n

当社でのあなたの雇用は、国の法律の対象となります。すべての紛争は、高等裁判所の管轄に服するものとします

\n \n

グジャラートのみ。

\n \n \n \n

15. オファーの受諾

\n \n

副本に署名して返送することにより、この雇用契約に同意したことを確認してください。

\n \n \n \n

私たちはあなたを歓迎し、あなたの受け入れを受け取り、あなたと一緒に働くことを楽しみにしています.

\n \n \n \n

敬具、

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,'nl','

Deelnemende brief

\n \n

{date}

\n \n

{employee}

\n \n

{address}

\n \n

Onderwerp: Benoeming voor de functie van {designation}

\n \n

Beste {employee_name},

\n \n

We zijn verheugd u de positie van {designation} bij {app_name} het Bedrijf aan te bieden onder de volgende voorwaarden en

\n \n

conditie:

\n \n \n

1. Indiensttreding

\n

Uw dienstverband gaat in op {start_date}

\n \n \n

2. Functietitel

\n \n

Uw functietitel wordt {designation}.

\n \n

3. Salaris

\n \n

Uw salaris en andere voordelen zijn zoals uiteengezet in Schema 1 hierbij.

\n \n

4. Plaats van detachering

\n \n

Je wordt geplaatst op {branch}. Het kan echter zijn dat u moet werken op een bedrijfslocatie die het Bedrijf heeft, of

\n \n

later kan verwerven.

\n \n \n \n

5. Werkuren

\n \n

De normale werkdagen zijn van maandag tot en met vrijdag. Je zal de uren moeten werken die nodig zijn voor de

\n \n

correcte uitvoering van uw taken jegens het bedrijf. De normale werkuren zijn van {start_time} tot {end_time} en jij bent

\n \n

naar verwachting niet minder dan {total_hours} uur per week werken, en indien nodig voor extra uren, afhankelijk van uw

\n \n

verantwoordelijkheden.

\n \n \n \n

6. Verlof/Vakantie

\n \n

6.1 Je hebt recht op tijdelijk verlof van 12 dagen.

\n \n

6.2 U heeft recht op 12 werkdagen betaald ziekteverlof.

\n \n

6.3 De Maatschappij stelt aan het begin van elk jaar een lijst van verklaarde feestdagen op.

\n \n \n \n

7. Aard van de taken

\n \n

Je voert alle taken die inherent zijn aan je functie en bijkomende taken zoals het bedrijf naar beste vermogen uit;

\n \n

kan van tijd tot tijd een beroep op u doen om op te treden. Uw specifieke taken zijn uiteengezet in Bijlage II hierbij.

\n \n \n \n

8. Bedrijfseigendommen

\n \n

U onderhoudt bedrijfseigendommen, die u in de loop van

\n \n

uw dienstverband, en zal al deze eigendommen aan het Bedrijf teruggeven voordat afstand wordt gedaan van uw kosten, bij gebreke waarvan de kosten

\n \n

hiervan zal door het Bedrijf van u worden verhaald.

\n \n \n \n

9. Geschenken lenen/aannemen

\n \n

U zult geen geld, geschenken, beloningen of vergoedingen voor uw persoonlijk gewin lenen of accepteren van uzelf of uzelf op een andere manier plaatsen

\n \n

onder geldelijke verplichting jegens een persoon/klant met wie u mogelijk officiële betrekkingen heeft.

\n

10. Beëindiging

\n \n

10.1 Uw aanstelling kan door het Bedrijf zonder opgaaf van reden worden beëindigd door u minimaal [Opzegging] maanden van tevoren

\n \n

schriftelijke opzegging of daarvoor in de plaats komend salaris. In dit artikel wordt onder salaris verstaan ​​het basissalaris.

\n \n

10.2 U kunt uw dienstverband bij het Bedrijf beëindigen, zonder enige reden, door niet minder dan [Mededeling van de werknemer]

\n \n

maanden opzegtermijn of salaris voor de niet gespaarde periode, overgebleven na aanpassing van hangende verlofdagen, zoals op datum.

\n \n

10.3 Het bedrijf behoudt zich het recht voor om uw dienstverband op staande voet te beëindigen zonder enige opzegtermijn of beëindigingsvergoeding

\n \n

als het redelijke grond heeft om aan te nemen dat u zich schuldig heeft gemaakt aan wangedrag of nalatigheid, of een fundamentele schending van

\n \n

contract, of enig verlies voor het Bedrijf veroorzaakt.

\n \n

10. 4 Bij beëindiging van uw dienstverband om welke reden dan ook, geeft u alle eigendommen terug aan het Bedrijf; documenten, en

\n \n

papier, zowel origineel als kopieën daarvan, inclusief eventuele monsters, literatuur, contracten, bescheiden, lijsten, tekeningen, blauwdrukken,

\n \n

brieven, notities, gegevens en dergelijke; en Vertrouwelijke informatie, in uw bezit of onder uw controle met betrekking tot uw

\n \n

werkgelegenheid of de zakelijke aangelegenheden van klanten.

\n

11. Vertrouwelijke informatie

\n \n

11. 1 Tijdens uw dienstverband bij het Bedrijf besteedt u al uw tijd, aandacht en vaardigheden naar uw beste vermogen aan:

\n \n

zijn zaken. U mag zich niet, direct of indirect, inlaten met of verbonden zijn met, betrokken zijn bij, betrokken zijn bij, in dienst zijn van of

\n \n

tijd doorbrengen of een studie volgen, zonder voorafgaande toestemming van het bedrijf.bezig met een ander bedrijf of

\n \n

werkzaamheden of enige andere functie of werk in deeltijd of het volgen van welke opleiding dan ook, zonder voorafgaande toestemming van de

\n \n

Bedrijf.

\n \n

11.2 U moet altijd de hoogste graad van vertrouwelijkheid handhaven en de records, documenten en andere

\n \n

Vertrouwelijke informatie met betrekking tot het bedrijf van het bedrijf die u op enigerlei wijze bekend is of in vertrouwen is genomen

\n \n

en u zult dergelijke records, documenten en informatie alleen gebruiken op een naar behoren gemachtigde manier in het belang van het bedrijf. Voor

\n \n

de doeleinden van deze clausule Vertrouwelijke informatiebetekent informatie over het bedrijf van het bedrijf en dat van zijn klanten

\n \n

die niet beschikbaar is voor het grote publiek en die u tijdens uw dienstverband kunt leren. Dit bevat,

\n \n

maar is niet beperkt tot informatie met betrekking tot de organisatie, haar klantenlijsten, werkgelegenheidsbeleid, personeel en informatie

\n \n

over de producten, processen van het bedrijf, inclusief ideeën, concepten, projecties, technologie, handleidingen, tekeningen, ontwerpen,

\n \n

specificaties, en alle papieren, cvs, dossiers en andere documenten die dergelijke vertrouwelijke informatie bevatten.

\n \n

11.3 U verwijdert nooit vertrouwelijke informatie van het kantoor zonder toestemming.

\n \n

11.4 Uw plicht om te beschermen en niet openbaar te maken

\n \n

e Vertrouwelijke informatie blijft van kracht na het verstrijken of beëindigen van deze Overeenkomst en/of uw dienstverband bij het Bedrijf.

\n \n

11.5 Schending van de voorwaarden van deze clausule maakt u aansprakelijk voor ontslag op staande voet op grond van de bovenstaande clausule, naast eventuele:

\n \n

ander rechtsmiddel dat het Bedrijf volgens de wet tegen u heeft.

\n

12. Kennisgevingen

\n \n

Kennisgevingen kunnen door u aan het Bedrijf worden gedaan op het adres van de maatschappelijke zetel. Kennisgevingen kunnen door het bedrijf aan u worden gedaan op:

\n \n

het door u opgegeven adres in de officiële administratie.

\n \n \n \n

13. Toepasselijkheid van het bedrijfsbeleid

\n \n

Het bedrijf heeft het recht om van tijd tot tijd beleidsverklaringen af ​​te leggen met betrekking tot zaken als verlofrecht, moederschap

\n \n

verlof, werknemersvoordelen, werkuren, transferbeleid, enz., en kan deze van tijd tot tijd naar eigen goeddunken wijzigen.

\n \n

Al dergelijke beleidsbeslissingen van het Bedrijf zijn bindend voor u en hebben voorrang op deze Overeenkomst in die mate.

\n \n \n \n

14. Toepasselijk recht/jurisdictie

\n \n

Uw dienstverband bij het bedrijf is onderworpen aan de landelijke wetgeving. Alle geschillen zijn onderworpen aan de jurisdictie van de High Court

\n \n

Alleen Gujarat.

\n \n \n \n

15. Aanvaarding van ons aanbod

\n \n

Bevestig uw aanvaarding van deze arbeidsovereenkomst door het duplicaat te ondertekenen en terug te sturen.

\n \n \n \n

Wij heten u van harte welkom en kijken ernaar uit uw acceptatie te ontvangen en met u samen te werken.

\n \n \n \n

Hoogachtend,

\n \n

{app_name}

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,'pl','

Dołączanie listu

\n \n

{date }

\n \n

{employee_name }

\n \n

{address }

\n \n \n

Dotyczy: mianowania na stanowisko {designation}

\n \n

Szanowny {employee_name },

\n \n

Mamy przyjemność zaoferować Państwu, stanowisko {designation} z {app_name } \"Spółka\" na poniższych warunkach i

\n

warunki:

\n \n

1. Rozpoczęcie pracy

\n \n

Twoje zatrudnienie będzie skuteczne, jak na {start_date }

\n \n

2. Tytuł zadania

\n

Twój tytuł pracy to {designation}.

\n \n

3. Salary

\n \n

Twoje wynagrodzenie i inne świadczenia będą określone w Zestawieniu 1, do niniejszego rozporządzenia.

\n \n \n

4. Miejsce delegowania

\n

Użytkownik zostanie opublikowany w {branch }. Użytkownik może jednak być zobowiązany do pracy w dowolnym miejscu prowadzenia działalności, które Spółka posiada, lub może później nabyć.

\n \n

5. Godziny pracy

\n

Normalne dni robocze są od poniedziałku do piątku. Będziesz zobowiązany do pracy na takie godziny, jakie są niezbędne do prawidłowego wywiązania się ze swoich obowiązków wobec Spółki. Normalne godziny pracy to {start_time } do {end_time }, a użytkownik oczekuje, że będzie pracować nie mniej niż {total_hours } godzin tygodniowo, a jeśli to konieczne, przez dodatkowe godziny w zależności od Twojego

\n

odpowiedzialności.

\n \n

6. Urlop/Wakacje

\n \n

6.1 Przysługuje prawo do urlopu dorywczego w ciągu 12 dni.

\n \n

6.2 Użytkownik ma prawo do 12 dni roboczych od wypłatnego zwolnienia chorobowego.

\n \n

6.3 Spółka powiadamia na początku każdego roku wykaz ogłoszonych świąt. 

\n \n \n \n

7. Rodzaj obowiązków

\n \n

Będziesz wykonywać na najlepsze ze swojej zdolności wszystkie obowiązki, jak są one nieodłączne w swoim poście i takie dodatkowe obowiązki, jak firma może zadzwonić do wykonania, od czasu do czasu. Państwa szczególne obowiązki są określone w załączniku II do niniejszego rozporządzenia.

\n \n \n \n

8. Właściwość przedsiębiorstwa

\n \n

Zawsze będziesz utrzymywać w dobrej kondycji Firmy, która może być powierzona do użytku służbowego w trakcie trwania

\n \n

Twoje zatrudnienie, i zwróci wszystkie takie nieruchomości do Spółki przed zrzeczeniem się opłaty, w przeciwnym razie koszty te same będą odzyskane od Ciebie przez Spółkę.

\n \n

9. Wypożyczanie/akceptowanie prezentów

\n \n

Nie będziesz pożyczał ani nie akceptować żadnych pieniędzy, darów, nagrody lub odszkodowania za swoje osobiste zyski z lub w inny sposób złożyć się w ramach zobowiązania pieniężnego do jakiejkolwiek osoby/klienta, z którym może być posiadanie oficjalne relacje.

\n

10. Zakończenie

\n \n

10.1 Powołanie może zostać wypowiedziane przez Spółkę, bez względu na przyczynę, poprzez podanie nie mniej niż [ Zawiadomienie] miesięcy uprzedniego wypowiedzenia na piśmie lub wynagrodzenia w miejsce jego wystąpienia. Dla celów niniejszej klauzuli, wynagrodzenie oznacza wynagrodzenie podstawowe.

\n \n

10.2 Użytkownik może rozwiązać umowę o pracę ze Spółką, bez jakiejkolwiek przyczyny, podając nie mniej niż [ ogłoszenie o pracowniku] miesiące przed powiadomieniem lub wynagrodzeniem za niezaoszczędzony okres, pozostawiony po skorygowaniu oczekujących liści, jak na dzień.

\n \n

10.3 Spółka zastrzega sobie prawo do wypowiedzenia umowy o pracę bez okresu wypowiedzenia lub wypłaty z tytułu rozwiązania umowy, jeżeli ma on uzasadnione podstawy, aby sądzić, że jesteś winny wykroczenia lub niedbalstwa, lub popełnił jakiekolwiek istotne naruszenie umowy lub spowodował jakiekolwiek straty w Spółce. 

\n \n

10. 4 W sprawie rozwiązania stosunku pracy z jakiegokolwiek powodu, powrócisz do Spółki wszystkie nieruchomości; dokumenty, i 

\n \n

papieru, zarówno oryginału, jak i jego kopii, w tym wszelkich próbek, literatury, umów, zapisów, wykazów, rysunków, konspektów,

\n \n

listy, notatki, dane i podobne; informacje poufne, znajdujące się w posiadaniu lub pod Twoją kontrolą związane z zatrudnieniem lub sprawami biznesowymi klientów.   

\n \n \n \n

11. Informacje poufne

\n \n

11. 1 Podczas swojego zatrudnienia z Firmą poświęcisz cały czas, uwagę i umiejętności na najlepszą z Twoich możliwości

\n \n

swojej działalności gospodarczej. Użytkownik nie może, bezpośrednio lub pośrednio, prowadzić lub wiązać się z, być związany z, dotyka, zatrudniony lub czas lub prowadzić jakikolwiek kierunek studiów, bez uprzedniej zgody Company.zaangażował się w innej działalności gospodarczej lub działalności lub jakikolwiek inny post lub pracy w niepełnym wymiarze czasu lub prowadzić jakikolwiek kierunek studiów, bez uprzedniej zgody

\n \n

Firma.

\n \n

11.2 Zawsze musisz zachować najwyższy stopień poufności i zachować jako poufny akt, dokumenty, i inne 

\n \n

Informacje poufne dotyczące działalności Spółki, które mogą być znane Państwu lub w dowolny sposób zwierzyny, a Użytkownik będzie posługiwać się takimi zapisami, dokumentami i informacjami tylko w sposób należycie autoryzowany w interesie Spółki. Do celów niniejszej klauzuli \"Informacje poufne\" oznaczają informacje o działalności Spółki oraz o jej klientach, które nie są dostępne dla ogółu społeczeństwa i które mogą być przez Państwa w trakcie zatrudnienia dowiedzione przez Państwa. Obejmuje to,

\n \n

ale nie ogranicza się do informacji związanych z organizacją, jej listami klientów, politykami zatrudnienia, personelem oraz informacjami o produktach firmy, procesach, w tym pomysłach, koncepcjach, projekcjach, technikach, podręcznikach, rysunkach, projektach, 

\n \n

specyfikacje, a także wszystkie dokumenty, życiorysy, zapisy i inne dokumenty zawierające takie informacje poufne.

\n \n

11.3 W żadnym momencie nie usunie Pan żadnych Informacji Poufnych z urzędu bez zezwolenia.

\n \n

11.4 Twój obowiązek ochrony a nie disclos

\n \n

Informacje poufne przetrwają wygaśnięcie lub rozwiązanie niniejszej Umowy i/lub Twoje zatrudnienie w Spółce.

\n \n

11.5 Naruszenie warunków niniejszej klauzuli spowoduje, że Użytkownik będzie zobowiązany do skróconej umowy w ramach klauzuli powyżej, oprócz wszelkich innych środków zaradcze, jakie Spółka może mieć przeciwko Państwu w prawie.

\n \n \n \n

12. Uwagi

\n \n

Ogłoszenia mogą być podane przez Państwa do Spółki pod adresem jej siedziby. Ogłoszenia mogą być podane przez Spółkę do Państwa na adres intymniony przez Państwa w ewidencji urzędowej.

\n \n \n \n

13. Stosowność polityki firmy

\n \n

Spółka jest uprawniona do składania deklaracji politycznych od czasu do czasu dotyczących spraw takich jak prawo do urlopu macierzyńskiego, macierzyństwo

\n \n

urlopów, świadczeń pracowniczych, godzin pracy, polityki transferowej itp., a także mogą zmieniać to samo od czasu do czasu według własnego uznania.

\n \n

Wszystkie takie decyzje polityczne Spółki są wiążące dla Państwa i przesłaniają niniejszą Umowę w tym zakresie.

\n \n \n \n

14. Prawo właściwe/jurysdykcja

\n \n

Twoje zatrudnienie ze Spółką podlega prawu krajowi. Wszelkie spory podlegają właściwości Sądu Najwyższego

\n \n

Tylko Gujarat.

\n \n \n \n

15. Akceptacja naszej oferty

\n \n

Prosimy o potwierdzenie przyjęcia niniejszej Umowy o pracę poprzez podpisanie i zwrócenie duplikatu.

\n \n \n \n

Zapraszamy Państwa i czekamy na Państwa przyjęcie i współpracę z Tobą.

\n \n \n \n

Z Państwa Sincerely,

\n \n

{app_name }

\n \n

{date }

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,'pt','

Carta De Adesão

\n \n

{data}

\n \n

{employee_name}

\n \n

{address}

\n \n \n

Assunto: Nomeação para o cargo de {designation}

\n \n

Querido {employee_name},

\n \n \n

Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e

\n

condições:

\n \n \n

1. Comentamento do emprego

\n \n

Seu emprego será efetivo, a partir de {start_date}

\n \n \n

2. Título do emprego

\n \n

Seu cargo de trabalho será {designation}.

\n \n

3. Salário

\n \n

Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.

\n \n

4. Local de postagem

\n \n

Você será postado em {branch}. Você pode, no entanto, ser obrigado a trabalhar em qualquer local de negócios que a Empresa tenha, ou possa posteriormente adquirir.

\n \n

5. Horas de Trabalho

\n \n

Os dias normais de trabalho são de segunda a sexta-feira. Você será obrigado a trabalhar por tais horas, conforme necessário para a quitação adequada de suas funções para a Companhia. As horas de trabalho normais são de {start_time} para {end_time} e você deve trabalhar não menos de {total_horas} horas semanais, e se necessário para horas adicionais dependendo do seu

\n

responsabilidades.

\n \n

6. Leave / Holidays

\n \n

6,1 Você tem direito a licença casual de 12 dias.

\n \n

6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.

\n \n

6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. 

\n \n \n \n

7. Natureza dos deveres

\n \n

Você irá executar ao melhor da sua habilidade todos os deveres como são inerentes ao seu cargo e tais deveres adicionais como a empresa pode ligar sobre você para executar, de tempos em tempos. Os seus deveres específicos são estabelecidos no Hereto do Planejamento II.

\n \n \n \n

8. Propriedade da empresa

\n \n

Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de

\n \n

o seu emprego, e devolverá toda essa propriedade à Companhia antes de abdicar de sua acusação, falhando qual o custo do mesmo será recuperado de você pela Companhia.

\n \n \n \n

9. Borremir / aceitar presentes

\n \n

Você não vai pedir empréstimo ou aceitar qualquer dinheiro, presente, recompensa ou indenização por seus ganhos pessoais de ou de outra forma colocar-se sob obrigação pecuniária a qualquer pessoa / cliente com quem você pode estar tendo relações oficiais.

\n \n \n \n

10. Terminação

\n \n

10,1 Sua nomeação pode ser rescindida pela Companhia, sem qualquer razão, dando-lhe não menos do que [aviso] meses de aviso prévio por escrito ou de salário em lieu deste. Para efeito da presente cláusula, o salário deve significar salário base.

\n \n

10,2 Você pode rescindir seu emprego com a Companhia, sem qualquer causa, ao dar nada menos que [Aviso de contratação] meses de aviso prévio ou salário para o período não salvo, deixado após ajuste de folhas pendentes, conforme data de encontro.

\n \n

10,3 Empresa reserva-se o direito de rescindir o seu emprego sumariamente sem qualquer prazo de aviso ou de rescisão se tiver terreno razoável para acreditar que você é culpado de má conduta ou negligência, ou tenha cometido qualquer violação fundamental de contrato, ou tenha causado qualquer perda para a Empresa. 

\n \n

10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e 

\n \n

papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,

\n \n

cartas, notas, dados e semelhantes; e Informações Confidenciais, em sua posse ou sob seu controle relacionado ao seu emprego ou aos negócios de negócios dos clientes.   

\n \n \n \n

11. Informações Confidenciais

\n \n

11. 1 Durante o seu emprego com a Companhia você irá dedicar todo o seu tempo, atenção e habilidade para o melhor de sua capacidade de

\n \n

o seu negócio. Você não deve, direta ou indiretamente, se envolver ou associar-se com, estar conectado com, preocupado, empregado, ou tempo ou prosseguir qualquer curso de estudo, sem a permissão prévia do Company.engajado em qualquer outro negócio ou atividades ou qualquer outro cargo ou trabalho parcial ou prosseguir qualquer curso de estudo, sem a permissão prévia do

\n \n

Empresa.

\n \n

11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros 

\n \n

Informações confidenciais relativas ao negócio da Companhia que possam ser conhecidas por você ou confiadas em você por qualquer meio e utilizarão tais registros, documentos e informações apenas de forma devidamente autorizada no interesse da Companhia. Para efeitos da presente cláusula \"Informações confidenciais\" significa informação sobre os negócios da Companhia e a dos seus clientes que não está disponível para o público em geral e que poderá ser aprendida por você no curso do seu emprego. Isso inclui,

\n \n

mas não se limita a, informações relativas à organização, suas listas de clientes, políticas de emprego, pessoal, e informações sobre os produtos da Companhia, processos incluindo ideias, conceitos, projeções, tecnologia, manuais, desenho, desenhos, 

\n \n

especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.

\n \n

11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.

\n \n

11,4 O seu dever de salvaguardar e não os desclos

\n \n

Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.

\n \n

11,5 Violação das condições desta cláusula irá torná-lo sujeito a demissão sumária sob a cláusula acima, além de qualquer outro remédio que a Companhia possa ter contra você em lei.

\n \n \n \n

12. Notices

\n \n

Os avisos podem ser conferidos por você à Empresa em seu endereço de escritório registrado. Os avisos podem ser conferidos pela Companhia a você no endereço intimado por você nos registros oficiais.

\n \n \n \n

13. Aplicabilidade da Política da Empresa

\n \n

A Companhia tem direito a fazer declarações de política de tempos em tempos relativos a matérias como licença de licença, maternidade

\n \n

sair, benefícios dos empregados, horas de trabalho, políticas de transferência, etc., e pode alterar o mesmo de vez em quando a seu exclusivo critério.

\n \n

Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.

\n \n \n \n

14. Direito / Jurisdição

\n \n

Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior

\n \n

Gujarat apenas.

\n \n \n \n

15. Aceitação da nossa oferta

\n \n

Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.

\n \n \n \n

Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.

\n \n \n \n

Seu Sinceramente,

\n \n

{app_name}

\n \n

{data}

\n ',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,'ru','

Присоединение к письму

\n \n

{date}

\n \n

{ employee_name }

\n

{address}

\n \n

Тема: Назначение на должность {designation}

\n \n

Уважаемый { employee_name },

\n \n

Мы рады предложить Вам, позицию {designation} с { app_name } Компания на следующих условиях и

\n \n

условия:

\n \n \n

1. Начало работы

\n \n

Ваше трудоустройство будет эффективным, начиная с { start_date }

\n \n \n

2. Название должности

\n

Ваш заголовок задания будет {designation}.

\n \n

3. Зарплата

\n

Ваши оклады и другие пособия будут установлены в соответствии с расписанием, изложенным в приложении 1 к настоящему.

\n \n

4. Место размещения

\n

Вы будете работать в { branch }. Вы, однако, можете работать в любом месте, которое компания имеет или может впоследствии приобрести.

\n \n \n \n

5. Часы работы

\n

Обычные рабочие дни-с понедельника по пятницу. Вы должны будете работать в течение таких часов, как это необходимо для надлежащего выполнения Ваших обязанностей перед компанией. Обычные рабочие часы-от { start_time } до { end_time }, и вы, как ожидается, будут работать не менее { total_hours } часов каждую неделю, и при необходимости в течение дополнительных часов в зависимости от вашего

\n

ответственности.

\n

6. Отпуск/Праздники

\n \n

6.1 Вы имеете право на случайный отпуск продолжительностью 12 дней.

\n \n

6.2 Вы имеете право на 12 рабочих дней оплачиваемого отпуска по болезни.

\n \n

6.3 Компания в начале каждого года уведомляет об объявленных праздниках. 

\n \n \n \n

7. Характер обязанностей

\n \n

Вы будете выполнять все обязанности, присующие вам, и такие дополнительные обязанности, которые компания может призвать к вам, время от времени. Ваши конкретные обязанности изложены в приложении II к настоящему.

\n \n \n \n

8. Свойство компании

\n \n

Вы всегда будете поддерживать в хорошем состоянии имущество Компании, которое может быть доверено Вам для служебного пользования в течение

\n \n

вашей занятости, и возвратит все это имущество Компании до отказа от вашего заряда, при отсутствии которого стоимость одного и того же имущества будет взыскана с Вас компанией.

\n \n \n \n

9. Боровить/принять подарки

\n \n

Вы не будете брать взаймы или принимать какие-либо деньги, подарки, вознаграждение или компенсацию за ваши личные доходы от или в ином месте под денежный долг любому лицу/клиенту, с которым у вас могут быть официальные сделки.

\n \n \n \n

10. Прекращение

\n \n

10.1 Ваше назначение может быть прекращено компанией без каких бы то ни было оснований, предоставляя Вам не менее [ Уведомление] месяцев, предшея уведомлению в письменной форме или окладе вместо них. Для целей этого положения заработная плата означает базовый оклад.

\n \n

10.2 Вы можете прекратить свою трудовую деятельность с компанией без каких-либо причин, предоставляя не меньше, чем [ Employee Notice] months предварительное уведомление или оклад за несохраненный период, оставатся после корректировки отложенных листьев, как на сегодняшний день.

\n \n

10.3 Компания оставляет за собой право прекратить вашу работу в суммарном порядке без какого-либо уведомления о сроке или увольнении, если у нее есть достаточные основания полагать, что вы виновны в проступке или халатности, или совершили какое-либо существенное нарушение договора, или причинило убытки Компании. 

\n \n

10. 4 О прекращении вашей работы по какой бы то ни было причине вы вернетесь в Компании все имущество; документы, а 

\n \n

бумаги, как оригинальные, так и их копии, включая любые образцы, литературу, контракты, записи, списки, чертежи, чертежи,

\n \n

письма, заметки, данные и тому подобное; и Конфиденциальная информация, в вашем распоряжении или под вашим контролем, связанным с вашей работой или деловыми делами клиентов.   

\n \n \n \n

11. Конфиденциальная информация

\n \n

11. 1 Во время вашего трудоустройства с компанией Вы посвяте все свое время, внимание, умение максимально

\n \n

Его бизнес. Вы не должны, прямо или косвенно, заниматься или ассоциировать себя с заинтересованными, занятым, занятым, или временем, или продолжать любой курс обучения, без предварительного разрешения Компани.заниматься каким-либо другим бизнесом или деятельностью или любой другой пост или работать неполный рабочий день или заниматься какой бы то ни было исследованием, без предварительного разрешения

\n \n

Компания.

\n \n

11.2 Вы всегда должны сохранять наивысшую степень конфиденциальности и хранить в качестве конфиденциальной записи, документы и другие 

\n \n

Конфиденциальная информация, касающаяся бизнеса Компании, которая может быть вам известна или конфиденциальна любым способом, и Вы будете использовать такие записи, документы и информацию только в установленном порядке в интересах Компании. Для целей настоящей статьи \"Конфиденциальная информация\" означает информацию о бизнесе Компании и о ее клиентах, которая недоступна для широкой общественности и которая может быть изучилась Вами в ходе вашей работы. Это включает в себя:

\n \n

но не ограничивается информацией, касающейся организации, ее списков клиентов, политики в области занятости, персонала и информации о продуктах Компании, процессах, включая идеи, концепции, прогнозы, технологии, руководства, чертеж, чертеж, 

\n \n

спецификации, и все бумаги, резюме, записи и другие документы, содержащие такую Конфиденциальную Информацию.

\n \n

11.3 В любое время вы не будете удалять конфиденциальную информацию из офиса без разрешения.

\n \n

11.4 Ваш долг защищать и не отсосать

\n \n

e Конфиденциальная информация выдержит срок действия или прекращения действия настоящего Соглашения и/или вашей работы с компанией.

\n \n

11.5 Нарушение условий, изложенных в настоящем положении, приведет к тому, что в дополнение к любым другим средствам правовой защиты, которые компания может иметь против вас, в соответствии с вышеприведенным положением, вы можете получить краткое увольнение в соответствии с этим положением.

\n \n \n \n

12. Замечания

\n \n

Уведомления могут быть даны Вами Компании по адресу ее зарегистрированного офиса. Извещения могут быть даны компанией Вам по адресу, с которым вы в официальных отчетах.

\n \n \n \n

13. Применимость политики компании

\n \n

Компания вправе время от времени делать политические заявления по таким вопросам, как право на отпуск, материнство

\n \n

отпуска, пособия для работников, продолжительность рабочего дня, трансферная политика и т.д. и время от времени могут изменяться исключительно по своему усмотрению.

\n \n

Все такие принципиальные решения Компании являются обязательными для Вас и переопределяют это Соглашение в такой степени.

\n \n \n \n

14. Регулирующий Право/юрисдикция

\n \n

Ваше трудоустройство с компанией подпадает под действие законов страны. Все споры подлежат юрисдикции Высокого суда

\n \n

Только Гуджарат.

\n \n \n \n

15. Принятие нашего предложения

\n \n

Пожалуйста, подтвердите свое согласие с этим Договором о занятости, подписав и возвращая дубликат копии.

\n \n \n \n

Мы приветствуем Вас и надеемся на то, что Вы принимаете свое согласие и работаете с Вами.

\n \n \n \n

Искренне Ваш,

\n \n

{ app_name }

\n \n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,'tr','

Katılma Mektubu

\n

{date}

\n

{employee_name}

\n

{address}

\n

Konu: Kadroya randevu {designation}

\n

Canım {employee_name},

\n

konumunu size sunmaktan mutluluk duyuyoruz {designation} ile {app_name} Şirket aşağıdaki şartlarla ve

\n

koşullar:

\n

1. işe başlama

\n

İşe alımınız şu tarihten itibaren etkili olacaktır {start_date}

\n

2. İş unvanı

\n

İş unvanınız olacak{designation}.

\n

3. Maaş

\n

Maaşınız ve diğer menfaatleriniz Programda belirtildiği gibi olacaktır 1, buraya.

\n

4. Gönderme Yeri

\n

adresinde yayınlanacaksınız {branch}. Ancak Şirketin sahip olduğu herhangi bir işyerinde çalışmanız gerekebilir veya

\n

daha sonra edinebilir.

\n

5. Çalışma saati

\n

Normal çalışma günleri Pazartesiden Cumaya kadardır. için gerekli olan saatlerde çalışmanız istenecektir

\n

Şirkete karşı görevlerinizi uygun şekilde yerine getirmek. Normal çalışma saatleri, {start_time} ile {end_time} ve sen

\n

daha az çalışması beklenmiyor {total_hours} her hafta saat ve gerekirse, durumunuza bağlı olarak ek saatler

\n

sorumluluklar.

\n

6. İzin/Tatiller

\n

6.1 12 gün izin hakkınız var.

\n

6.2 12 iş günü ücretli hastalık izni hakkınız var.

\n

6.3 Şirket, her yılın başında ilan edilen tatillerin bir listesini bildirecektir.

\n

7. görevlerin niteliği

\n

Görevinizin doğasında bulunan tüm görevleri ve şirket olarak bu tür ek görevleri elinizden gelen en iyi şekilde yerine getireceksiniz

\n

zaman zaman performans göstermeniz için sizi çağırabilir. Özel görevleriniz, burada Çizelge IIde belirtilmiştir.

\n

8. Şirket mülkiyeti

\n

Görev süresince resmi kullanım için size emanet edilmiş olabilecek Şirket mallarını her zaman iyi durumda tutacaksınız

\n

istihdamınızdan feragat etmeden önce bu tür tüm mülkleri Şirkete iade edecektir, aksi takdirde maliyet

\n

aynı tutar Şirket tarafından sizden tahsil edilecektir.

\n

9. Ödünç alma/hediye kabul etme

\n

Kişisel kazançlarınız için kendinizden herhangi bir para, hediye, ödül veya tazminat ödünç almayacak veya kabul etmeyeceksiniz

\n

resmi ilişkiler içinde olabileceğiniz herhangi bir kişiye/müşteriye karşı maddi yükümlülük altında.

\n

10. Sonlandırma

\n

10.1 Randevunuz Şirket tarafından size en az [Bildirim] ay öncesinden bildirimde bulunularak herhangi bir sebep göstermeksizin feshedilebilir

\n

yazılı bildirim veya bunun yerine maaş. Bu maddenin amaçları doğrultusunda maaş, temel maaş anlamına gelir.

\n

10.2 [Çalışan Bildirimi]nden daha az olmamak kaydıyla, Şirketteki çalışmanızı herhangi bir sebep göstermeden feshedebilirsiniz

\n

ay önceden ihbar veya kaydedilmemiş dönem için maaş, tarih itibariyle bekleyen izinlerin ayarlanmasından sonra kalan.

\n

10.3 Şirket, herhangi bir ihbar süresi veya fesih ödemesi olmaksızın iş akdinizi aniden feshetme hakkını saklı tutar

\n

suiistimal veya ihmalden suçlu olduğunuza veya herhangi bir temel ihlalde bulunduğunuza inanmak için makul bir gerekçesi varsa

\n

sözleşmeye veya Şirkete herhangi bir zarara neden oldu.

\n

10. 4 Herhangi bir nedenle işinize son verildiğinde, tüm mal varlığınızı Şirkete iade edeceksiniz; belgeler ve

\n

tüm numuneler, literatür, sözleşmeler, kayıtlar, listeler, çizimler, planlar dahil olmak üzere kağıt, hem orijinali hem de kopyaları,

\n

mektuplar, notlar, veriler ve benzerleri; ve Gizli Bilgiler, sizin mülkiyetinizde veya kontrolünüz altında

\n

İstihdam veya müşterilerin iş ilişkilerine.

\n

11. Kesin bilgi

\n

11. 1 Şirkette çalıştığınız süre boyunca tüm zamanınızı, dikkatinizi ve becerinizi elinizden gelenin en iyisini yapmaya adayacaksınız

\n

onun işi. Doğrudan veya dolaylı olarak kendinizle ilişki kurmamalı veya ilişkilendirmemeli, bunlarla bağlantı kurmamalı, ilgilenmemeli, istihdam edilmemeli veya

\n

Şirketin önceden izni olmaksızın herhangi bir eğitim kursuna devam etmeyin veya herhangi bir kursa devam etmeyin

\n

faaliyetleri veya diğer herhangi bir görev veya yarı zamanlı çalışma veya önceden izin almaksızın herhangi bir eğitim kursuna devam etme

\n

Şirket.

\n

11.2 Her zaman en yüksek derecede gizliliği korumalı ve kayıtları, belgeleri ve diğer bilgileri gizli tutmalısınız.

\n

Sizin tarafınızdan bilinebilecek veya herhangi bir şekilde size güvenilebilecek Şirketin işleriyle ilgili Gizli Bilgiler

\n

ve bu tür kayıtları, belgeleri ve bilgileri yalnızca usulüne uygun olarak Şirketin çıkarları doğrultusunda kullanacaksınız. İçin

\n

bu maddenin amaçları Gizli Bilgiler, Şirketin ve müşterilerinin işleri hakkında bilgi anlamına gelir

\n

halka açık olmayan ve istihdamınız sırasında sizin tarafınızdan öğrenilebilecek olan. Bu içerir,

\n

ancak bunlarla sınırlı olmamak üzere, kuruluşa ilişkin bilgiler, müşteri listeleri, istihdam politikaları, personel ve bilgiler

\n

fikirler, kavramlar, projeksiyonlar, teknoloji, kılavuzlar, çizimler, tasarımlar dahil olmak üzere Şirketin ürünleri, süreçleri hakkında,

\n

spesifikasyonlar ve bu tür Gizli Bilgileri içeren tüm belgeler, özgeçmişler, kayıtlar ve diğer belgeler.

\n

11.3 Gizli Bilgileri hiçbir zaman izinsiz olarak ofisten çıkarmayacak mısınız?.

\n

11.4 Koruma ve açıklamama göreviniz

\n

e Gizli Bilgiler, bu Sözleşmenin sona ermesinden veya feshedilmesinden ve/veya Şirketteki istihdamınızdan sonra da geçerliliğini koruyacaktır.

\n

11.5 Bu maddenin koşullarının ihlali, sizi herhangi bir ek olarak yukarıdaki madde uyarınca derhal işten çıkarmaya yükümlü kılacaktır

\n

Şirketin kanunen size karşı sahip olabileceği diğer çareler.

\n

12. Bildirimler

\n

Tebligatlar tarafınızca Şirket in kayıtlı ofis adresine gönderilebilir. Bildirimler Şirket tarafından size şu adreste verilebilir

\n

tResmi kayıtlarda sizin tarafınızdan bildirilen adres.

\n

13. Şirket Politikasının Uygulanabilirliği

\n

Şirket, izin hakkı, analık gibi konularda zaman zaman poliçe beyanı yapmaya yetkilidir

\n

izinler, çalışanlara sağlanan faydalar, çalışma saatleri, transfer politikaları vb. ve tamamen kendi takdirine bağlı olarak zaman zaman değiştirebilir.

\n

Şirketin tüm bu tür politika kararları sizin için bağlayıcı olacak ve bu Sözleşmeyi o ölçüde geçersiz kılacaktır.

\n

14. Geçerli Yasa/Yargı Yetkisi

\n

Şirkette istihdamınız Ülke yasalarına tabidir. Tüm ihtilaflar Yüksek Mahkemenin yargı yetkisine tabi olacaktır.

\n

sadece Gujarat.

\n

15. teklifimizin kabulü

\n

Lütfen bu İş Sözleşmesini kabul ettiğinizi imzalayarak ve kopya kopyayı geri göndererek onaylayın.

\n

Size hoş geldiniz diyor ve kabulünüzü almayı ve sizinle çalışmayı sabırsızlıkla bekliyoruz.

\n

Saygılarımla,

\n

{app_name}

\n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (15,'zh','

加盟信

\n

{date}

\n

{employee_name}

\n

{address}

\n

主题:任命 {designation}

\n

亲爱的 {employee_name},

\n

我们很高兴为您提供以下职位: {designation} 和 {app_name} 公司按照以下条款和

\n

状况:

\n

1. 开始就业

\n

您的雇佣关系将在以下日期生效 {start_date}

\n

2. 职称

\n

您的职位名称将是{designation}.

\n

3. 薪水

\n

您的工资和其他福利将在附表 1 中列出,此处为.

\n

4. 发帖地点

\n

您将被发布在 {branch}. 但是,您可能需要在公司拥有的任何营业地点工作,或者

\n

以后可能会获得.

\n

5. 几小时的工作

\n

正常工作日为周一至周五。您将需要在必要的时间内工作

\n

正确履行您对公司的职责。正常工作时间是从 {start_time} 到 {end_time} 而你是

\n

预计工作不少于 {total_hours} 每周几个小时,如有必要,根据您的情况还可以增加几个小时

\n

责任.

\n

6. 休假/节假日

\n

6.1 您有权享受 12 天的事假.

\n

6.2 您有权享受 12 个工作日的带薪病假.

\n

6.3 公司应在每年年初公布已宣布的假期清单.

\n

7. 职责性质

\n

您将尽最大努力履行您职位固有的所有职责以及公司的其他职责

\n

可能会不时要求您表演。您的具体职责在附表 II 中列出,以便.

\n

8. 公司财产

\n

您将始终保持公司财产的良好状态,这些财产可能会在工作期间委托给您用于正式使用

\n

您的工作,并应在放弃您的职责之前将所有此类财产归还给公司,否则费用

\n

公司将向您追回相同的费用.

\n

9. 借用/接受礼物

\n

您不会借用或接受任何金钱、礼物、奖励或补偿来获取个人利益或以其他方式安置自己

\n

对可能与您有正式往来的任何人/客户承担金钱义务.

\n

10. 终止

\n

10.1 公司可以在至少 [通知] 个月之前向您发出无任何理由的终止您的任命

\n

书面通知或工资代替。本条所称工资是指基本工资.

\n

10.2 您可以无任何理由地终止与公司的雇佣关系,只需发出不少于[员工通知]

\n

提前几个月通知或未保存期间的工资,在待休假调整后剩余,截至日期.

\n

10.3 公司保留立即终止雇佣关系的权利,无需任何通知期或终止付款

\n

如果有合理的理由相信您犯有不当行为或疏忽,或犯有任何根本违反

\n

合同,或给公司造成任何损失.

\n

10. 4 无论出于何种原因终止雇佣关系,您都应将所有财产归还给公司;文件,以及

\n

纸张,原件和复印件,包括任何样品、文献、合同、记录、清单、图纸、蓝图,

\n

信件、笔记、数据等;您拥有或控制下的与您的相关的机密信息

\n

就业或客户商务事务.

\n

11. 机密信息

\n

11. 1 在您受雇于公司期间,您将尽最大努力投入全部时间、注意力和技能,

\n

它的业务。您不得直接或间接地参与、联系、涉及、雇用或参与

\n

未经公司事先许可,花时间或进行任何学习课程。从事任何其他业务或

\n

未经雇主事先许可,从事任何活动或任何其他职位或兼职工作或进行任何学习课程

\n

公司.

\n

11.2 您必须始终保持最高程度的机密性,并对记录、文件和其他内容保密

\n

您可能知道或通过任何方式向您透露的与公司业务相关的机密信息

\n

您只能以符合公司利益的正式授权方式使用此类记录、文件和信息。为了

\n

本条款的目的机密信息是指有关公司业务及其客户业务的信息

\n

这是一般公众无法获得的,但您可以在工作过程中了解到。这包括,

\n

但不限于与组织、其客户名单、雇佣政策、人员和信息有关的信息

\n

关于公司的产品、流程,包括想法、概念、预测、技术、手册、绘图、设计,

\n

规范以及包含此类机密信息的所有文件、简历、记录和其他文件.

\n

11.3 未经许可,您不得在任何时候从办公室删除任何机密信息.

\n

11.4 您有责任保护且不泄露

\n

e 机密信息在本协议到期或终止和/或您与公司的雇佣关系到期或终止后仍然有效.

\n

11.5 违反本条款的条件将使您根据上述条款承担立即解雇的责任,此外,

\n

公司可能在法律上对您采取的其他补救措施.

\n

12. 通知

\n

您可以通过公司的注册办公地址向公司发出通知。公司可能会向您发出通知,地址为:

\n

您在正式记录中透露的地址.

\n

13. 公司政策的适用性

\n

公司有权不时就休假、生育等事宜作出政策声明

\n

休假、员工福利、工作时间、调动政策等,并可自行决定不时更改.

\n

公司的所有此类政策决定均对您具有约束力,并在一定程度上优先于本协议.

\n

14. 适用法律/司法管辖区

\n

您在公司的雇佣关系须遵守国家/地区法律。所有争议均受高等法院管辖

\n

仅限古吉拉特邦.

\n

15. 接受我们的报价

\n

请签署并返回副本以确认您接受本雇佣合同.

\n

我们欢迎您并期待得到您的认可并与您合作.

\n

此致,

\n

{app_name}

\n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (16,'he','

מכתב הצטרפות

\n

{date}

\n

{employee_name}

\n

{address}

\n

נושא: מינוי לתפקיד של {designation}

\n

יָקָר {employee_name},

\n

אנו שמחים להציע לך את התפקיד של {designation} עם {app_name} החברה בתנאים הבאים ו

\n

תנאים:

\n

1. תחילת עבודה

\n

העסקתך תהיה אפקטיבית, החל מהיום {start_date}

\n

2. הגדרת תפקיד

\n

שם התפקיד שלך יהיה{designation}.

\n

3. שכר

\n

השכר וההטבות האחרות שלך יהיו כמפורט בנספח 1, כאן ל.

\n

4. מקום הפרסום

\n

אתה תפורסם ב {branch}. עם זאת, ייתכן שתידרש לעבוד בכל מקום עסק שיש לחברה, או

\n

עשוי לרכוש מאוחר יותר.

\n

5. שעות עבודה

\n

ימי העבודה הרגילים הם שני עד שישי. תידרש לעבוד במשך שעות הדרושות לצורך

\n

מילוי נאות של חובותיך כלפי החברה. שעות העבודה הרגילות הן מ {start_time} ל {end_time} ואתה

\n

צפוי לעבוד לא פחות מ {total_hours} שעות בכל שבוע, ובמידת הצורך לשעות נוספות בהתאם לבחירתך

\n

אחריות.

\n

6. עזיבה/חגים

\n

6.1 אתה זכאי לחופשה מזדמנת של 12 ימים.

\n

6.2 אתה זכאי ל-12 ימי עבודה של חופשת מחלה בתשלום.

\n

6.3 החברה תודיע על רשימת חגים מוכרזים בתחילת כל שנה.

\n

7. אופי התפקידים

\n

תבצע כמיטב יכולתך את כל התפקידים הגלומים בתפקידך וחובות נוספות כמו החברה

\n

עשוי לקרוא לך להופיע, מעת לעת. החובות הספציפיות שלך מפורטות בלוח הזמנים II כאן כדי.

\n

8. רכוש החברה

\n

תמיד תשמור על רכוש החברה במצב טוב, אשר עשוי להיות מופקד בידיך לשימוש רשמי במהלך

\n

העסקתך, ותחזיר את כל הרכוש כאמור לחברה לפני ויתור על החיוב שלך, אם לא העלות

\n

ממנו יגבו ממך על ידי החברה.

\n

9. השאלת/קבלת מתנות

\n

לא תלווה או תקבל שום כסף, מתנה, תגמול או פיצוי עבור הרווחים האישיים שלך או תציב את עצמך בדרך אחרת.

\n

תחת התחייבות כספית לכל אדם/לקוח שעמו אתה עשוי לנהל עסקאות רשמיות.

\n

10. סיום

\n

10.1 ניתן לסיים את מינויך על ידי החברה, ללא כל סיבה, על ידי מתן הודעה לא פחות מ[הודעה] חודשים לפני כן.

\n

הודעה בכתב או משכורת במקומה. לעניין סעיף זה, שכר משמעו שכר יסוד.

\n

10.2 אתה רשאי לסיים את העסקתך בחברה, ללא כל סיבה, על ידי מתן לא פחות מ[הודעת עובד]

\n

חודשי הודעה מוקדמת או משכורת לתקופה שלא נחסכה, שנותרה לאחר התאמת חופשות ממתינות, לפי התאריך.

\n

10.3 החברה שומרת לעצמה את הזכות לסיים את העסקתך באופן סופי ללא כל תקופת הודעה מוקדמת או תשלום פיטורין

\n

אם יש לו יסוד סביר להאמין שאתה אשם בהתנהגות בלתי הולמת או ברשלנות, או שביצעת הפרה יסודית כלשהי של

\n

חוזה, או גרם להפסד כלשהו לחברה.

\n

10. 4 עם סיום העסקתך מכל סיבה שהיא, תחזיר לחברה את כל הרכוש; מסמכים, ו

\n

נייר, הן מקור והעתקים שלו, לרבות כל דוגמאות, ספרות, חוזים, רשומות, רשימות, שרטוטים, שרטוטים,

\n

מכתבים, הערות, נתונים וכדומה; ומידע סודי, הנמצא ברשותך או בשליטתך, המתייחס לרשותך

\n

תעסוקה או עניינים עסקיים של לקוחות.

\n

11. מידע מסווג

\n

11. 1 במהלך עבודתך בחברה תקדיש את כל זמנך, תשומת הלב והמיומנות שלך כמיטב יכולתך למען

\n

העסק שלה. אין, במישרין או בעקיפין, לעסוק או לקשר את עצמך, להיות קשור, מודאג, מועסק, או

\n

זמן או להמשיך כל מסלול לימודים שהוא, ללא אישור מראש של החברה. העוסקת בכל עסק אחר או

\n

פעילות או כל משרה אחרת או עבודה במשרה חלקית או להמשיך בכל מסלול לימודים שהוא, ללא אישור מראש של

\n

חֶברָה.

\n

11.2 עליך תמיד לשמור על רמת הסודיות הגבוהה ביותר ולשמור בסודיות את הרשומות, המסמכים ועוד.

\n

מידע סודי המתייחס לעסקים של החברה אשר עשוי להיות ידוע לך או נסתר לך בכל אמצעי

\n

ואתה תשתמש ברשומות, במסמכים ובמידע כאמור רק באופן מורשה כדין לטובת החברה. ל

\n

המטרות של סעיף זה מידע סודי פירושו מידע על עסקי החברה ושל לקוחותיה

\n

שאינו זמין לציבור הרחב ואשר עשוי להילמד על ידך במהלך העסקתך. זה כולל,

\n

אך לא מוגבל למידע הנוגע לארגון, רשימות הלקוחות שלו, מדיניות העסקה, כוח אדם ומידע

\n

על מוצרי החברה, תהליכים כולל רעיונות, קונספטים, תחזיות, טכנולוגיה, מדריכים, ציור, עיצובים,

\n

מפרטים, וכל הניירות, קורות החיים, הרשומות ומסמכים אחרים המכילים מידע סודי כאמור.

\n

11.3 בשום זמן לא תסיר כל מידע סודי מהמשרד ללא רשות.

\n

11.4 חובתך לשמור ולא לחשוף

\n

מידע סודי ישרוד את תפוגה או סיומו של הסכם זה ו/או העסקתך בחברה.

\n

11.5 הפרת תנאי סעיף זה תגרום לך לדין לפיטורים על הסף על פי הסעיף לעיל בנוסף לכל

\n

סעד אחר שייתכן שיש לחברה נגדך בחוק.

\n

12. הודעות

\n

הודעות עשויות להימסר על ידך לחברה בכתובת משרדה הרשום. ייתכן שהחברה תמסור לך הודעות בכתובת

\n

הכתובת שצוינה על ידך ברישומים הרשמיים.

\n

13. תחולת מדיניות החברה

\n

החברה תהיה רשאית להצהיר מעת לעת הצהרות מדיניות הנוגעות לעניינים כמו זכאות לחופשה, לידה

\n

חופשה, הטבות לעובדים, שעות עבודה, פוליסות העברה וכו, ועשויות לשנות אותן מעת לעת לפי שיקול דעתה הבלעדי.

\n

כל החלטות מדיניות כאלה של החברה יחייבו אותך ויעקפו את הסכם זה במידה זו.

\n

14. חוק / סמכות שיפוט

\n

העסקתך בחברה כפופה לחוקי המדינה. כל המחלוקות יהיו כפופות לסמכותו של בית המשפט העליון

\n

גוג אראט בלבד.

\n

15. קבלת ההצעה שלנו

\n

אנא אשר את הסכמתך לחוזה העסקה זה על ידי חתימה והחזרת העותק הכפול.

\n

אנו מברכים אותך ומצפים לקבל את קבלתך ולעבוד איתך.

\n

בכבוד רב,

\n

{app_name}

\n

{date}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (17,'pt-br','

Carta De Adesão

\n \n

{data}

\n \n

{employee_name}

\n \n

{address}

\n \n

Assunto: Nomeação para o cargo de {designation}

\n \n

Querido {employee_name},

\n \n

Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e

\n

condições:

\n \n

1. Comentamento do emprego

\n \n

Seu emprego será efetivo, a partir de {start_date}

\n \n

2. Título do emprego

\n \n

Seu cargo de trabalho será {designation}.

\n \n

3. Salário

\n \n

Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.

\n \n

4. Local de postagem

\n \n

Você será postado em {branch}. Você pode, no entanto, ser obrigado a trabalhar em qualquer local de negócios que a Empresa tenha, ou possa posteriormente adquirir.

\n \n

5. Horas de Trabalho

\n \n

Os dias normais de trabalho são de segunda a sexta-feira. Você será obrigado a trabalhar por tais horas, conforme necessário para a quitação adequada de suas funções para a Companhia. As horas de trabalho normais são de {start_time} para {end_time} e você deve trabalhar não menos de {total_horas} horas semanais, e se necessário para horas adicionais dependendo do seu

\n

responsabilidades.

\n \n

6. Leave / Holidays

\n \n

6,1 Você tem direito a licença casual de 12 dias.

\n \n

6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.

\n \n

6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. 

\n \n

7. Natureza dos deveres

\n \n

Você irá executar ao melhor da sua habilidade todos os deveres como são inerentes ao seu cargo e tais deveres adicionais como a empresa pode ligar sobre você para executar, de tempos em tempos. Os seus deveres específicos são estabelecidos no Hereto do Planejamento II.

\n \n

8. Propriedade da empresa

\n \n

Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de

\n \n

o seu emprego, e devolverá toda essa propriedade à Companhia antes de abdicar de sua acusação, falhando qual o custo do mesmo será recuperado de você pela Companhia.

\n \n

9. Borremir / aceitar presentes

\n \n

Você não vai pedir empréstimo ou aceitar qualquer dinheiro, presente, recompensa ou indenização por seus ganhos pessoais de ou de outra forma colocar-se sob obrigação pecuniária a qualquer pessoa / cliente com quem você pode estar tendo relações oficiais.

\n \n

10. Terminação

\n \n

10,1 Sua nomeação pode ser rescindida pela Companhia, sem qualquer razão, dando-lhe não menos do que [aviso] meses de aviso prévio por escrito ou de salário em lieu deste. Para efeito da presente cláusula, o salário deve significar salário base.

\n \n

10,2 Você pode rescindir seu emprego com a Companhia, sem qualquer causa, ao dar nada menos que [Aviso de contratação] meses de aviso prévio ou salário para o período não salvo, deixado após ajuste de folhas pendentes, conforme data de encontro.

\n \n

10,3 Empresa reserva-se o direito de rescindir o seu emprego sumariamente sem qualquer prazo de aviso ou de rescisão se tiver terreno razoável para acreditar que você é culpado de má conduta ou negligência, ou tenha cometido qualquer violação fundamental de contrato, ou tenha causado qualquer perda para a Empresa. 

\n \n

10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e 

\n \n

papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,

\n \n

cartas, notas, dados e semelhantes; e Informações Confidenciais, em sua posse ou sob seu controle relacionado ao seu emprego ou aos negócios de negócios dos clientes.   

\n \n

11. Informações Confidenciais

\n \n

11. 1 Durante o seu emprego com a Companhia você irá dedicar todo o seu tempo, atenção e habilidade para o melhor de sua capacidade de

\n \n

o seu negócio. Você não deve, direta ou indiretamente, se envolver ou associar-se com, estar conectado com, preocupado, empregado, ou tempo ou prosseguir qualquer curso de estudo, sem a permissão prévia do Company.engajado em qualquer outro negócio ou atividades ou qualquer outro cargo ou trabalho parcial ou prosseguir qualquer curso de estudo, sem a permissão prévia do

\n \n

Empresa.

\n \n

11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros 

\n \n

Informações confidenciais relativas ao negócio da Companhia que possam ser conhecidas por você ou confiadas em você por qualquer meio e utilizarão tais registros, documentos e informações apenas de forma devidamente autorizada no interesse da Companhia. Para efeitos da presente cláusula \"Informações confidenciais\" significa informação sobre os negócios da Companhia e a dos seus clientes que não está disponível para o público em geral e que poderá ser aprendida por você no curso do seu emprego. Isso inclui,

\n \n

mas não se limita a, informações relativas à organização, suas listas de clientes, políticas de emprego, pessoal, e informações sobre os produtos da Companhia, processos incluindo ideias, conceitos, projeções, tecnologia, manuais, desenho, desenhos, 

\n \n

especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.

\n \n

11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.

\n \n

11,4 O seu dever de salvaguardar e não os desclos

\n \n

Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.

\n \n

11,5 Violação das condições desta cláusula irá torná-lo sujeito a demissão sumária sob a cláusula acima, além de qualquer outro remédio que a Companhia possa ter contra você em lei.

\n \n

12. Notices

\n \n

Os avisos podem ser conferidos por você à Empresa em seu endereço de escritório registrado. Os avisos podem ser conferidos pela Companhia a você no endereço intimado por você nos registros oficiais.

\n \n

13. Aplicabilidade da Política da Empresa

\n \n

A Companhia tem direito a fazer declarações de política de tempos em tempos relativos a matérias como licença de licença, maternidade

\n \n

sair, benefícios dos empregados, horas de trabalho, políticas de transferência, etc., e pode alterar o mesmo de vez em quando a seu exclusivo critério.

\n \n

Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.

\n \n

14. Direito / Jurisdição

\n \n

Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior

\n \n

Gujarat apenas.

\n \n

15. Aceitação da nossa oferta

\n \n

Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.

\n \n

Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.

\n \n

Seu Sinceramente,

\n \n

{app_name}

\n \n

{data}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (18,'ar','

خطاب الانضمام

\n

{date}

\n

{employee_name}

\n

{address}

\n

الموضوع: موعد لوظيفة {designation}

\n

عزيزي {employee_name} ،

\n

يسعدنا أن نقدم لك منصب {designation} مع {app_name} \"الشركة\" وفقًا للشروط التالية و

\n

الظروف:

\n

1. بدء العمل

\n

سيصبح عملك ساريًا اعتبارًا من {start_date}

\n

2. المسمى الوظيفي

\n

سيكون المسمى الوظيفي الخاص بك هو {designation}.

\n

3. الراتب

\n

سيكون راتبك والمزايا الأخرى على النحو المبين في الجدول 1 ، طيه.

\n

4. مكان الإرسال

\n

سيتم إرسالك إلى {branch}. ومع ذلك ، قد يُطلب منك العمل في أي مكان عمل تمتلكه الشركة ، أو

\n

قد تحصل لاحقًا.

\n

5. ساعات العمل

\n

أيام العمل العادية هي من الاثنين إلى الجمعة. سيُطلب منك العمل لساعات حسب الضرورة لـ

\n

أداء واجباتك على النحو الصحيح تجاه الشركة. ساعات العمل العادية من {start_time} إلى {end_time} وأنت

\n

من المتوقع أن يعمل ما لا يقل عن {total_hours} ساعة كل أسبوع ، وإذا لزم الأمر لساعات إضافية اعتمادًا على

\n

المسؤوليات.

\n

6. الإجازة / العطل

\n

6.1 يحق لك الحصول على إجازة غير رسمية مدتها 12 يومًا.

\n

6.2 يحق لك الحصول على إجازة مرضية مدفوعة الأجر لمدة 12 يوم عمل.

\n

6.3 تخطر الشركة بقائمة الإجازات المعلنة في بداية كل عام.

\n

7. طبيعة الواجبات

\n

ستقوم بأداء أفضل ما لديك من واجبات متأصلة في منصبك ومهام إضافية مثل الشركة

\n

قد يدعوك لأداء ، من وقت لآخر. واجباتك المحددة منصوص عليها في الجدول الثاني بهذه الرسالة.

\n

8. ممتلكات الشركة

\n

ستحافظ دائمًا على ممتلكات الشركة في حالة جيدة ، والتي قد يتم تكليفك بها للاستخدام الرسمي خلال فترة عملها

\n

عملك ، ويجب أن تعيد جميع هذه الممتلكات إلى الشركة قبل التخلي عن الرسوم الخاصة بك ، وإلا فإن التكلفة

\n

نفس الشيء سوف تسترده منك الشركة.

\n

9. الاقتراض / قبول الهدايا

\n

لن تقترض أو تقبل أي أموال أو هدية أو مكافأة أو تعويض مقابل مكاسبك الشخصية من أو تضع نفسك بأي طريقة أخرى

\n

بموجب التزام مالي تجاه أي شخص / عميل قد تكون لديك تعاملات رسمية معه.

\n

10. الإنهاء

\n

10.1 يمكن للشركة إنهاء موعدك ، دون أي سبب ، من خلال إعطائك ما لا يقل عن [إشعار] قبل أشهر

\n

إشعار خطي أو راتب بدلاً منه. لغرض هذا البند ، يقصد بالراتب المرتب الأساسي.

\n

10.2 إنهاء عملك مع الشركة ، دون أي سبب ، من خلال تقديم ما لا يقل عن إشعار الموظف

\n

أشهر الإخطار أو الراتب عن الفترة غير المحفوظة ، المتبقية بعد تعديل الإجازات المعلقة ، كما في التاريخ.

\n

10.3 تحتفظ الشركة بالحق في إنهاء عملك بإيجاز دون أي فترة إشعار أو مدفوعات إنهاء

\n

إذا كان لديه سبب معقول للاعتقاد بأنك مذنب بسوء السلوك أو الإهمال ، أو ارتكبت أي خرق جوهري لـ

\n

العقد ، أو تسبب في أي خسارة للشركة.

\n

10. 4 عند إنهاء عملك لأي سبب من الأسباب ، ستعيد إلى الشركة جميع ممتلكاتك ؛ المستندات و

\n

الأوراق الأصلية ونسخها ، بما في ذلك أي عينات ، وأدبيات ، وعقود ، وسجلات ، وقوائم ، ورسومات ، ومخططات ،

\n

الرسائل والملاحظات والبيانات وما شابه ذلك ؛ والمعلومات السرية التي بحوزتك أو تحت سيطرتك والمتعلقة بك

\n

التوظيف أو الشؤون التجارية للعملاء.

\n

11. المعلومات السرية

\n

11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات

\n

عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو

\n

الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو

\n

الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من

\n

شركة.

\n

11. المعلومات السرية

\n

11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات

\n

عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو

\n

الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو

\n

الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من

\n

شركة.

\n

11.2 يجب عليك دائمًا الحفاظ على أعلى درجة من السرية والحفاظ على سرية السجلات والوثائق وغيرها

\n

المعلومات السرية المتعلقة بأعمال الشركة والتي قد تكون معروفة لك أو مخولة لك بأي وسيلة

\n

ولن تستخدم هذه السجلات والمستندات والمعلومات إلا بالطريقة المصرح بها حسب الأصول لصالح الشركة. إلى عن على

\n

أغراض هذا البند \"المعلومات السرية\" تعني المعلومات المتعلقة بأعمال الشركة وعملائها

\n

التي لا تتوفر لعامة الناس والتي قد تتعلمها أثناء عملك. هذا يشمل،

\n

على سبيل المثال لا الحصر ، المعلومات المتعلقة بالمنظمة وقوائم العملاء وسياسات التوظيف والموظفين والمعلومات

\n

حول منتجات الشركة وعملياتها بما في ذلك الأفكار والمفاهيم والإسقاطات والتكنولوجيا والكتيبات والرسم والتصاميم ،

\n

المواصفات وجميع الأوراق والسير الذاتية والسجلات والمستندات الأخرى التي تحتوي على هذه المعلومات السرية.

\n

11.3 لن تقوم في أي وقت بإزالة أي معلومات سرية من المكتب دون إذن.

\n

11.4 واجبك في الحماية وعدم الإفشاء

\n

تظل المعلومات السرية سارية بعد انتهاء أو إنهاء هذه الاتفاقية و / أو عملك مع الشركة.

\n

11.5 سوف يجعلك خرق شروط هذا البند عرضة للفصل بإجراءات موجزة بموجب الفقرة أعلاه بالإضافة إلى أي

\n

أي تعويض آخر قد يكون للشركة ضدك في القانون.

\n

12. الإخطارات

\n

يجوز لك إرسال إخطارات إلى الشركة على عنوان مكتبها المسجل. يمكن أن ترسل لك الشركة إشعارات على

\n

العنوان الذي أشرت إليه في السجلات الرسمية.

\n

13. تطبيق سياسة الشركة

\n

يحق للشركة تقديم إعلانات السياسة من وقت لآخر فيما يتعلق بمسائل مثل استحقاق الإجازة والأمومة

\n

الإجازة ، ومزايا الموظفين ، وساعات العمل ، وسياسات النقل ، وما إلى ذلك ، ويمكن تغييرها من وقت لآخر وفقًا لتقديرها الخاص.

\n

جميع قرارات سياسة الشركة هذه ملزمة لك ويجب أن تلغي هذه الاتفاقية إلى هذا الحد.

\n

14. القانون الحاكم / الاختصاص القضائي

\n

يخضع عملك في الشركة لقوانين الدولة. تخضع جميع النزاعات للاختصاص القضائي للمحكمة العليا

\n

غوجارات فقط.

\n

15. قبول عرضنا

\n

يرجى تأكيد قبولك لعقد العمل هذا من خلال التوقيع وإعادة النسخة المكررة.

\n

نرحب بكم ونتطلع إلى تلقي موافقتكم والعمل معكم.

\n

تفضلوا بقبول فائق الاحترام،

\n

{app_name}

\n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (19,'da','

Tilslutningsbrev

\n \n

{date}

\n

{employee_name}

\n

{address}

\n

Emne: Udnævnelse til stillingen som {designation}

\n

Kære {employee_name}

\n

Vi er glade for at kunne tilbyde dig stillingen som {designation} hos {app_name} \"Virksomheden\" på følgende vilkår og

\n

betingelser:

\n

1. Påbegyndelse af ansættelse

\n

Din ansættelse træder i kraft fra {start_date}

\n

2. Jobtitel

\n

Din jobtitel vil være {designation}.

\n

3. Løn

\n

Din løn og andre goder vil være som angivet i skema 1, hertil.

\n

4. Udstationeringssted

\n

Du vil blive slået op på {branch}. Du kan dog blive bedt om at arbejde på ethvert forretningssted, som virksomheden har, eller

\n

senere kan erhverve.

\n \n \n

5. Arbejdstimer

\n \n

De normale arbejdsdage er mandag til fredag. Du vil blive forpligtet til at arbejde i de timer, som er nødvendige for

\n \n

behørig varetagelse af dine pligter over for virksomheden. Den normale arbejdstid er fra {start_time} til {end_time}, og det er du

\n \n

forventes at arbejde ikke mindre end {total_hours} timer hver uge, og om nødvendigt yderligere timer afhængigt af din

\n \n

ansvar.

\n \n \n \n

6. Orlov/Ferie

\n \n

6.1 Du har ret til tilfældig ferie på 12 dage.

\n \n

6.2 Du har ret til 12 arbejdsdages sygefravær med løn.

\n \n

6.3 Virksomheden skal meddele en liste over erklærede helligdage i begyndelsen af ​​hvert år.

\n \n \n \n

7. Arbejdsopgavernes art

\n \n

Du vil efter bedste evne udføre alle de opgaver, der er iboende i din stilling og sådanne yderligere opgaver som virksomheden

\n \n

kan opfordre dig til at optræde, fra tid til anden. Dine specifikke pligter er beskrevet i skema II hertil.

\n \n \n

8. Firmaejendom

\n \n

Du vil altid vedligeholde virksomhedens ejendom i god stand, som kan blive overdraget til dig til officiel brug i løbet af

\n \n

din ansættelse, og skal returnere al sådan ejendom til virksomheden, før du opgiver din afgift, i modsat fald vil omkostningerne

\n \n

af samme vil blive inddrevet fra dig af virksomheden.

\n \n \n \n

9. Lån/modtagelse af gaver

\n \n

Du vil ikke låne eller acceptere nogen penge, gave, belønning eller kompensation for dine personlige gevinster fra eller på anden måde placere dig selv

\n \n

under en økonomisk forpligtelse over for enhver person/kunde, som du måtte have officielle forbindelser med.

\n \n

10. Opsigelse

\n \n

10.1 Din ansættelse kan opsiges af virksomheden uden nogen grund ved at give dig mindst [varsel] måneder før

\n \n

skriftligt varsel eller løn i stedet herfor. Ved løn forstås i denne paragraf grundløn.

\n \n

10.2 Du kan opsige dit ansættelsesforhold i virksomheden uden nogen grund ved at give mindst [Medarbejdermeddelelse]

\n \n

måneders forudgående varsel eller løn for den ikke-opsparede periode, tilbage efter regulering af afventende orlov, som på dato.

\n \n

10.3 Virksomheden forbeholder sig retten til at opsige dit ansættelsesforhold midlertidigt uden opsigelsesfrist eller opsigelsesbetaling

\n \n

hvis den har rimelig grund til at tro, at du er skyldig i forseelse eller uagtsomhed, eller har begået et grundlæggende brud på

\n \n

kontrakt, eller forårsaget tab for virksomheden.

\n \n

10. 4 Ved ophør af din ansættelse uanset årsag, vil du returnere al ejendom til virksomheden; dokumenter, og

\n \n

papir, både originale og kopier heraf, inklusive prøver, litteratur, kontrakter, optegnelser, lister, tegninger, tegninger,

\n \n

breve, notater, data og lignende; og fortrolige oplysninger, i din besiddelse eller under din kontrol vedrørende din

\n \n

ansættelse eller til kunders forretningsforhold.

\n

11. Fortrolige oplysninger

\n \n

11. 1 Under din ansættelse i virksomheden vil du bruge al din tid, opmærksomhed og dygtighed efter bedste evne til

\n \n

sin virksomhed. Du må ikke, direkte eller indirekte, engagere eller associere dig med, være forbundet med, bekymret, ansat eller

\n \n

tid eller forfølge et hvilket som helst studieforløb uden forudgående tilladelse fra virksomheden. involveret i anden virksomhed eller

\n \n

aktiviteter eller enhver anden stilling eller arbejde på deltid eller forfølge ethvert studieforløb uden forudgående tilladelse fra

\n \n

Selskab.

\n

11.2 Du skal altid opretholde den højeste grad af fortrolighed og opbevare optegnelser, dokumenter og andre fortrolige oplysninger.

\n \n

Fortrolige oplysninger vedrørende virksomhedens virksomhed, som kan være kendt af dig eller betroet dig på nogen måde

\n \n

og du vil kun bruge sådanne optegnelser, dokumenter og oplysninger på en behørigt autoriseret måde i virksomhedens interesse. Til

\n \n

formålene med denne paragraf \"Fortrolige oplysninger\" betyder oplysninger om virksomhedens og dets kunders forretning

\n \n

som ikke er tilgængelig for offentligheden, og som du kan lære i løbet af din ansættelse. Dette inkluderer,

\n \n

men er ikke begrænset til information vedrørende organisationen, dens kundelister, ansættelsespolitikker, personale og information

\n \n

om virksomhedens produkter, processer, herunder ideer, koncepter, projektioner, teknologi, manualer, tegning, design,

\n \n

specifikationer og alle papirer, CVer, optegnelser og andre dokumenter, der indeholder sådanne fortrolige oplysninger.

\n \n

11.3 Du vil på intet tidspunkt fjerne fortrolige oplysninger fra kontoret uden tilladelse.

\n \n

11.4 Din pligt til at beskytte og ikke oplyse

\n \n

e Fortrolige oplysninger vil overleve udløbet eller opsigelsen af ​​denne aftale og/eller din ansættelse hos virksomheden.

\n \n

11.5 Overtrædelse af betingelserne i denne klausul vil gøre dig ansvarlig for midlertidig afskedigelse i henhold til klausulen ovenfor ud over evt.

\n \n

andre retsmidler, som virksomheden måtte have mod dig i henhold til loven.

\n

12. Meddelelser

\n \n

Meddelelser kan gives af dig til virksomheden på dets registrerede kontoradresse. Meddelelser kan gives af virksomheden til dig på

\n \n

den adresse, du har angivet i de officielle optegnelser.

\n \n \n \n

13. Anvendelse af virksomhedens politik

\n \n

Virksomheden er berettiget til fra tid til anden at afgive politiske erklæringer vedrørende sager som ret til orlov, barsel

\n \n

orlov, ansattes ydelser, arbejdstider, overførselspolitikker osv., og kan ændre det samme fra tid til anden efter eget skøn.

\n \n

Alle sådanne politiske beslutninger fra virksomheden er bindende for dig og tilsidesætter denne aftale i det omfang.

\n \n \n \n

14. Gældende lov/Jurisdiktion

\n \n

Din ansættelse hos virksomheden er underlagt landets love. Alle tvister er underlagt High Courts jurisdiktion

\n \n

Kun Gujarat.

\n \n \n \n

15. Accept af vores tilbud

\n \n

Bekræft venligst din accept af denne ansættelseskontrakt ved at underskrive og returnere kopien.

\n \n \n \n

Vi byder dig velkommen og ser frem til at modtage din accept og til at arbejde sammen med dig.

\n \n \n \n

Venlig hilsen,

\n \n

{app_name}

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (20,'de','

Beitrittsbrief

\n \n

{date}

\n

{employee_name}

\n

{address}

\n \n \n \n

Betreff: Ernennung für die Stelle von {designation}

\n \n \n \n \n \n \n \n

Sehr geehrter {employee_name},

\n \n \n \n

Wir freuen uns, Ihnen die Position von {designation} bei {app_name} dem „Unternehmen“ zu den folgenden Bedingungen anbieten zu können

\n \n

Bedingungen:

\n \n \n

1. Aufnahme des Arbeitsverhältnisses

\n \n

Ihre Anstellung gilt ab dem {start_date}

\n \n \n

2. Berufsbezeichnung

\n \n

Ihre Berufsbezeichnung lautet {designation}.

\n \n \n

3. Gehalt

\n \n

Ihr Gehalt und andere Leistungen sind in Anhang 1 zu diesem Dokument aufgeführt.

\n \n \n

4. Postort

\n \n

Sie werden bei {branch} eingestellt. Es kann jedoch erforderlich sein, dass Sie an jedem Geschäftssitz arbeiten, den das Unternehmen hat, oder

\n \n

später erwerben kann.

\n \n \n

5. Arbeitszeit

\n

Die normalen Arbeitstage sind Montag bis Freitag. Sie müssen so viele Stunden arbeiten, wie es für die erforderlich ist

\n

ordnungsgemäße Erfüllung Ihrer Pflichten gegenüber dem Unternehmen. Die normalen Arbeitszeiten sind von {start_time} bis {end_time} und Sie sind es

\n

voraussichtlich nicht weniger als {total_hours} Stunden pro Woche arbeiten, und falls erforderlich, abhängig von Ihren zusätzlichen Stunden

\n

Verantwortlichkeiten.

\n \n \n \n

6. Urlaub/Urlaub

\n \n

6.1 Sie haben Anspruch auf Freizeiturlaub von 12 Tagen.

\n \n

6.2 Sie haben Anspruch auf 12 Arbeitstage bezahlten Krankenurlaub.

\n \n

6.3 Das Unternehmen teilt zu Beginn jedes Jahres eine Liste der erklärten Feiertage mit.

\n \n \n \n

7. Art der Pflichten

\n \n

Sie werden alle Aufgaben, die mit Ihrer Funktion verbunden sind, sowie alle zusätzlichen Aufgaben als Unternehmen nach besten Kräften erfüllen

\n \n

kann Sie von Zeit zu Zeit zur Leistung auffordern. Ihre spezifischen Pflichten sind in Anhang II zu diesem Dokument aufgeführt.

\n \n \n \n

8. Firmeneigentum

\n \n

Sie werden das Firmeneigentum, das Ihnen im Laufe der Zeit für offizielle Zwecke anvertraut werden kann, stets in gutem Zustand halten

\n \n

Ihrer Anstellung und muss all dieses Eigentum an das Unternehmen zurückgeben, bevor Sie Ihre Gebühr aufgeben, andernfalls die Kosten

\n \n

derselben werden von der Gesellschaft von Ihnen zurückgefordert.

\n \n \n \n

9. Leihen/Annehmen von Geschenken

\n \n

Sie werden kein Geld, Geschenk, keine Belohnung oder Entschädigung für Ihre persönlichen Gewinne von sich leihen oder annehmen oder sich anderweitig platzieren

\n \n

unter finanzieller Verpflichtung gegenüber Personen/Kunden, mit denen Sie möglicherweise dienstliche Beziehungen unterhalten.

\n \n

10. Kündigung

\n \n

10.1 Ihre Ernennung kann vom Unternehmen ohne Angabe von Gründen gekündigt werden, indem es Ihnen mindestens [Kündigung] Monate im Voraus mitteilt

\n \n

schriftliche Kündigung oder Gehalt statt dessen. Gehalt im Sinne dieser Klausel bedeutet Grundgehalt.

\n \n

10.2 Sie können Ihre Anstellung beim Unternehmen ohne Angabe von Gründen kündigen, indem Sie mindestens [Mitarbeitermitteilung]

\n \n

Kündigungsfrist von Monaten oder Gehalt für den nicht angesparten Zeitraum, der nach Anpassung der anstehenden Urlaubstage übrig bleibt, zum Stichtag.

\n \n

10.3 Das Unternehmen behält sich das Recht vor, Ihr Arbeitsverhältnis ohne Kündigungsfrist oder Abfindungszahlung fristlos zu kündigen

\n \n

wenn es begründeten Anlass zu der Annahme gibt, dass Sie sich eines Fehlverhaltens oder einer Fahrlässigkeit schuldig gemacht haben oder einen wesentlichen Verstoß begangen haben

\n \n

oder dem Unternehmen Verluste verursacht haben.

\n \n

10. 4 Bei Beendigung Ihres Beschäftigungsverhältnisses, aus welchem ​​Grund auch immer, werden Sie sämtliches Eigentum an das Unternehmen zurückgeben; Dokumente und

\n \n

Papier, sowohl Original als auch Kopien davon, einschließlich aller Muster, Literatur, Verträge, Aufzeichnungen, Listen, Zeichnungen, Blaupausen,

\n \n

Briefe, Notizen, Daten und dergleichen; und vertrauliche Informationen, die sich in Ihrem Besitz oder unter Ihrer Kontrolle befinden und sich auf Sie beziehen

\n \n

Beschäftigung oder für die geschäftlichen Angelegenheiten der Kunden.

\n \n

11. Confidential Information

\n \n

11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for

\n \n

its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or

\n \n

time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or

\n \n

activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the

\n \n

Company.

\n \n

11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other 

\n \n

Confidential Information relating to the business of the Company which may be known to you or confided in you by any means

\n \n

and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For

\n \n

the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers

\n \n

which is not available to the general public and which may be learned by you in the course of your employment. This includes,

\n \n

but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information

\n \n

about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, 

\n \n

specifications, and all papers, resumes, records and other documents containing such Confidential Information.

\n \n

11.3 At no time, will you remove any Confidential Information from the office without permission.

\n \n

11.4 Your duty to safeguard and not disclos

\n \n

e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.

\n \n

11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any

\n \n

other remedy the Company may have against you in law.

\n

12. Notices

\n \n

Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at

\n \n

the address intimated by you in the official records.

\n \n \n \n

13. Applicability of Company Policy

\n \n

The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity

\n \n

leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.

\n \n

All such policy decisions of the Company shall be binding on you and shall override this Agreement to that  extent.

\n \n \n \n

14. Governing Law/Jurisdiction

\n \n

Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court

\n \n

Gujarat only.

\n \n \n \n

15. Acceptance of our offer

\n \n

Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.

\n \n \n \n

We welcome you and look forward to receiving your acceptance and to working with you.

\n \n \n \n

Yours Sincerely,

\n \n

{app_name}

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (21,'en','

Joining Letter

\n

{date}

\n

{employee_name}

\n

{address}

\n

Subject: Appointment for the post of {designation}

\n

Dear {employee_name},

\n

We are pleased to offer you the position of {designation} with {app_name} theCompany on the following terms and

\n

conditions:

\n

1. Commencement of employment

\n

Your employment will be effective, as of {start_date}

\n

2. Job title

\n

Your job title will be{designation}.

\n

3. Salary

\n

Your salary and other benefits will be as set out in Schedule 1, hereto.

\n

4. Place of posting

\n

You will be posted at {branch}. You may however be required to work at any place of business which the Company has, or

\n

may later acquire.

\n

5. Hours of Work

\n

The normal working days are Monday through Friday. You will be required to work for such hours as necessary for the

\n

proper discharge of your duties to the Company. The normal working hours are from {start_time} to {end_time} and you are

\n

expected to work not less than {total_hours} hours each week, and if necessary for additional hours depending on your

\n

responsibilities.

\n

6. Leave/Holidays

\n

6.1 You are entitled to casual leave of 12 days.

\n

6.2 You are entitled to 12 working days of paid sick leave.

\n

6.3 The Company shall notify a list of declared holidays at the beginning of each year.

\n

7. Nature of duties

\n

You will perform to the best of your ability all the duties as are inherent in your post and such additional duties as the company

\n

may call upon you to perform, from time to time. Your specific duties are set out in Schedule II hereto.

\n

8. Company property

\n

You will always maintain in good condition Company property, which may be entrusted to you for official use during the course of

\n

your employment, and shall return all such property to the Company prior to relinquishment of your charge, failing which the cost

\n

of the same will be recovered from you by the Company.

\n

9. Borrowing/accepting gifts

\n

You will not borrow or accept any money, gift, reward, or compensation for your personal gains from or otherwise place yourself

\n

under pecuniary obligation to any person/client with whom you may be having official dealings.

\n

10. Termination

\n

10.1 Your appointment can be terminated by the Company, without any reason, by giving you not less than [Notice] months prior

\n

notice in writing or salary in lieu thereof. For the purpose of this clause, salary shall mean basic salary.

\n

10.2 You may terminate your employment with the Company, without any cause, by giving no less than [Employee Notice]

\n

months prior notice or salary for the unsaved period, left after adjustment of pending leaves, as on date.

\n

10.3 The Company reserves the right to terminate your employment summarily without any notice period or termination payment

\n

if it has reasonable ground to believe you are guilty of misconduct or negligence, or have committed any fundamental breach of

\n

contract, or caused any loss to the Company.

\n

10. 4 On the termination of your employment for whatever reason, you will return to the Company all property; documents, and

\n

paper, both original and copies thereof, including any samples, literature, contracts, records, lists, drawings, blueprints,

\n

letters, notes, data and the like; and Confidential Information, in your possession or under your control relating to your

\n

employment or to clients business affairs.

\n

11. Confidential Information

\n

11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for

\n

its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or

\n

time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or

\n

activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the

\n

Company.

\n

11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other

\n

Confidential Information relating to the business of the Company which may be known to you or confided in you by any means

\n

and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For

\n

the purposes of this clauseConfidential Information means information about the Companys business and that of its customers

\n

which is not available to the general public and which may be learned by you in the course of your employment. This includes,

\n

but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information

\n

about the Companys products, processes including ideas, concepts, projections, technology, manuals, drawing, designs,

\n

specifications, and all papers, resumes, records and other documents containing such Confidential Information.

\n

11.3 At no time, will you remove any Confidential Information from the office without permission.

\n

11.4 Your duty to safeguard and not disclos

\n

e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.

\n

11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any

\n

other remedy the Company may have against you in law.

\n

12. Notices

\n

Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at

\n

the address intimated by you in the official records.

\n

13. Applicability of Company Policy

\n

The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity

\n

leave, employees benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.

\n

All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.

\n

14. Governing Law/Jurisdiction

\n

Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court

\n

Gujarat only.

\n

15. Acceptance of our offer

\n

Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.

\n

We welcome you and look forward to receiving your acceptance and to working with you.

\n

Yours Sincerely,

\n

{app_name}

\n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (22,'es','

Carta de unión

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n \n \n

Asunto: Nombramiento para el puesto de {designation}

\n \n \n \n

Estimado {employee_name},

\n \n

Nos complace ofrecerle el puesto de {designation} con {app_name}, la Compañía en los siguientes términos y

\n \n

condiciones:

\n \n \n

1. Comienzo del empleo

\n \n

Su empleo será efectivo a partir del {start_date}

\n \n \n

2. Título del trabajo

\n

El título de su trabajo será {designation}.

\n \n

3. Salario

\n \n

Su salario y otros beneficios serán los establecidos en el Anexo 1 del presente.

\n \n \n

4. Lugar de destino

\n

Se le publicará en {branch}. Sin embargo, es posible que deba trabajar en cualquier lugar de negocios que tenga la Compañía, o

\n \n

puede adquirir posteriormente.

\n \n \n \n

5. Horas de trabajo

\n \n

Los días normales de trabajo son de lunes a viernes. Se le pedirá que trabaje las horas que sean necesarias para el

\n \n

cumplimiento adecuado de sus deberes para con la Compañía. El horario normal de trabajo es de {start_time} a {end_time} y usted está

\n \n

se espera que trabaje no menos de {total_hours} horas cada semana y, si es necesario, horas adicionales dependiendo de su

\n \n

responsabilidades.

\n \n \n \n

6. Licencia/Vacaciones

\n \n

6.1 Tiene derecho a un permiso eventual de 12 días.

\n \n

6.2 Tiene derecho a 12 días laborables de baja por enfermedad remunerada.

\n \n

6.3 La Compañía deberá notificar una lista de días festivos declarados al comienzo de cada año.

\n \n \n \n

7. Naturaleza de los deberes

\n \n

Desempeñará lo mejor que pueda todas las funciones inherentes a su puesto y aquellas funciones adicionales que la empresa

\n \n

puede pedirte que actúes, de vez en cuando. Sus deberes específicos se establecen en el Anexo II del presente.

\n \n \n \n

8. Propiedad de la empresa

\n \n

Siempre mantendrá en buenas condiciones la propiedad de la Compañía, que se le puede confiar para uso oficial durante el curso de

\n \n

su empleo, y devolverá todos esos bienes a la Compañía antes de renunciar a su cargo, en caso contrario, el costo

\n \n

de la misma será recuperada de usted por la Compañía.

\n \n \n \n

9. Tomar prestado/aceptar regalos

\n \n

No pedirá prestado ni aceptará dinero, obsequios, recompensas o compensaciones por sus ganancias personales o se colocará de otra manera

\n \n

bajo obligación pecuniaria a cualquier persona/cliente con quien pueda tener tratos oficiales.

\n

10. Terminación

\n \n

10.1 Su nombramiento puede ser rescindido por la Compañía, sin ningún motivo, al darle no menos de [Aviso] meses antes

\n \n

aviso por escrito o salario en su lugar. Para los efectos de esta cláusula, se entenderá por salario el salario base.

\n \n

10.2 Puede rescindir su empleo con la Compañía, sin ninguna causa, dando no menos de [Aviso al empleado]

\n \n

meses de preaviso o salario por el período no ahorrado, remanente después del ajuste de licencias pendientes, a la fecha.

\n \n

10.3 La Compañía se reserva el derecho de rescindir su empleo sumariamente sin ningún período de preaviso o pago por rescisión

\n \n

si tiene motivos razonables para creer que usted es culpable de mala conducta o negligencia, o ha cometido una violación fundamental de

\n \n

contrato, o causado cualquier pérdida a la Compañía.

\n \n

10. 4 A la terminación de su empleo por cualquier motivo, devolverá a la Compañía todos los bienes; documentos, y

\n \n

papel, tanto en original como en copia del mismo, incluyendo cualquier muestra, literatura, contratos, registros, listas, dibujos, planos,

\n \n

cartas, notas, datos y similares; e Información confidencial, en su posesión o bajo su control en relación con su

\n \n

empleo o a los asuntos comerciales de los clientes.

\n

11. Información confidencial

\n \n

11. 1 Durante su empleo en la Compañía, dedicará todo su tiempo, atención y habilidad lo mejor que pueda para

\n \n

son negocios. Usted no deberá, directa o indirectamente, comprometerse o asociarse con, estar conectado, interesado, empleado o

\n \n

tiempo o seguir cualquier curso de estudio, sin el permiso previo de la Compañía. participar en cualquier otro negocio o

\n \n

actividades o cualquier otro puesto o trabajo a tiempo parcial o seguir cualquier curso de estudio, sin el permiso previo de la

\n \n

Compañía.

\n \n

11.2 Siempre debe mantener el más alto grado de confidencialidad y mantener como confidenciales los registros, documentos y otros

\n \n

Información confidencial relacionada con el negocio de la Compañía que usted pueda conocer o confiarle por cualquier medio

\n \n

y utilizará dichos registros, documentos e información solo de manera debidamente autorizada en interés de la Compañía. Para

\n \n

A los efectos de esta cláusula, \"Información confidencial\" significa información sobre el negocio de la Compañía y el de sus clientes.

\n \n

que no está disponible para el público en general y que usted puede aprender en el curso de su empleo. Esto incluye,

\n \n

pero no se limita a, información relacionada con la organización, sus listas de clientes, políticas de empleo, personal e información

\n \n

sobre los productos de la Compañía, procesos que incluyen ideas, conceptos, proyecciones, tecnología, manuales, dibujos, diseños,

\n \n

especificaciones, y todos los papeles, currículos, registros y otros documentos que contengan dicha Información Confidencial.

\n \n

11.3 En ningún momento, sacará ninguna Información Confidencial de la oficina sin permiso.

\n \n

11.4 Su deber de salvaguardar y no divulgar

\n \n

La Información Confidencial sobrevivirá a la expiración o terminación de este Acuerdo y/o su empleo con la Compañía.

\n \n

11.5 El incumplimiento de las condiciones de esta cláusula le hará pasible de despido sumario en virtud de la cláusula anterior además de cualquier

\n \n

otro recurso que la Compañía pueda tener contra usted por ley.

\n

12. Avisos

\n \n

Usted puede enviar notificaciones a la Compañía a su domicilio social. La Compañía puede enviarle notificaciones a usted en

\n \n

la dirección indicada por usted en los registros oficiales.

\n \n \n \n

13. Aplicabilidad de la política de la empresa

\n \n

La Compañía tendrá derecho a hacer declaraciones de política de vez en cuando relacionadas con asuntos como el derecho a licencia, maternidad

\n \n

licencia, beneficios de los empleados, horas de trabajo, políticas de transferencia, etc., y puede modificarlas de vez en cuando a su sola discreción.

\n \n

Todas las decisiones políticas de la Compañía serán vinculantes para usted y anularán este Acuerdo en esa medida.

\n \n \n \n

14. Ley aplicable/Jurisdicción

\n \n

Su empleo con la Compañía está sujeto a las leyes del País. Todas las disputas estarán sujetas a la jurisdicción del Tribunal Superior

\n \n

Sólo Gujarat.

\n \n \n \n

15. Aceptación de nuestra oferta

\n \n

Por favor, confirme su aceptación de este Contrato de Empleo firmando y devolviendo el duplicado.

\n \n \n \n

Le damos la bienvenida y esperamos recibir su aceptación y trabajar con usted.

\n \n \n \n

Tuyo sinceramente,

\n \n

{app_name}

\n \n

{date}

\n ',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (23,'fr','

Lettre dadhésion

\n \n \n

{date}

\n \n

{employee_name}

\n

{address}

\n \n \n

Objet : Nomination pour le poste de {designation}

\n \n \n \n

Cher {employee_name},

\n \n \n

Nous sommes heureux de vous proposer le poste de {designation} avec {app_name} la \"Société\" selon les conditions suivantes et

\n \n

les conditions:

\n \n

1. Entrée en fonction

\n \n

Votre emploi sera effectif à partir du {start_date}

\n \n \n \n

2. Intitulé du poste

\n \n

Votre titre de poste sera {designation}.

\n \n \n \n

3. Salaire

\n \n

Votre salaire et vos autres avantages seront tels quindiqués à lannexe 1 ci-jointe.

\n \n \n

4. Lieu de détachement

\n

Vous serez affecté à {branch}. Vous pouvez cependant être tenu de travailler dans nimporte quel lieu daffaires que la Société a, ou

\n \n

pourra acquérir plus tard.

\n \n \n \n

5. Heures de travail

\n \n

Les jours ouvrables normaux sont du lundi au vendredi. Vous devrez travailler les heures nécessaires à la

\n \n

lexercice correct de vos fonctions envers la Société. Les heures normales de travail vont de {start_time} à {end_time} et vous êtes

\n \n

devrait travailler au moins {total_hours} heures par semaine, et si nécessaire des heures supplémentaires en fonction de votre

\n \n

responsabilités.

\n \n

6. Congés/Vacances

\n \n

6.1 Vous avez droit à un congé occasionnel de 12 jours.

\n \n

6.2 Vous avez droit à 12 jours ouvrables de congé de maladie payé.

\n \n

6.3 La Société communiquera une liste des jours fériés déclarés au début de chaque année.

\n \n \n \n

7. Nature des fonctions

\n \n

Vous exécuterez au mieux de vos capacités toutes les tâches inhérentes à votre poste et les tâches supplémentaires que lentreprise

\n \n

peut faire appel à vous pour effectuer, de temps à autre. Vos fonctions spécifiques sont énoncées à lannexe II ci-jointe.

\n \n \n \n

8. Biens sociaux

\n \n

Vous maintiendrez toujours en bon état les biens de la Société, qui peuvent vous être confiés pour un usage officiel au cours de votre

\n \n

votre emploi, et doit restituer tous ces biens à la Société avant labandon de votre charge, à défaut de quoi le coût

\n \n

de même seront récupérés auprès de vous par la Société.

\n \n \n \n

9. Emprunter/accepter des cadeaux

\n \n

Vous nemprunterez ni naccepterez dargent, de cadeau, de récompense ou de compensation pour vos gains personnels ou vous placerez autrement

\n \n

sous obligation pécuniaire envers toute personne/client avec qui vous pourriez avoir des relations officielles.

\n

10. Résiliation

\n \n

10.1 Votre nomination peut être résiliée par la Société, sans aucune raison, en vous donnant au moins [Préavis] mois avant

\n \n

un préavis écrit ou un salaire en tenant lieu. Aux fins de la présente clause, salaire sentend du salaire de base.

\n \n

10.2 Vous pouvez résilier votre emploi au sein de la Société, sans motif, en donnant au moins [Avis à lemployé]

\n \n

mois de préavis ou de salaire pour la période non épargnée, restant après régularisation des congés en attente, à la date.

\n \n

10.3 La Société se réserve le droit de résilier votre emploi sans préavis ni indemnité de licenciement.

\n \n

sil a des motifs raisonnables de croire que vous êtes coupable dinconduite ou de négligence, ou que vous avez commis une violation fondamentale de

\n \n

contrat, ou causé une perte à la Société.

\n \n

10. 4 À la fin de votre emploi pour quelque raison que ce soit, vous restituerez à la Société tous les biens ; document, et

\n \n

papier, à la fois loriginal et les copies de celui-ci, y compris les échantillons, la littérature, les contrats, les dossiers, les listes, les dessins, les plans,

\n \n

lettres, notes, données et similaires; et Informations confidentielles, en votre possession ou sous votre contrôle relatives à votre

\n \n

lemploi ou aux affaires commerciales des clients.

\n

11. Informations confidentielles

\n \n

11. 1 Au cours de votre emploi au sein de la Société, vous consacrerez tout votre temps, votre attention et vos compétences au mieux de vos capacités pour

\n \n

son affaire. Vous ne devez pas, directement ou indirectement, vous engager ou vous associer à, être lié à, concerné, employé ou

\n \n

temps ou poursuivre quelque programme détudes que ce soit, sans lautorisation préalable de la Société. engagé dans toute autre entreprise ou

\n \n

activités ou tout autre poste ou travail à temps partiel ou poursuivre des études quelconques, sans lautorisation préalable du

\n \n

Compagnie.

\n \n

11.2 Vous devez toujours maintenir le plus haut degré de confidentialité et garder confidentiels les dossiers, documents et autres

\n \n

Informations confidentielles relatives à lactivité de la Société dont vous pourriez avoir connaissance ou qui vous seraient confiées par tout moyen

\n \n

et vous nutiliserez ces registres, documents et informations que dune manière dûment autorisée dans lintérêt de la Société. Pour

\n \n

aux fins de la présente clause « Informations confidentielles » désigne les informations sur les activités de la Société et celles de ses clients

\n \n

qui nest pas accessible au grand public et dont vous pourriez avoir connaissance dans le cadre de votre emploi. Ceci comprend,

\n \n

mais sans sy limiter, les informations relatives à lorganisation, ses listes de clients, ses politiques demploi, son personnel et les informations

\n \n

sur les produits, les processus de la Société, y compris les idées, les concepts, les projections, la technologie, les manuels, les dessins, les conceptions,

\n \n

spécifications, et tous les papiers, curriculum vitae, dossiers et autres documents contenant de telles informations confidentielles.

\n \n

11.3 À aucun moment, vous ne retirerez des informations confidentielles du bureau sans autorisation.

\n \n

11.4 Votre devoir de protéger et de ne pas divulguer

\n \n

Les Informations confidentielles survivront à lexpiration ou à la résiliation du présent Contrat et/ou à votre emploi au sein de la Société.

\n \n

11.5 La violation des conditions de cette clause vous rendra passible dun renvoi sans préavis en vertu de la clause ci-dessus en plus de tout

\n \n

autre recours que la Société peut avoir contre vous en droit.

\n

12. Avis

\n \n

Des avis peuvent être donnés par vous à la Société à ladresse de son siège social. Des avis peuvent vous être donnés par la Société à

\n \n

ladresse que vous avez indiquée dans les registres officiels.

\n \n \n \n

13. Applicabilité de la politique de lentreprise

\n \n

La Société est autorisée à faire des déclarations de politique de temps à autre concernant des questions telles que le droit aux congés, la maternité

\n \n

les congés, les avantages sociaux des employés, les heures de travail, les politiques de transfert, etc., et peut les modifier de temps à autre à sa seule discrétion.

\n \n

Toutes ces décisions politiques de la Société vous lieront et prévaudront sur le présent Contrat dans cette mesure.

\n \n \n \n

14. Droit applicable/juridiction

\n \n

Votre emploi au sein de la Société est soumis aux lois du pays. Tous les litiges seront soumis à la compétence du tribunal de grande instance

\n \n

Gujarat uniquement.

\n \n \n \n

15. Acceptation de notre offre

\n \n

Veuillez confirmer votre acceptation de ce contrat de travail en signant et en renvoyant le duplicata.

\n \n \n \n

Nous vous souhaitons la bienvenue et nous nous réjouissons de recevoir votre acceptation et de travailler avec vous.

\n \n \n \n

Cordialement,

\n \n

{app_name}

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (24,'id','

Surat Bergabung

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n \n \n

Perihal: Pengangkatan untuk jabatan {designation}

\n \n \n

{employee_name} yang terhormat,

\n \n

Kami dengan senang hati menawarkan kepada Anda, posisi {designation} dengan {app_name} sebagai Perusahaan dengan persyaratan dan

\n \n

kondisi:

\n \n \n \n

1. Mulai bekerja

\n \n

Pekerjaan Anda akan efektif, mulai {start_date}

\n \n \n

2. Jabatan

\n

Jabatan Anda adalah {designation}.

\n \n

3. Gaji

\n

Gaji Anda dan tunjangan lainnya akan diatur dalam Jadwal 1, di sini.

\n \n \n

4. Tempat posting

\n \n

Anda akan diposkan di {branch}. Namun Anda mungkin diminta untuk bekerja di tempat bisnis mana pun yang dimiliki Perusahaan, atau

\n \n

nantinya dapat memperoleh.

\n \n \n \n

5. Jam Kerja

\n \n

Hari kerja normal adalah Senin sampai Jumat. Anda akan diminta untuk bekerja selama jam-jam yang diperlukan untuk

\n \n

pelaksanaan tugas Anda dengan benar di Perusahaan. Jam kerja normal adalah dari {start_time} hingga {end_time} dan Anda

\n \n

diharapkan bekerja tidak kurang dari {total_hours} jam setiap minggu, dan jika perlu untuk jam tambahan tergantung pada

\n \n

tanggung jawab.

\n \n \n \n

6. Cuti/Libur

\n \n

6.1 Anda berhak atas cuti biasa selama 12 hari.

\n \n

6.2 Anda berhak atas 12 hari kerja cuti sakit berbayar.

\n \n

6.3 Perusahaan akan memberitahukan daftar hari libur yang diumumkan pada awal setiap tahun.

\n \n \n \n

7. Sifat tugas

\n \n

Anda akan melakukan yang terbaik dari kemampuan Anda semua tugas yang melekat pada jabatan Anda dan tugas tambahan seperti perusahaan

\n \n

dapat memanggil Anda untuk tampil, dari waktu ke waktu. Tugas khusus Anda ditetapkan dalam Jadwal II di sini.

\n \n \n \n

8. Properti perusahaan

\n \n

Anda akan selalu menjaga properti Perusahaan dalam kondisi baik, yang dapat dipercayakan kepada Anda untuk penggunaan resmi selama

\n \n

pekerjaan Anda, dan akan mengembalikan semua properti tersebut kepada Perusahaan sebelum melepaskan biaya Anda, jika tidak ada biayanya

\n \n

yang sama akan dipulihkan dari Anda oleh Perusahaan.

\n \n \n \n

9. Meminjam/menerima hadiah

\n \n

Anda tidak akan meminjam atau menerima uang, hadiah, hadiah, atau kompensasi apa pun untuk keuntungan pribadi Anda dari atau dengan cara lain menempatkan diri Anda sendiri

\n \n

di bawah kewajiban uang kepada setiap orang/klien dengan siapa Anda mungkin memiliki hubungan resmi.

\n

10. Penghentian

\n \n

10.1 Penunjukan Anda dapat diakhiri oleh Perusahaan, tanpa alasan apa pun, dengan memberi Anda tidak kurang dari [Pemberitahuan] bulan sebelumnya

\n \n

pemberitahuan secara tertulis atau gaji sebagai penggantinya. Untuk maksud pasal ini, gaji berarti gaji pokok.

\n \n

10.2 Anda dapat memutuskan hubungan kerja Anda dengan Perusahaan, tanpa alasan apa pun, dengan memberikan tidak kurang dari [Pemberitahuan Karyawan]

\n \n

pemberitahuan atau gaji bulan sebelumnya untuk periode yang belum disimpan, yang tersisa setelah penyesuaian cuti yang tertunda, pada tanggal.

\n \n

10.3 Perusahaan berhak untuk mengakhiri hubungan kerja Anda dengan segera tanpa pemberitahuan jangka waktu atau pembayaran pemutusan hubungan kerja

\n \n

jika memiliki alasan yang masuk akal untuk meyakini bahwa Anda bersalah atas kesalahan atau kelalaian, atau telah melakukan pelanggaran mendasar apa pun terhadap

\n \n

kontrak, atau menyebabkan kerugian bagi Perusahaan.

\n \n

10. 4 Pada pemutusan hubungan kerja Anda karena alasan apa pun, Anda akan mengembalikan semua properti kepada Perusahaan; dokumen, dan

\n \n

kertas, baik asli maupun salinannya, termasuk contoh, literatur, kontrak, catatan, daftar, gambar, cetak biru,

\n \n

surat, catatan, data dan sejenisnya; dan Informasi Rahasia, yang Anda miliki atau di bawah kendali Anda terkait dengan

\n \n

pekerjaan atau untuk urusan bisnis klien.

\n

11. Informasi Rahasia

\n \n

11. 1 Selama bekerja di Perusahaan, Anda akan mencurahkan seluruh waktu, perhatian, dan keterampilan Anda sebaik mungkin untuk

\n \n

bisnisnya. Anda tidak boleh, secara langsung atau tidak langsung, terlibat atau mengasosiasikan diri Anda dengan, terhubung dengan, terkait, dipekerjakan, atau

\n \n

waktu atau mengikuti program studi apapun, tanpa izin sebelumnya dari Perusahaan.terlibat dalam bisnis lain atau

\n \n

kegiatan atau pos atau pekerjaan paruh waktu lainnya atau mengejar program studi apa pun, tanpa izin sebelumnya dari

\n \n

Perusahaan.

\n \n

11.2 Anda harus selalu menjaga tingkat kerahasiaan tertinggi dan merahasiakan catatan, dokumen, dan lainnya

\n \n

Informasi Rahasia yang berkaitan dengan bisnis Perusahaan yang mungkin Anda ketahui atau rahasiakan kepada Anda dengan cara apa pun

\n \n

dan Anda akan menggunakan catatan, dokumen, dan informasi tersebut hanya dengan cara yang sah untuk kepentingan Perusahaan. Untuk

\n \n

tujuan klausul ini Informasi Rahasia berarti informasi tentang bisnis Perusahaan dan pelanggannya

\n \n

yang tidak tersedia untuk masyarakat umum dan yang mungkin Anda pelajari selama masa kerja Anda. Ini termasuk,

\n \n

tetapi tidak terbatas pada, informasi yang berkaitan dengan organisasi, daftar pelanggannya, kebijakan ketenagakerjaan, personel, dan informasi

\n \n

tentang produk Perusahaan, proses termasuk ide, konsep, proyeksi, teknologi, manual, gambar, desain,

\n \n

spesifikasi, dan semua makalah, resume, catatan dan dokumen lain yang berisi Informasi Rahasia tersebut.

\n \n

11.3 Kapan pun Anda akan menghapus Informasi Rahasia apa pun dari kantor tanpa izin.

\n \n

11.4 Kewajiban Anda untuk melindungi dan tidak mengungkapkan

\n \n

e Informasi Rahasia akan tetap berlaku setelah berakhirnya atau pengakhiran Perjanjian ini dan/atau hubungan kerja Anda dengan Perusahaan.

\n \n

11.5 Pelanggaran terhadap ketentuan klausul ini akan membuat Anda bertanggung jawab atas pemecatan singkat berdasarkan klausul di atas selain dari:

\n \n

upaya hukum lain yang mungkin dimiliki Perusahaan terhadap Anda secara hukum.

\n

12. Pemberitahuan

\n \n

Pemberitahuan dapat diberikan oleh Anda kepada Perusahaan di alamat kantor terdaftarnya. Pemberitahuan dapat diberikan oleh Perusahaan kepada Anda di

\n \n

alamat yang diberitahukan oleh Anda dalam catatan resmi.

\n \n \n \n

13. Keberlakuan Kebijakan Perusahaan

\n \n

Perusahaan berhak untuk membuat pernyataan kebijakan dari waktu ke waktu berkaitan dengan hal-hal seperti hak cuti, persalinan

\n \n

cuti, tunjangan karyawan, jam kerja, kebijakan transfer, dll., dan dapat mengubahnya dari waktu ke waktu atas kebijakannya sendiri.

\n \n

Semua keputusan kebijakan Perusahaan tersebut akan mengikat Anda dan akan mengesampingkan Perjanjian ini sejauh itu.

\n \n \n \n

14. Hukum/Yurisdiksi yang Mengatur

\n \n

Pekerjaan Anda dengan Perusahaan tunduk pada undang-undang Negara. Semua perselisihan akan tunduk pada yurisdiksi Pengadilan Tinggi

\n \n

Gujarat saja.

\n \n \n \n

15. Penerimaan penawaran kami

\n \n

Harap konfirmasikan penerimaan Anda atas Kontrak Kerja ini dengan menandatangani dan mengembalikan salinan duplikatnya.

\n \n \n \n

Kami menyambut Anda dan berharap untuk menerima penerimaan Anda dan bekerja sama dengan Anda.

\n \n \n \n

Dengan hormat,

\n \n

{app_name}

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (25,'it','

Lettera di adesione

\n \n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n

Oggetto: Appuntamento alla carica di {designation}

\n \n \n

Gentile {employee_name},

\n \n

Siamo lieti di offrirti la posizione di {designation} con {app_name} la \"Società\" alle seguenti condizioni e

\n \n

condizioni:

\n \n \n

1. Inizio del rapporto di lavoro

\n \n

Il tuo impiego sarà effettivo a partire da {start_date}

\n \n \n \n

2. Titolo di lavoro

\n \n

Il tuo titolo di lavoro sarà {designation}.

\n \n

3. Stipendio

\n \n

Il tuo stipendio e altri benefici saranno come indicato nellAllegato 1, qui di seguito.

\n \n \n \n

4. Luogo di invio

\n \n

Sarai inviato a {branch}. Tuttavia, potrebbe essere richiesto di lavorare in qualsiasi luogo di attività che la Società ha, o

\n \n

potrà successivamente acquisire.

\n \n \n \n

5. Orario di lavoro

\n \n

I normali giorni lavorativi sono dal lunedì al venerdì. Ti verrà richiesto di lavorare per le ore necessarie per il

\n \n

corretto adempimento dei propri doveri nei confronti della Società. Lorario di lavoro normale va da {start_time} a {end_time} e tu lo sei

\n \n

dovrebbe lavorare non meno di {total_hours} ore ogni settimana e, se necessario, per ore aggiuntive a seconda del tuo

\n \n

responsabilità.

\n \n \n \n

6. Permessi/Festività

\n \n

6.1 Hai diritto a un congedo occasionale di 12 giorni.

\n \n

6.2 Hai diritto a 12 giorni lavorativi di congedo per malattia retribuito.

\n \n

6.3 La Società comunica allinizio di ogni anno un elenco delle festività dichiarate.

\n \n \n \n

7. Natura degli incarichi

\n \n

Eseguirai al meglio delle tue capacità tutti i compiti inerenti al tuo incarico e compiti aggiuntivi come lazienda

\n \n

può invitarti a esibirti, di tanto in tanto. I tuoi doveri specifici sono stabiliti nellAllegato II del presente documento.

\n \n \n \n

8. Proprietà aziendale

\n \n

Manterrete sempre in buono stato i beni dellAzienda, che nel corso dellanno potrebbero esservi affidati per uso ufficiale

\n \n

il tuo impiego, e restituirà tutte queste proprietà alla Società prima della rinuncia al tuo addebito, in caso contrario il costo

\n \n

degli stessi saranno da voi recuperati dalla Società.

\n \n \n \n

9. Prendere in prestito/accettare regali

\n \n

Non prenderai in prestito né accetterai denaro, dono, ricompensa o compenso per i tuoi guadagni personali da o altrimenti collocato te stesso

\n \n

sotto obbligazione pecuniaria nei confronti di qualsiasi persona/cliente con cui potresti avere rapporti ufficiali.

\n

10. Cessazione

\n \n

10.1 Il tuo incarico può essere risolto dalla Società, senza alcun motivo, dandoti non meno di [Avviso] mesi prima

\n \n

avviso scritto o stipendio in sostituzione di esso. Ai fini della presente clausola, per stipendio si intende lo stipendio base.

\n \n

10.2 È possibile terminare il proprio rapporto di lavoro con la Società, senza alcuna causa, fornendo non meno di [Avviso per il dipendente]

\n \n

mesi di preavviso o stipendio per il periodo non risparmiato, lasciato dopo ladeguamento delle ferie pendenti, come alla data.

\n \n

10.3 La Società si riserva il diritto di terminare il rapporto di lavoro sommariamente senza alcun periodo di preavviso o pagamento di cessazione

\n \n

se ha fondati motivi per ritenere che tu sia colpevole di cattiva condotta o negligenza, o abbia commesso una violazione fondamentale

\n \n

contratto, o ha causato danni alla Società.

\n \n

10. 4 Alla cessazione del rapporto di lavoro per qualsiasi motivo, restituirete alla Società tutti i beni; documenti, e

\n \n

carta, sia in originale che in copia, inclusi eventuali campioni, letteratura, contratti, registrazioni, elenchi, disegni, progetti,

\n \n

lettere, note, dati e simili; e Informazioni Riservate, in tuo possesso o sotto il tuo controllo, relative alla tua

\n \n

lavoro o agli affari dei clienti.

\n

11. Confidential Information

\n \n

11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for

\n \n

its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or

\n \n

time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or

\n \n

activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the

\n \n

Company.

\n \n

11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other 

\n \n

Confidential Information relating to the business of the Company which may be known to you or confided in you by any means

\n \n

and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For

\n \n

the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers

\n \n

which is not available to the general public and which may be learned by you in the course of your employment. This includes,

\n \n

but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information

\n \n

about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, 

\n \n

specifications, and all papers, resumes, records and other documents containing such Confidential Information.

\n \n

11.3 At no time, will you remove any Confidential Information from the office without permission.

\n \n

11.4 Your duty to safeguard and not disclos

\n \n

e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.

\n \n

11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any

\n \n

other remedy the Company may have against you in law.

\n

12. Notices

\n \n

Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at

\n \n

the address intimated by you in the official records.

\n \n \n \n

13. Applicability of Company Policy

\n \n

The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity

\n \n

leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.

\n \n

All such policy decisions of the Company shall be binding on you and shall override this Agreement to that  extent.

\n \n \n \n

14. Governing Law/Jurisdiction

\n \n

Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court

\n \n

Gujarat only.

\n \n \n \n

15. Acceptance of our offer

\n \n

Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.

\n \n \n \n

We welcome you and look forward to receiving your acceptance and to working with you.

\n \n \n \n

Yours Sincerely,

\n \n

{app_name}

\n \n

{date}

\n ',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (26,'ja','

入会の手紙

\n \n

{date}

\n \n

{employee_name}

\n \n

{address}

\n \n \n \n

件名: {designation} の役職への任命

\n \n \n \n

{employee_name} 様

\n \n \n

{app_name} の {designation} の地位を以下の条件で「会社」として提供できることをうれしく思います。

\n \n

条件:

\n \n \n

1. 雇用開始

\n \n

あなたの雇用は {start_date} から有効になります

\n \n \n

2. 役職

\n \n

あなたの役職は{designation}になります。

\n \n \n

3. 給与

\n \n

あなたの給与およびその他の福利厚生は、本明細書のスケジュール 1 に記載されているとおりです。

\n \n \n

4. 掲示場所

\n \n

{branch} に掲載されます。ただし、会社が所有する事業所で働く必要がある場合があります。

\n \n

後で取得する場合があります。

\n \n \n \n

5. 労働時間

\n \n

通常の営業日は月曜日から金曜日です。あなたは、そのために必要な時間働く必要があります。

\n \n

会社に対するあなたの義務の適切な遂行。通常の勤務時間は {start_time} から {end_time} までで、あなたは

\n \n

毎週 {total_hours} 時間以上の勤務が期待される

\n \n

責任。

\n \n \n \n

6.休暇・休日

\n \n

6.1 12 日間の臨時休暇を取得する権利があります。

\n \n

6.2 12 日間の有給病気休暇を取る権利があります。

\n \n

6.3 当社は、毎年の初めに宣言された休日のリストを通知するものとします。

\n \n \n \n

7. 職務内容

\n \n

あなたは、自分のポストに固有のすべての義務と、会社としての追加の義務を最大限に遂行します。

\n \n

時々あなたに演奏を依頼するかもしれません。あなたの特定の義務は、本明細書のスケジュール II に記載されています。

\n \n \n \n

8. 会社財産

\n \n

あなたは、会社の所有物を常に良好な状態に維持するものとします。

\n \n

あなたの雇用を放棄し、あなたの料金を放棄する前に、そのようなすべての財産を会社に返還するものとします。

\n \n

同じのは、会社によってあなたから回収されます。

\n \n \n \n

9. 貸出・贈答品の受け取り

\n \n

あなたは、あなた自身から、または他の方法であなた自身の場所から個人的な利益を得るための金銭、贈り物、報酬、または補償を借りたり、受け取ったりしません。

\n \n

あなたが公式の取引をしている可能性のある人物/クライアントに対する金銭的義務の下で。

\n

10. 終了

\n \n

10.1 少なくとも [通知] か月前に通知することにより、理由のいかんを問わず、会社はあなたの任命を終了することができます。

\n \n

書面による通知またはその代わりの給与。この条項の目的上、給与とは基本給を意味するものとします。

\n \n

10.2 あなたは、少なくとも [従業員通知] を提出することにより、理由のいかんを問わず、会社での雇用を終了することができます。

\n \n

保留中の休暇の調整後に残された、保存されていない期間の数か月前の通知または給与は、日付のとおりです。

\n \n

10.3 当社は、通知期間や解雇補償金なしに、あなたの雇用を即座に終了させる権利を留保します。

\n \n

あなたが不正行為または過失で有罪であると信じる合理的な根拠がある場合、または基本的な違反を犯した場合

\n \n

契約、または当社に損害を与えた。

\n \n

10. 4 何らかの理由で雇用が終了した場合、あなたは会社にすべての財産を返還するものとします。ドキュメント、および

\n \n

サンプル、文献、契約書、記録、リスト、図面、青写真を含む、原本とコピーの両方の紙、

\n \n

手紙、メモ、データなど。あなたが所有する、またはあなたの管理下にある機密情報。

\n \n

雇用またはクライアントの業務に。

\n

11. 機密情報

\n \n

11. 1 当社での雇用期間中、あなたは自分の全時間、注意、およびスキルを、自分の能力の限りを尽くして捧げます。

\n \n

そのビジネス。あなたは、直接的または間接的に、関与したり、関連付けたり、接続したり、関係したり、雇用したり、または

\n \n

会社の事前の許可なしに、時間や学習コースを追求すること。他のビジネスに従事すること、または

\n \n

の事前の許可なしに、活動またはその他の投稿またはアルバイトをしたり、何らかの研究コースを追求したりすること。

\n \n

会社。

\n \n

11.2 常に最高度の機密性を維持し、記録、文書、およびその他の情報を機密として保持する必要があります。

\n \n

お客様が知っている、または何らかの方法でお客様に内密にされている可能性がある、当社の事業に関連する機密情報

\n \n

また、あなたは、会社の利益のために正当に承認された方法でのみ、そのような記録、文書、および情報を使用するものとします。為に

\n \n

この条項の目的 「機密情報」とは、会社の事業および顧客の事業に関する情報を意味します。

\n \n

これは一般には公開されておらず、雇用の過程で学習する可能性があります。これも、

\n \n

組織、その顧客リスト、雇用方針、人事、および情報に関連する情報に限定されません

\n \n

当社の製品、アイデアを含むプロセス、コンセプト、予測、技術、マニュアル、図面、デザイン、

\n \n

仕様、およびそのような機密情報を含むすべての書類、履歴書、記録、およびその他の文書。

\n \n

11.3 いかなる時も、許可なくオフィスから機密情報を削除しないでください。

\n \n

11.4 保護し、開示しないというあなたの義務

\n \n

e 機密情報は、本契約および/または当社との雇用の満了または終了後も存続します。

\n \n

11.5 この条項の条件に違反した場合、上記の条項に基づく略式解雇の対象となります。

\n \n

会社が法律であなたに対して持つことができるその他の救済。

\n

12. 通知

\n \n

通知は、登録された事務所の住所で会社に提出することができます。通知は、当社からお客様に提供される場合があります。

\n \n

公式記録であなたがほのめかした住所。

\n \n \n \n

13. 会社方針の適用性

\n \n

会社は、休暇の資格、出産などの事項に関して、随時方針を宣言する権利を有するものとします。

\n \n

休暇、従業員の福利厚生、勤務時間、異動ポリシーなどであり、独自の裁量により随時変更される場合があります。

\n \n

当社のそのようなポリシー決定はすべて、あなたを拘束し、その範囲で本契約を無効にするものとします。

\n \n \n \n

14. 準拠法・裁判管轄

\n \n

当社でのあなたの雇用は、国の法律の対象となります。すべての紛争は、高等裁判所の管轄に服するものとします

\n \n

グジャラートのみ。

\n \n \n \n

15. オファーの受諾

\n \n

副本に署名して返送することにより、この雇用契約に同意したことを確認してください。

\n \n \n \n

私たちはあなたを歓迎し、あなたの受け入れを受け取り、あなたと一緒に働くことを楽しみにしています.

\n \n \n \n

敬具、

\n \n

{app_name}

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (27,'nl','

Deelnemende brief

\n \n

{date}

\n \n

{employee}

\n \n

{address}

\n \n

Onderwerp: Benoeming voor de functie van {designation}

\n \n

Beste {employee_name},

\n \n

We zijn verheugd u de positie van {designation} bij {app_name} het Bedrijf aan te bieden onder de volgende voorwaarden en

\n \n

conditie:

\n \n \n

1. Indiensttreding

\n

Uw dienstverband gaat in op {start_date}

\n \n \n

2. Functietitel

\n \n

Uw functietitel wordt {designation}.

\n \n

3. Salaris

\n \n

Uw salaris en andere voordelen zijn zoals uiteengezet in Schema 1 hierbij.

\n \n

4. Plaats van detachering

\n \n

Je wordt geplaatst op {branch}. Het kan echter zijn dat u moet werken op een bedrijfslocatie die het Bedrijf heeft, of

\n \n

later kan verwerven.

\n \n \n \n

5. Werkuren

\n \n

De normale werkdagen zijn van maandag tot en met vrijdag. Je zal de uren moeten werken die nodig zijn voor de

\n \n

correcte uitvoering van uw taken jegens het bedrijf. De normale werkuren zijn van {start_time} tot {end_time} en jij bent

\n \n

naar verwachting niet minder dan {total_hours} uur per week werken, en indien nodig voor extra uren, afhankelijk van uw

\n \n

verantwoordelijkheden.

\n \n \n \n

6. Verlof/Vakantie

\n \n

6.1 Je hebt recht op tijdelijk verlof van 12 dagen.

\n \n

6.2 U heeft recht op 12 werkdagen betaald ziekteverlof.

\n \n

6.3 De Maatschappij stelt aan het begin van elk jaar een lijst van verklaarde feestdagen op.

\n \n \n \n

7. Aard van de taken

\n \n

Je voert alle taken die inherent zijn aan je functie en bijkomende taken zoals het bedrijf naar beste vermogen uit;

\n \n

kan van tijd tot tijd een beroep op u doen om op te treden. Uw specifieke taken zijn uiteengezet in Bijlage II hierbij.

\n \n \n \n

8. Bedrijfseigendommen

\n \n

U onderhoudt bedrijfseigendommen, die u in de loop van

\n \n

uw dienstverband, en zal al deze eigendommen aan het Bedrijf teruggeven voordat afstand wordt gedaan van uw kosten, bij gebreke waarvan de kosten

\n \n

hiervan zal door het Bedrijf van u worden verhaald.

\n \n \n \n

9. Geschenken lenen/aannemen

\n \n

U zult geen geld, geschenken, beloningen of vergoedingen voor uw persoonlijk gewin lenen of accepteren van uzelf of uzelf op een andere manier plaatsen

\n \n

onder geldelijke verplichting jegens een persoon/klant met wie u mogelijk officiële betrekkingen heeft.

\n

10. Beëindiging

\n \n

10.1 Uw aanstelling kan door het Bedrijf zonder opgaaf van reden worden beëindigd door u minimaal [Opzegging] maanden van tevoren

\n \n

schriftelijke opzegging of daarvoor in de plaats komend salaris. In dit artikel wordt onder salaris verstaan ​​het basissalaris.

\n \n

10.2 U kunt uw dienstverband bij het Bedrijf beëindigen, zonder enige reden, door niet minder dan [Mededeling van de werknemer]

\n \n

maanden opzegtermijn of salaris voor de niet gespaarde periode, overgebleven na aanpassing van hangende verlofdagen, zoals op datum.

\n \n

10.3 Het bedrijf behoudt zich het recht voor om uw dienstverband op staande voet te beëindigen zonder enige opzegtermijn of beëindigingsvergoeding

\n \n

als het redelijke grond heeft om aan te nemen dat u zich schuldig heeft gemaakt aan wangedrag of nalatigheid, of een fundamentele schending van

\n \n

contract, of enig verlies voor het Bedrijf veroorzaakt.

\n \n

10. 4 Bij beëindiging van uw dienstverband om welke reden dan ook, geeft u alle eigendommen terug aan het Bedrijf; documenten, en

\n \n

papier, zowel origineel als kopieën daarvan, inclusief eventuele monsters, literatuur, contracten, bescheiden, lijsten, tekeningen, blauwdrukken,

\n \n

brieven, notities, gegevens en dergelijke; en Vertrouwelijke informatie, in uw bezit of onder uw controle met betrekking tot uw

\n \n

werkgelegenheid of de zakelijke aangelegenheden van klanten.

\n

11. Vertrouwelijke informatie

\n \n

11. 1 Tijdens uw dienstverband bij het Bedrijf besteedt u al uw tijd, aandacht en vaardigheden naar uw beste vermogen aan:

\n \n

zijn zaken. U mag zich niet, direct of indirect, inlaten met of verbonden zijn met, betrokken zijn bij, betrokken zijn bij, in dienst zijn van of

\n \n

tijd doorbrengen of een studie volgen, zonder voorafgaande toestemming van het bedrijf.bezig met een ander bedrijf of

\n \n

werkzaamheden of enige andere functie of werk in deeltijd of het volgen van welke opleiding dan ook, zonder voorafgaande toestemming van de

\n \n

Bedrijf.

\n \n

11.2 U moet altijd de hoogste graad van vertrouwelijkheid handhaven en de records, documenten en andere

\n \n

Vertrouwelijke informatie met betrekking tot het bedrijf van het bedrijf die u op enigerlei wijze bekend is of in vertrouwen is genomen

\n \n

en u zult dergelijke records, documenten en informatie alleen gebruiken op een naar behoren gemachtigde manier in het belang van het bedrijf. Voor

\n \n

de doeleinden van deze clausule Vertrouwelijke informatiebetekent informatie over het bedrijf van het bedrijf en dat van zijn klanten

\n \n

die niet beschikbaar is voor het grote publiek en die u tijdens uw dienstverband kunt leren. Dit bevat,

\n \n

maar is niet beperkt tot informatie met betrekking tot de organisatie, haar klantenlijsten, werkgelegenheidsbeleid, personeel en informatie

\n \n

over de producten, processen van het bedrijf, inclusief ideeën, concepten, projecties, technologie, handleidingen, tekeningen, ontwerpen,

\n \n

specificaties, en alle papieren, cvs, dossiers en andere documenten die dergelijke vertrouwelijke informatie bevatten.

\n \n

11.3 U verwijdert nooit vertrouwelijke informatie van het kantoor zonder toestemming.

\n \n

11.4 Uw plicht om te beschermen en niet openbaar te maken

\n \n

e Vertrouwelijke informatie blijft van kracht na het verstrijken of beëindigen van deze Overeenkomst en/of uw dienstverband bij het Bedrijf.

\n \n

11.5 Schending van de voorwaarden van deze clausule maakt u aansprakelijk voor ontslag op staande voet op grond van de bovenstaande clausule, naast eventuele:

\n \n

ander rechtsmiddel dat het Bedrijf volgens de wet tegen u heeft.

\n

12. Kennisgevingen

\n \n

Kennisgevingen kunnen door u aan het Bedrijf worden gedaan op het adres van de maatschappelijke zetel. Kennisgevingen kunnen door het bedrijf aan u worden gedaan op:

\n \n

het door u opgegeven adres in de officiële administratie.

\n \n \n \n

13. Toepasselijkheid van het bedrijfsbeleid

\n \n

Het bedrijf heeft het recht om van tijd tot tijd beleidsverklaringen af ​​te leggen met betrekking tot zaken als verlofrecht, moederschap

\n \n

verlof, werknemersvoordelen, werkuren, transferbeleid, enz., en kan deze van tijd tot tijd naar eigen goeddunken wijzigen.

\n \n

Al dergelijke beleidsbeslissingen van het Bedrijf zijn bindend voor u en hebben voorrang op deze Overeenkomst in die mate.

\n \n \n \n

14. Toepasselijk recht/jurisdictie

\n \n

Uw dienstverband bij het bedrijf is onderworpen aan de landelijke wetgeving. Alle geschillen zijn onderworpen aan de jurisdictie van de High Court

\n \n

Alleen Gujarat.

\n \n \n \n

15. Aanvaarding van ons aanbod

\n \n

Bevestig uw aanvaarding van deze arbeidsovereenkomst door het duplicaat te ondertekenen en terug te sturen.

\n \n \n \n

Wij heten u van harte welkom en kijken ernaar uit uw acceptatie te ontvangen en met u samen te werken.

\n \n \n \n

Hoogachtend,

\n \n

{app_name}

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (28,'pl','

Dołączanie listu

\n \n

{date }

\n \n

{employee_name }

\n \n

{address }

\n \n \n

Dotyczy: mianowania na stanowisko {designation}

\n \n

Szanowny {employee_name },

\n \n

Mamy przyjemność zaoferować Państwu, stanowisko {designation} z {app_name } \"Spółka\" na poniższych warunkach i

\n

warunki:

\n \n

1. Rozpoczęcie pracy

\n \n

Twoje zatrudnienie będzie skuteczne, jak na {start_date }

\n \n

2. Tytuł zadania

\n

Twój tytuł pracy to {designation}.

\n \n

3. Salary

\n \n

Twoje wynagrodzenie i inne świadczenia będą określone w Zestawieniu 1, do niniejszego rozporządzenia.

\n \n \n

4. Miejsce delegowania

\n

Użytkownik zostanie opublikowany w {branch }. Użytkownik może jednak być zobowiązany do pracy w dowolnym miejscu prowadzenia działalności, które Spółka posiada, lub może później nabyć.

\n \n

5. Godziny pracy

\n

Normalne dni robocze są od poniedziałku do piątku. Będziesz zobowiązany do pracy na takie godziny, jakie są niezbędne do prawidłowego wywiązania się ze swoich obowiązków wobec Spółki. Normalne godziny pracy to {start_time } do {end_time }, a użytkownik oczekuje, że będzie pracować nie mniej niż {total_hours } godzin tygodniowo, a jeśli to konieczne, przez dodatkowe godziny w zależności od Twojego

\n

odpowiedzialności.

\n \n

6. Urlop/Wakacje

\n \n

6.1 Przysługuje prawo do urlopu dorywczego w ciągu 12 dni.

\n \n

6.2 Użytkownik ma prawo do 12 dni roboczych od wypłatnego zwolnienia chorobowego.

\n \n

6.3 Spółka powiadamia na początku każdego roku wykaz ogłoszonych świąt. 

\n \n \n \n

7. Rodzaj obowiązków

\n \n

Będziesz wykonywać na najlepsze ze swojej zdolności wszystkie obowiązki, jak są one nieodłączne w swoim poście i takie dodatkowe obowiązki, jak firma może zadzwonić do wykonania, od czasu do czasu. Państwa szczególne obowiązki są określone w załączniku II do niniejszego rozporządzenia.

\n \n \n \n

8. Właściwość przedsiębiorstwa

\n \n

Zawsze będziesz utrzymywać w dobrej kondycji Firmy, która może być powierzona do użytku służbowego w trakcie trwania

\n \n

Twoje zatrudnienie, i zwróci wszystkie takie nieruchomości do Spółki przed zrzeczeniem się opłaty, w przeciwnym razie koszty te same będą odzyskane od Ciebie przez Spółkę.

\n \n

9. Wypożyczanie/akceptowanie prezentów

\n \n

Nie będziesz pożyczał ani nie akceptować żadnych pieniędzy, darów, nagrody lub odszkodowania za swoje osobiste zyski z lub w inny sposób złożyć się w ramach zobowiązania pieniężnego do jakiejkolwiek osoby/klienta, z którym może być posiadanie oficjalne relacje.

\n

10. Zakończenie

\n \n

10.1 Powołanie może zostać wypowiedziane przez Spółkę, bez względu na przyczynę, poprzez podanie nie mniej niż [ Zawiadomienie] miesięcy uprzedniego wypowiedzenia na piśmie lub wynagrodzenia w miejsce jego wystąpienia. Dla celów niniejszej klauzuli, wynagrodzenie oznacza wynagrodzenie podstawowe.

\n \n

10.2 Użytkownik może rozwiązać umowę o pracę ze Spółką, bez jakiejkolwiek przyczyny, podając nie mniej niż [ ogłoszenie o pracowniku] miesiące przed powiadomieniem lub wynagrodzeniem za niezaoszczędzony okres, pozostawiony po skorygowaniu oczekujących liści, jak na dzień.

\n \n

10.3 Spółka zastrzega sobie prawo do wypowiedzenia umowy o pracę bez okresu wypowiedzenia lub wypłaty z tytułu rozwiązania umowy, jeżeli ma on uzasadnione podstawy, aby sądzić, że jesteś winny wykroczenia lub niedbalstwa, lub popełnił jakiekolwiek istotne naruszenie umowy lub spowodował jakiekolwiek straty w Spółce. 

\n \n

10. 4 W sprawie rozwiązania stosunku pracy z jakiegokolwiek powodu, powrócisz do Spółki wszystkie nieruchomości; dokumenty, i 

\n \n

papieru, zarówno oryginału, jak i jego kopii, w tym wszelkich próbek, literatury, umów, zapisów, wykazów, rysunków, konspektów,

\n \n

listy, notatki, dane i podobne; informacje poufne, znajdujące się w posiadaniu lub pod Twoją kontrolą związane z zatrudnieniem lub sprawami biznesowymi klientów.   

\n \n \n \n

11. Informacje poufne

\n \n

11. 1 Podczas swojego zatrudnienia z Firmą poświęcisz cały czas, uwagę i umiejętności na najlepszą z Twoich możliwości

\n \n

swojej działalności gospodarczej. Użytkownik nie może, bezpośrednio lub pośrednio, prowadzić lub wiązać się z, być związany z, dotyka, zatrudniony lub czas lub prowadzić jakikolwiek kierunek studiów, bez uprzedniej zgody Company.zaangażował się w innej działalności gospodarczej lub działalności lub jakikolwiek inny post lub pracy w niepełnym wymiarze czasu lub prowadzić jakikolwiek kierunek studiów, bez uprzedniej zgody

\n \n

Firma.

\n \n

11.2 Zawsze musisz zachować najwyższy stopień poufności i zachować jako poufny akt, dokumenty, i inne 

\n \n

Informacje poufne dotyczące działalności Spółki, które mogą być znane Państwu lub w dowolny sposób zwierzyny, a Użytkownik będzie posługiwać się takimi zapisami, dokumentami i informacjami tylko w sposób należycie autoryzowany w interesie Spółki. Do celów niniejszej klauzuli \"Informacje poufne\" oznaczają informacje o działalności Spółki oraz o jej klientach, które nie są dostępne dla ogółu społeczeństwa i które mogą być przez Państwa w trakcie zatrudnienia dowiedzione przez Państwa. Obejmuje to,

\n \n

ale nie ogranicza się do informacji związanych z organizacją, jej listami klientów, politykami zatrudnienia, personelem oraz informacjami o produktach firmy, procesach, w tym pomysłach, koncepcjach, projekcjach, technikach, podręcznikach, rysunkach, projektach, 

\n \n

specyfikacje, a także wszystkie dokumenty, życiorysy, zapisy i inne dokumenty zawierające takie informacje poufne.

\n \n

11.3 W żadnym momencie nie usunie Pan żadnych Informacji Poufnych z urzędu bez zezwolenia.

\n \n

11.4 Twój obowiązek ochrony a nie disclos

\n \n

Informacje poufne przetrwają wygaśnięcie lub rozwiązanie niniejszej Umowy i/lub Twoje zatrudnienie w Spółce.

\n \n

11.5 Naruszenie warunków niniejszej klauzuli spowoduje, że Użytkownik będzie zobowiązany do skróconej umowy w ramach klauzuli powyżej, oprócz wszelkich innych środków zaradcze, jakie Spółka może mieć przeciwko Państwu w prawie.

\n \n \n \n

12. Uwagi

\n \n

Ogłoszenia mogą być podane przez Państwa do Spółki pod adresem jej siedziby. Ogłoszenia mogą być podane przez Spółkę do Państwa na adres intymniony przez Państwa w ewidencji urzędowej.

\n \n \n \n

13. Stosowność polityki firmy

\n \n

Spółka jest uprawniona do składania deklaracji politycznych od czasu do czasu dotyczących spraw takich jak prawo do urlopu macierzyńskiego, macierzyństwo

\n \n

urlopów, świadczeń pracowniczych, godzin pracy, polityki transferowej itp., a także mogą zmieniać to samo od czasu do czasu według własnego uznania.

\n \n

Wszystkie takie decyzje polityczne Spółki są wiążące dla Państwa i przesłaniają niniejszą Umowę w tym zakresie.

\n \n \n \n

14. Prawo właściwe/jurysdykcja

\n \n

Twoje zatrudnienie ze Spółką podlega prawu krajowi. Wszelkie spory podlegają właściwości Sądu Najwyższego

\n \n

Tylko Gujarat.

\n \n \n \n

15. Akceptacja naszej oferty

\n \n

Prosimy o potwierdzenie przyjęcia niniejszej Umowy o pracę poprzez podpisanie i zwrócenie duplikatu.

\n \n \n \n

Zapraszamy Państwa i czekamy na Państwa przyjęcie i współpracę z Tobą.

\n \n \n \n

Z Państwa Sincerely,

\n \n

{app_name }

\n \n

{date }

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (29,'pt','

Carta De Adesão

\n \n

{data}

\n \n

{employee_name}

\n \n

{address}

\n \n \n

Assunto: Nomeação para o cargo de {designation}

\n \n

Querido {employee_name},

\n \n \n

Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e

\n

condições:

\n \n \n

1. Comentamento do emprego

\n \n

Seu emprego será efetivo, a partir de {start_date}

\n \n \n

2. Título do emprego

\n \n

Seu cargo de trabalho será {designation}.

\n \n

3. Salário

\n \n

Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.

\n \n

4. Local de postagem

\n \n

Você será postado em {branch}. Você pode, no entanto, ser obrigado a trabalhar em qualquer local de negócios que a Empresa tenha, ou possa posteriormente adquirir.

\n \n

5. Horas de Trabalho

\n \n

Os dias normais de trabalho são de segunda a sexta-feira. Você será obrigado a trabalhar por tais horas, conforme necessário para a quitação adequada de suas funções para a Companhia. As horas de trabalho normais são de {start_time} para {end_time} e você deve trabalhar não menos de {total_horas} horas semanais, e se necessário para horas adicionais dependendo do seu

\n

responsabilidades.

\n \n

6. Leave / Holidays

\n \n

6,1 Você tem direito a licença casual de 12 dias.

\n \n

6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.

\n \n

6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. 

\n \n \n \n

7. Natureza dos deveres

\n \n

Você irá executar ao melhor da sua habilidade todos os deveres como são inerentes ao seu cargo e tais deveres adicionais como a empresa pode ligar sobre você para executar, de tempos em tempos. Os seus deveres específicos são estabelecidos no Hereto do Planejamento II.

\n \n \n \n

8. Propriedade da empresa

\n \n

Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de

\n \n

o seu emprego, e devolverá toda essa propriedade à Companhia antes de abdicar de sua acusação, falhando qual o custo do mesmo será recuperado de você pela Companhia.

\n \n \n \n

9. Borremir / aceitar presentes

\n \n

Você não vai pedir empréstimo ou aceitar qualquer dinheiro, presente, recompensa ou indenização por seus ganhos pessoais de ou de outra forma colocar-se sob obrigação pecuniária a qualquer pessoa / cliente com quem você pode estar tendo relações oficiais.

\n \n \n \n

10. Terminação

\n \n

10,1 Sua nomeação pode ser rescindida pela Companhia, sem qualquer razão, dando-lhe não menos do que [aviso] meses de aviso prévio por escrito ou de salário em lieu deste. Para efeito da presente cláusula, o salário deve significar salário base.

\n \n

10,2 Você pode rescindir seu emprego com a Companhia, sem qualquer causa, ao dar nada menos que [Aviso de contratação] meses de aviso prévio ou salário para o período não salvo, deixado após ajuste de folhas pendentes, conforme data de encontro.

\n \n

10,3 Empresa reserva-se o direito de rescindir o seu emprego sumariamente sem qualquer prazo de aviso ou de rescisão se tiver terreno razoável para acreditar que você é culpado de má conduta ou negligência, ou tenha cometido qualquer violação fundamental de contrato, ou tenha causado qualquer perda para a Empresa. 

\n \n

10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e 

\n \n

papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,

\n \n

cartas, notas, dados e semelhantes; e Informações Confidenciais, em sua posse ou sob seu controle relacionado ao seu emprego ou aos negócios de negócios dos clientes.   

\n \n \n \n

11. Informações Confidenciais

\n \n

11. 1 Durante o seu emprego com a Companhia você irá dedicar todo o seu tempo, atenção e habilidade para o melhor de sua capacidade de

\n \n

o seu negócio. Você não deve, direta ou indiretamente, se envolver ou associar-se com, estar conectado com, preocupado, empregado, ou tempo ou prosseguir qualquer curso de estudo, sem a permissão prévia do Company.engajado em qualquer outro negócio ou atividades ou qualquer outro cargo ou trabalho parcial ou prosseguir qualquer curso de estudo, sem a permissão prévia do

\n \n

Empresa.

\n \n

11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros 

\n \n

Informações confidenciais relativas ao negócio da Companhia que possam ser conhecidas por você ou confiadas em você por qualquer meio e utilizarão tais registros, documentos e informações apenas de forma devidamente autorizada no interesse da Companhia. Para efeitos da presente cláusula \"Informações confidenciais\" significa informação sobre os negócios da Companhia e a dos seus clientes que não está disponível para o público em geral e que poderá ser aprendida por você no curso do seu emprego. Isso inclui,

\n \n

mas não se limita a, informações relativas à organização, suas listas de clientes, políticas de emprego, pessoal, e informações sobre os produtos da Companhia, processos incluindo ideias, conceitos, projeções, tecnologia, manuais, desenho, desenhos, 

\n \n

especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.

\n \n

11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.

\n \n

11,4 O seu dever de salvaguardar e não os desclos

\n \n

Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.

\n \n

11,5 Violação das condições desta cláusula irá torná-lo sujeito a demissão sumária sob a cláusula acima, além de qualquer outro remédio que a Companhia possa ter contra você em lei.

\n \n \n \n

12. Notices

\n \n

Os avisos podem ser conferidos por você à Empresa em seu endereço de escritório registrado. Os avisos podem ser conferidos pela Companhia a você no endereço intimado por você nos registros oficiais.

\n \n \n \n

13. Aplicabilidade da Política da Empresa

\n \n

A Companhia tem direito a fazer declarações de política de tempos em tempos relativos a matérias como licença de licença, maternidade

\n \n

sair, benefícios dos empregados, horas de trabalho, políticas de transferência, etc., e pode alterar o mesmo de vez em quando a seu exclusivo critério.

\n \n

Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.

\n \n \n \n

14. Direito / Jurisdição

\n \n

Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior

\n \n

Gujarat apenas.

\n \n \n \n

15. Aceitação da nossa oferta

\n \n

Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.

\n \n \n \n

Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.

\n \n \n \n

Seu Sinceramente,

\n \n

{app_name}

\n \n

{data}

\n ',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (30,'ru','

Присоединение к письму

\n \n

{date}

\n \n

{ employee_name }

\n

{address}

\n \n

Тема: Назначение на должность {designation}

\n \n

Уважаемый { employee_name },

\n \n

Мы рады предложить Вам, позицию {designation} с { app_name } Компания на следующих условиях и

\n \n

условия:

\n \n \n

1. Начало работы

\n \n

Ваше трудоустройство будет эффективным, начиная с { start_date }

\n \n \n

2. Название должности

\n

Ваш заголовок задания будет {designation}.

\n \n

3. Зарплата

\n

Ваши оклады и другие пособия будут установлены в соответствии с расписанием, изложенным в приложении 1 к настоящему.

\n \n

4. Место размещения

\n

Вы будете работать в { branch }. Вы, однако, можете работать в любом месте, которое компания имеет или может впоследствии приобрести.

\n \n \n \n

5. Часы работы

\n

Обычные рабочие дни-с понедельника по пятницу. Вы должны будете работать в течение таких часов, как это необходимо для надлежащего выполнения Ваших обязанностей перед компанией. Обычные рабочие часы-от { start_time } до { end_time }, и вы, как ожидается, будут работать не менее { total_hours } часов каждую неделю, и при необходимости в течение дополнительных часов в зависимости от вашего

\n

ответственности.

\n

6. Отпуск/Праздники

\n \n

6.1 Вы имеете право на случайный отпуск продолжительностью 12 дней.

\n \n

6.2 Вы имеете право на 12 рабочих дней оплачиваемого отпуска по болезни.

\n \n

6.3 Компания в начале каждого года уведомляет об объявленных праздниках. 

\n \n \n \n

7. Характер обязанностей

\n \n

Вы будете выполнять все обязанности, присующие вам, и такие дополнительные обязанности, которые компания может призвать к вам, время от времени. Ваши конкретные обязанности изложены в приложении II к настоящему.

\n \n \n \n

8. Свойство компании

\n \n

Вы всегда будете поддерживать в хорошем состоянии имущество Компании, которое может быть доверено Вам для служебного пользования в течение

\n \n

вашей занятости, и возвратит все это имущество Компании до отказа от вашего заряда, при отсутствии которого стоимость одного и того же имущества будет взыскана с Вас компанией.

\n \n \n \n

9. Боровить/принять подарки

\n \n

Вы не будете брать взаймы или принимать какие-либо деньги, подарки, вознаграждение или компенсацию за ваши личные доходы от или в ином месте под денежный долг любому лицу/клиенту, с которым у вас могут быть официальные сделки.

\n \n \n \n

10. Прекращение

\n \n

10.1 Ваше назначение может быть прекращено компанией без каких бы то ни было оснований, предоставляя Вам не менее [ Уведомление] месяцев, предшея уведомлению в письменной форме или окладе вместо них. Для целей этого положения заработная плата означает базовый оклад.

\n \n

10.2 Вы можете прекратить свою трудовую деятельность с компанией без каких-либо причин, предоставляя не меньше, чем [ Employee Notice] months предварительное уведомление или оклад за несохраненный период, оставатся после корректировки отложенных листьев, как на сегодняшний день.

\n \n

10.3 Компания оставляет за собой право прекратить вашу работу в суммарном порядке без какого-либо уведомления о сроке или увольнении, если у нее есть достаточные основания полагать, что вы виновны в проступке или халатности, или совершили какое-либо существенное нарушение договора, или причинило убытки Компании. 

\n \n

10. 4 О прекращении вашей работы по какой бы то ни было причине вы вернетесь в Компании все имущество; документы, а 

\n \n

бумаги, как оригинальные, так и их копии, включая любые образцы, литературу, контракты, записи, списки, чертежи, чертежи,

\n \n

письма, заметки, данные и тому подобное; и Конфиденциальная информация, в вашем распоряжении или под вашим контролем, связанным с вашей работой или деловыми делами клиентов.   

\n \n \n \n

11. Конфиденциальная информация

\n \n

11. 1 Во время вашего трудоустройства с компанией Вы посвяте все свое время, внимание, умение максимально

\n \n

Его бизнес. Вы не должны, прямо или косвенно, заниматься или ассоциировать себя с заинтересованными, занятым, занятым, или временем, или продолжать любой курс обучения, без предварительного разрешения Компани.заниматься каким-либо другим бизнесом или деятельностью или любой другой пост или работать неполный рабочий день или заниматься какой бы то ни было исследованием, без предварительного разрешения

\n \n

Компания.

\n \n

11.2 Вы всегда должны сохранять наивысшую степень конфиденциальности и хранить в качестве конфиденциальной записи, документы и другие 

\n \n

Конфиденциальная информация, касающаяся бизнеса Компании, которая может быть вам известна или конфиденциальна любым способом, и Вы будете использовать такие записи, документы и информацию только в установленном порядке в интересах Компании. Для целей настоящей статьи \"Конфиденциальная информация\" означает информацию о бизнесе Компании и о ее клиентах, которая недоступна для широкой общественности и которая может быть изучилась Вами в ходе вашей работы. Это включает в себя:

\n \n

но не ограничивается информацией, касающейся организации, ее списков клиентов, политики в области занятости, персонала и информации о продуктах Компании, процессах, включая идеи, концепции, прогнозы, технологии, руководства, чертеж, чертеж, 

\n \n

спецификации, и все бумаги, резюме, записи и другие документы, содержащие такую Конфиденциальную Информацию.

\n \n

11.3 В любое время вы не будете удалять конфиденциальную информацию из офиса без разрешения.

\n \n

11.4 Ваш долг защищать и не отсосать

\n \n

e Конфиденциальная информация выдержит срок действия или прекращения действия настоящего Соглашения и/или вашей работы с компанией.

\n \n

11.5 Нарушение условий, изложенных в настоящем положении, приведет к тому, что в дополнение к любым другим средствам правовой защиты, которые компания может иметь против вас, в соответствии с вышеприведенным положением, вы можете получить краткое увольнение в соответствии с этим положением.

\n \n \n \n

12. Замечания

\n \n

Уведомления могут быть даны Вами Компании по адресу ее зарегистрированного офиса. Извещения могут быть даны компанией Вам по адресу, с которым вы в официальных отчетах.

\n \n \n \n

13. Применимость политики компании

\n \n

Компания вправе время от времени делать политические заявления по таким вопросам, как право на отпуск, материнство

\n \n

отпуска, пособия для работников, продолжительность рабочего дня, трансферная политика и т.д. и время от времени могут изменяться исключительно по своему усмотрению.

\n \n

Все такие принципиальные решения Компании являются обязательными для Вас и переопределяют это Соглашение в такой степени.

\n \n \n \n

14. Регулирующий Право/юрисдикция

\n \n

Ваше трудоустройство с компанией подпадает под действие законов страны. Все споры подлежат юрисдикции Высокого суда

\n \n

Только Гуджарат.

\n \n \n \n

15. Принятие нашего предложения

\n \n

Пожалуйста, подтвердите свое согласие с этим Договором о занятости, подписав и возвращая дубликат копии.

\n \n \n \n

Мы приветствуем Вас и надеемся на то, что Вы принимаете свое согласие и работаете с Вами.

\n \n \n \n

Искренне Ваш,

\n \n

{ app_name }

\n \n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (31,'tr','

Katılma Mektubu

\n

{date}

\n

{employee_name}

\n

{address}

\n

Konu: Kadroya randevu {designation}

\n

Canım {employee_name},

\n

konumunu size sunmaktan mutluluk duyuyoruz {designation} ile {app_name} Şirket aşağıdaki şartlarla ve

\n

koşullar:

\n

1. işe başlama

\n

İşe alımınız şu tarihten itibaren etkili olacaktır {start_date}

\n

2. İş unvanı

\n

İş unvanınız olacak{designation}.

\n

3. Maaş

\n

Maaşınız ve diğer menfaatleriniz Programda belirtildiği gibi olacaktır 1, buraya.

\n

4. Gönderme Yeri

\n

adresinde yayınlanacaksınız {branch}. Ancak Şirketin sahip olduğu herhangi bir işyerinde çalışmanız gerekebilir veya

\n

daha sonra edinebilir.

\n

5. Çalışma saati

\n

Normal çalışma günleri Pazartesiden Cumaya kadardır. için gerekli olan saatlerde çalışmanız istenecektir

\n

Şirkete karşı görevlerinizi uygun şekilde yerine getirmek. Normal çalışma saatleri, {start_time} ile {end_time} ve sen

\n

daha az çalışması beklenmiyor {total_hours} her hafta saat ve gerekirse, durumunuza bağlı olarak ek saatler

\n

sorumluluklar.

\n

6. İzin/Tatiller

\n

6.1 12 gün izin hakkınız var.

\n

6.2 12 iş günü ücretli hastalık izni hakkınız var.

\n

6.3 Şirket, her yılın başında ilan edilen tatillerin bir listesini bildirecektir.

\n

7. görevlerin niteliği

\n

Görevinizin doğasında bulunan tüm görevleri ve şirket olarak bu tür ek görevleri elinizden gelen en iyi şekilde yerine getireceksiniz

\n

zaman zaman performans göstermeniz için sizi çağırabilir. Özel görevleriniz, burada Çizelge IIde belirtilmiştir.

\n

8. Şirket mülkiyeti

\n

Görev süresince resmi kullanım için size emanet edilmiş olabilecek Şirket mallarını her zaman iyi durumda tutacaksınız

\n

istihdamınızdan feragat etmeden önce bu tür tüm mülkleri Şirkete iade edecektir, aksi takdirde maliyet

\n

aynı tutar Şirket tarafından sizden tahsil edilecektir.

\n

9. Ödünç alma/hediye kabul etme

\n

Kişisel kazançlarınız için kendinizden herhangi bir para, hediye, ödül veya tazminat ödünç almayacak veya kabul etmeyeceksiniz

\n

resmi ilişkiler içinde olabileceğiniz herhangi bir kişiye/müşteriye karşı maddi yükümlülük altında.

\n

10. Sonlandırma

\n

10.1 Randevunuz Şirket tarafından size en az [Bildirim] ay öncesinden bildirimde bulunularak herhangi bir sebep göstermeksizin feshedilebilir

\n

yazılı bildirim veya bunun yerine maaş. Bu maddenin amaçları doğrultusunda maaş, temel maaş anlamına gelir.

\n

10.2 [Çalışan Bildirimi]nden daha az olmamak kaydıyla, Şirketteki çalışmanızı herhangi bir sebep göstermeden feshedebilirsiniz

\n

ay önceden ihbar veya kaydedilmemiş dönem için maaş, tarih itibariyle bekleyen izinlerin ayarlanmasından sonra kalan.

\n

10.3 Şirket, herhangi bir ihbar süresi veya fesih ödemesi olmaksızın iş akdinizi aniden feshetme hakkını saklı tutar

\n

suiistimal veya ihmalden suçlu olduğunuza veya herhangi bir temel ihlalde bulunduğunuza inanmak için makul bir gerekçesi varsa

\n

sözleşmeye veya Şirkete herhangi bir zarara neden oldu.

\n

10. 4 Herhangi bir nedenle işinize son verildiğinde, tüm mal varlığınızı Şirkete iade edeceksiniz; belgeler ve

\n

tüm numuneler, literatür, sözleşmeler, kayıtlar, listeler, çizimler, planlar dahil olmak üzere kağıt, hem orijinali hem de kopyaları,

\n

mektuplar, notlar, veriler ve benzerleri; ve Gizli Bilgiler, sizin mülkiyetinizde veya kontrolünüz altında

\n

İstihdam veya müşterilerin iş ilişkilerine.

\n

11. Kesin bilgi

\n

11. 1 Şirkette çalıştığınız süre boyunca tüm zamanınızı, dikkatinizi ve becerinizi elinizden gelenin en iyisini yapmaya adayacaksınız

\n

onun işi. Doğrudan veya dolaylı olarak kendinizle ilişki kurmamalı veya ilişkilendirmemeli, bunlarla bağlantı kurmamalı, ilgilenmemeli, istihdam edilmemeli veya

\n

Şirketin önceden izni olmaksızın herhangi bir eğitim kursuna devam etmeyin veya herhangi bir kursa devam etmeyin

\n

faaliyetleri veya diğer herhangi bir görev veya yarı zamanlı çalışma veya önceden izin almaksızın herhangi bir eğitim kursuna devam etme

\n

Şirket.

\n

11.2 Her zaman en yüksek derecede gizliliği korumalı ve kayıtları, belgeleri ve diğer bilgileri gizli tutmalısınız.

\n

Sizin tarafınızdan bilinebilecek veya herhangi bir şekilde size güvenilebilecek Şirketin işleriyle ilgili Gizli Bilgiler

\n

ve bu tür kayıtları, belgeleri ve bilgileri yalnızca usulüne uygun olarak Şirketin çıkarları doğrultusunda kullanacaksınız. İçin

\n

bu maddenin amaçları Gizli Bilgiler, Şirketin ve müşterilerinin işleri hakkında bilgi anlamına gelir

\n

halka açık olmayan ve istihdamınız sırasında sizin tarafınızdan öğrenilebilecek olan. Bu içerir,

\n

ancak bunlarla sınırlı olmamak üzere, kuruluşa ilişkin bilgiler, müşteri listeleri, istihdam politikaları, personel ve bilgiler

\n

fikirler, kavramlar, projeksiyonlar, teknoloji, kılavuzlar, çizimler, tasarımlar dahil olmak üzere Şirketin ürünleri, süreçleri hakkında,

\n

spesifikasyonlar ve bu tür Gizli Bilgileri içeren tüm belgeler, özgeçmişler, kayıtlar ve diğer belgeler.

\n

11.3 Gizli Bilgileri hiçbir zaman izinsiz olarak ofisten çıkarmayacak mısınız?.

\n

11.4 Koruma ve açıklamama göreviniz

\n

e Gizli Bilgiler, bu Sözleşmenin sona ermesinden veya feshedilmesinden ve/veya Şirketteki istihdamınızdan sonra da geçerliliğini koruyacaktır.

\n

11.5 Bu maddenin koşullarının ihlali, sizi herhangi bir ek olarak yukarıdaki madde uyarınca derhal işten çıkarmaya yükümlü kılacaktır

\n

Şirketin kanunen size karşı sahip olabileceği diğer çareler.

\n

12. Bildirimler

\n

Tebligatlar tarafınızca Şirket in kayıtlı ofis adresine gönderilebilir. Bildirimler Şirket tarafından size şu adreste verilebilir

\n

tResmi kayıtlarda sizin tarafınızdan bildirilen adres.

\n

13. Şirket Politikasının Uygulanabilirliği

\n

Şirket, izin hakkı, analık gibi konularda zaman zaman poliçe beyanı yapmaya yetkilidir

\n

izinler, çalışanlara sağlanan faydalar, çalışma saatleri, transfer politikaları vb. ve tamamen kendi takdirine bağlı olarak zaman zaman değiştirebilir.

\n

Şirketin tüm bu tür politika kararları sizin için bağlayıcı olacak ve bu Sözleşmeyi o ölçüde geçersiz kılacaktır.

\n

14. Geçerli Yasa/Yargı Yetkisi

\n

Şirkette istihdamınız Ülke yasalarına tabidir. Tüm ihtilaflar Yüksek Mahkemenin yargı yetkisine tabi olacaktır.

\n

sadece Gujarat.

\n

15. teklifimizin kabulü

\n

Lütfen bu İş Sözleşmesini kabul ettiğinizi imzalayarak ve kopya kopyayı geri göndererek onaylayın.

\n

Size hoş geldiniz diyor ve kabulünüzü almayı ve sizinle çalışmayı sabırsızlıkla bekliyoruz.

\n

Saygılarımla,

\n

{app_name}

\n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (32,'zh','

加盟信

\n

{date}

\n

{employee_name}

\n

{address}

\n

主题:任命 {designation}

\n

亲爱的 {employee_name},

\n

我们很高兴为您提供以下职位: {designation} 和 {app_name} 公司按照以下条款和

\n

状况:

\n

1. 开始就业

\n

您的雇佣关系将在以下日期生效 {start_date}

\n

2. 职称

\n

您的职位名称将是{designation}.

\n

3. 薪水

\n

您的工资和其他福利将在附表 1 中列出,此处为.

\n

4. 发帖地点

\n

您将被发布在 {branch}. 但是,您可能需要在公司拥有的任何营业地点工作,或者

\n

以后可能会获得.

\n

5. 几小时的工作

\n

正常工作日为周一至周五。您将需要在必要的时间内工作

\n

正确履行您对公司的职责。正常工作时间是从 {start_time} 到 {end_time} 而你是

\n

预计工作不少于 {total_hours} 每周几个小时,如有必要,根据您的情况还可以增加几个小时

\n

责任.

\n

6. 休假/节假日

\n

6.1 您有权享受 12 天的事假.

\n

6.2 您有权享受 12 个工作日的带薪病假.

\n

6.3 公司应在每年年初公布已宣布的假期清单.

\n

7. 职责性质

\n

您将尽最大努力履行您职位固有的所有职责以及公司的其他职责

\n

可能会不时要求您表演。您的具体职责在附表 II 中列出,以便.

\n

8. 公司财产

\n

您将始终保持公司财产的良好状态,这些财产可能会在工作期间委托给您用于正式使用

\n

您的工作,并应在放弃您的职责之前将所有此类财产归还给公司,否则费用

\n

公司将向您追回相同的费用.

\n

9. 借用/接受礼物

\n

您不会借用或接受任何金钱、礼物、奖励或补偿来获取个人利益或以其他方式安置自己

\n

对可能与您有正式往来的任何人/客户承担金钱义务.

\n

10. 终止

\n

10.1 公司可以在至少 [通知] 个月之前向您发出无任何理由的终止您的任命

\n

书面通知或工资代替。本条所称工资是指基本工资.

\n

10.2 您可以无任何理由地终止与公司的雇佣关系,只需发出不少于[员工通知]

\n

提前几个月通知或未保存期间的工资,在待休假调整后剩余,截至日期.

\n

10.3 公司保留立即终止雇佣关系的权利,无需任何通知期或终止付款

\n

如果有合理的理由相信您犯有不当行为或疏忽,或犯有任何根本违反

\n

合同,或给公司造成任何损失.

\n

10. 4 无论出于何种原因终止雇佣关系,您都应将所有财产归还给公司;文件,以及

\n

纸张,原件和复印件,包括任何样品、文献、合同、记录、清单、图纸、蓝图,

\n

信件、笔记、数据等;您拥有或控制下的与您的相关的机密信息

\n

就业或客户商务事务.

\n

11. 机密信息

\n

11. 1 在您受雇于公司期间,您将尽最大努力投入全部时间、注意力和技能,

\n

它的业务。您不得直接或间接地参与、联系、涉及、雇用或参与

\n

未经公司事先许可,花时间或进行任何学习课程。从事任何其他业务或

\n

未经雇主事先许可,从事任何活动或任何其他职位或兼职工作或进行任何学习课程

\n

公司.

\n

11.2 您必须始终保持最高程度的机密性,并对记录、文件和其他内容保密

\n

您可能知道或通过任何方式向您透露的与公司业务相关的机密信息

\n

您只能以符合公司利益的正式授权方式使用此类记录、文件和信息。为了

\n

本条款的目的机密信息是指有关公司业务及其客户业务的信息

\n

这是一般公众无法获得的,但您可以在工作过程中了解到。这包括,

\n

但不限于与组织、其客户名单、雇佣政策、人员和信息有关的信息

\n

关于公司的产品、流程,包括想法、概念、预测、技术、手册、绘图、设计,

\n

规范以及包含此类机密信息的所有文件、简历、记录和其他文件.

\n

11.3 未经许可,您不得在任何时候从办公室删除任何机密信息.

\n

11.4 您有责任保护且不泄露

\n

e 机密信息在本协议到期或终止和/或您与公司的雇佣关系到期或终止后仍然有效.

\n

11.5 违反本条款的条件将使您根据上述条款承担立即解雇的责任,此外,

\n

公司可能在法律上对您采取的其他补救措施.

\n

12. 通知

\n

您可以通过公司的注册办公地址向公司发出通知。公司可能会向您发出通知,地址为:

\n

您在正式记录中透露的地址.

\n

13. 公司政策的适用性

\n

公司有权不时就休假、生育等事宜作出政策声明

\n

休假、员工福利、工作时间、调动政策等,并可自行决定不时更改.

\n

公司的所有此类政策决定均对您具有约束力,并在一定程度上优先于本协议.

\n

14. 适用法律/司法管辖区

\n

您在公司的雇佣关系须遵守国家/地区法律。所有争议均受高等法院管辖

\n

仅限古吉拉特邦.

\n

15. 接受我们的报价

\n

请签署并返回副本以确认您接受本雇佣合同.

\n

我们欢迎您并期待得到您的认可并与您合作.

\n

此致,

\n

{app_name}

\n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (33,'he','

מכתב הצטרפות

\n

{date}

\n

{employee_name}

\n

{address}

\n

נושא: מינוי לתפקיד של {designation}

\n

יָקָר {employee_name},

\n

אנו שמחים להציע לך את התפקיד של {designation} עם {app_name} החברה בתנאים הבאים ו

\n

תנאים:

\n

1. תחילת עבודה

\n

העסקתך תהיה אפקטיבית, החל מהיום {start_date}

\n

2. הגדרת תפקיד

\n

שם התפקיד שלך יהיה{designation}.

\n

3. שכר

\n

השכר וההטבות האחרות שלך יהיו כמפורט בנספח 1, כאן ל.

\n

4. מקום הפרסום

\n

אתה תפורסם ב {branch}. עם זאת, ייתכן שתידרש לעבוד בכל מקום עסק שיש לחברה, או

\n

עשוי לרכוש מאוחר יותר.

\n

5. שעות עבודה

\n

ימי העבודה הרגילים הם שני עד שישי. תידרש לעבוד במשך שעות הדרושות לצורך

\n

מילוי נאות של חובותיך כלפי החברה. שעות העבודה הרגילות הן מ {start_time} ל {end_time} ואתה

\n

צפוי לעבוד לא פחות מ {total_hours} שעות בכל שבוע, ובמידת הצורך לשעות נוספות בהתאם לבחירתך

\n

אחריות.

\n

6. עזיבה/חגים

\n

6.1 אתה זכאי לחופשה מזדמנת של 12 ימים.

\n

6.2 אתה זכאי ל-12 ימי עבודה של חופשת מחלה בתשלום.

\n

6.3 החברה תודיע על רשימת חגים מוכרזים בתחילת כל שנה.

\n

7. אופי התפקידים

\n

תבצע כמיטב יכולתך את כל התפקידים הגלומים בתפקידך וחובות נוספות כמו החברה

\n

עשוי לקרוא לך להופיע, מעת לעת. החובות הספציפיות שלך מפורטות בלוח הזמנים II כאן כדי.

\n

8. רכוש החברה

\n

תמיד תשמור על רכוש החברה במצב טוב, אשר עשוי להיות מופקד בידיך לשימוש רשמי במהלך

\n

העסקתך, ותחזיר את כל הרכוש כאמור לחברה לפני ויתור על החיוב שלך, אם לא העלות

\n

ממנו יגבו ממך על ידי החברה.

\n

9. השאלת/קבלת מתנות

\n

לא תלווה או תקבל שום כסף, מתנה, תגמול או פיצוי עבור הרווחים האישיים שלך או תציב את עצמך בדרך אחרת.

\n

תחת התחייבות כספית לכל אדם/לקוח שעמו אתה עשוי לנהל עסקאות רשמיות.

\n

10. סיום

\n

10.1 ניתן לסיים את מינויך על ידי החברה, ללא כל סיבה, על ידי מתן הודעה לא פחות מ[הודעה] חודשים לפני כן.

\n

הודעה בכתב או משכורת במקומה. לעניין סעיף זה, שכר משמעו שכר יסוד.

\n

10.2 אתה רשאי לסיים את העסקתך בחברה, ללא כל סיבה, על ידי מתן לא פחות מ[הודעת עובד]

\n

חודשי הודעה מוקדמת או משכורת לתקופה שלא נחסכה, שנותרה לאחר התאמת חופשות ממתינות, לפי התאריך.

\n

10.3 החברה שומרת לעצמה את הזכות לסיים את העסקתך באופן סופי ללא כל תקופת הודעה מוקדמת או תשלום פיטורין

\n

אם יש לו יסוד סביר להאמין שאתה אשם בהתנהגות בלתי הולמת או ברשלנות, או שביצעת הפרה יסודית כלשהי של

\n

חוזה, או גרם להפסד כלשהו לחברה.

\n

10. 4 עם סיום העסקתך מכל סיבה שהיא, תחזיר לחברה את כל הרכוש; מסמכים, ו

\n

נייר, הן מקור והעתקים שלו, לרבות כל דוגמאות, ספרות, חוזים, רשומות, רשימות, שרטוטים, שרטוטים,

\n

מכתבים, הערות, נתונים וכדומה; ומידע סודי, הנמצא ברשותך או בשליטתך, המתייחס לרשותך

\n

תעסוקה או עניינים עסקיים של לקוחות.

\n

11. מידע מסווג

\n

11. 1 במהלך עבודתך בחברה תקדיש את כל זמנך, תשומת הלב והמיומנות שלך כמיטב יכולתך למען

\n

העסק שלה. אין, במישרין או בעקיפין, לעסוק או לקשר את עצמך, להיות קשור, מודאג, מועסק, או

\n

זמן או להמשיך כל מסלול לימודים שהוא, ללא אישור מראש של החברה. העוסקת בכל עסק אחר או

\n

פעילות או כל משרה אחרת או עבודה במשרה חלקית או להמשיך בכל מסלול לימודים שהוא, ללא אישור מראש של

\n

חֶברָה.

\n

11.2 עליך תמיד לשמור על רמת הסודיות הגבוהה ביותר ולשמור בסודיות את הרשומות, המסמכים ועוד.

\n

מידע סודי המתייחס לעסקים של החברה אשר עשוי להיות ידוע לך או נסתר לך בכל אמצעי

\n

ואתה תשתמש ברשומות, במסמכים ובמידע כאמור רק באופן מורשה כדין לטובת החברה. ל

\n

המטרות של סעיף זה מידע סודי פירושו מידע על עסקי החברה ושל לקוחותיה

\n

שאינו זמין לציבור הרחב ואשר עשוי להילמד על ידך במהלך העסקתך. זה כולל,

\n

אך לא מוגבל למידע הנוגע לארגון, רשימות הלקוחות שלו, מדיניות העסקה, כוח אדם ומידע

\n

על מוצרי החברה, תהליכים כולל רעיונות, קונספטים, תחזיות, טכנולוגיה, מדריכים, ציור, עיצובים,

\n

מפרטים, וכל הניירות, קורות החיים, הרשומות ומסמכים אחרים המכילים מידע סודי כאמור.

\n

11.3 בשום זמן לא תסיר כל מידע סודי מהמשרד ללא רשות.

\n

11.4 חובתך לשמור ולא לחשוף

\n

מידע סודי ישרוד את תפוגה או סיומו של הסכם זה ו/או העסקתך בחברה.

\n

11.5 הפרת תנאי סעיף זה תגרום לך לדין לפיטורים על הסף על פי הסעיף לעיל בנוסף לכל

\n

סעד אחר שייתכן שיש לחברה נגדך בחוק.

\n

12. הודעות

\n

הודעות עשויות להימסר על ידך לחברה בכתובת משרדה הרשום. ייתכן שהחברה תמסור לך הודעות בכתובת

\n

הכתובת שצוינה על ידך ברישומים הרשמיים.

\n

13. תחולת מדיניות החברה

\n

החברה תהיה רשאית להצהיר מעת לעת הצהרות מדיניות הנוגעות לעניינים כמו זכאות לחופשה, לידה

\n

חופשה, הטבות לעובדים, שעות עבודה, פוליסות העברה וכו, ועשויות לשנות אותן מעת לעת לפי שיקול דעתה הבלעדי.

\n

כל החלטות מדיניות כאלה של החברה יחייבו אותך ויעקפו את הסכם זה במידה זו.

\n

14. חוק / סמכות שיפוט

\n

העסקתך בחברה כפופה לחוקי המדינה. כל המחלוקות יהיו כפופות לסמכותו של בית המשפט העליון

\n

גוג אראט בלבד.

\n

15. קבלת ההצעה שלנו

\n

אנא אשר את הסכמתך לחוזה העסקה זה על ידי חתימה והחזרת העותק הכפול.

\n

אנו מברכים אותך ומצפים לקבל את קבלתך ולעבוד איתך.

\n

בכבוד רב,

\n

{app_name}

\n

{date}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (34,'pt-br','

Carta De Adesão

\n \n

{data}

\n \n

{employee_name}

\n \n

{address}

\n \n

Assunto: Nomeação para o cargo de {designation}

\n \n

Querido {employee_name},

\n \n

Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e

\n

condições:

\n \n

1. Comentamento do emprego

\n \n

Seu emprego será efetivo, a partir de {start_date}

\n \n

2. Título do emprego

\n \n

Seu cargo de trabalho será {designation}.

\n \n

3. Salário

\n \n

Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.

\n \n

4. Local de postagem

\n \n

Você será postado em {branch}. Você pode, no entanto, ser obrigado a trabalhar em qualquer local de negócios que a Empresa tenha, ou possa posteriormente adquirir.

\n \n

5. Horas de Trabalho

\n \n

Os dias normais de trabalho são de segunda a sexta-feira. Você será obrigado a trabalhar por tais horas, conforme necessário para a quitação adequada de suas funções para a Companhia. As horas de trabalho normais são de {start_time} para {end_time} e você deve trabalhar não menos de {total_horas} horas semanais, e se necessário para horas adicionais dependendo do seu

\n

responsabilidades.

\n \n

6. Leave / Holidays

\n \n

6,1 Você tem direito a licença casual de 12 dias.

\n \n

6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.

\n \n

6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. 

\n \n

7. Natureza dos deveres

\n \n

Você irá executar ao melhor da sua habilidade todos os deveres como são inerentes ao seu cargo e tais deveres adicionais como a empresa pode ligar sobre você para executar, de tempos em tempos. Os seus deveres específicos são estabelecidos no Hereto do Planejamento II.

\n \n

8. Propriedade da empresa

\n \n

Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de

\n \n

o seu emprego, e devolverá toda essa propriedade à Companhia antes de abdicar de sua acusação, falhando qual o custo do mesmo será recuperado de você pela Companhia.

\n \n

9. Borremir / aceitar presentes

\n \n

Você não vai pedir empréstimo ou aceitar qualquer dinheiro, presente, recompensa ou indenização por seus ganhos pessoais de ou de outra forma colocar-se sob obrigação pecuniária a qualquer pessoa / cliente com quem você pode estar tendo relações oficiais.

\n \n

10. Terminação

\n \n

10,1 Sua nomeação pode ser rescindida pela Companhia, sem qualquer razão, dando-lhe não menos do que [aviso] meses de aviso prévio por escrito ou de salário em lieu deste. Para efeito da presente cláusula, o salário deve significar salário base.

\n \n

10,2 Você pode rescindir seu emprego com a Companhia, sem qualquer causa, ao dar nada menos que [Aviso de contratação] meses de aviso prévio ou salário para o período não salvo, deixado após ajuste de folhas pendentes, conforme data de encontro.

\n \n

10,3 Empresa reserva-se o direito de rescindir o seu emprego sumariamente sem qualquer prazo de aviso ou de rescisão se tiver terreno razoável para acreditar que você é culpado de má conduta ou negligência, ou tenha cometido qualquer violação fundamental de contrato, ou tenha causado qualquer perda para a Empresa. 

\n \n

10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e 

\n \n

papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,

\n \n

cartas, notas, dados e semelhantes; e Informações Confidenciais, em sua posse ou sob seu controle relacionado ao seu emprego ou aos negócios de negócios dos clientes.   

\n \n

11. Informações Confidenciais

\n \n

11. 1 Durante o seu emprego com a Companhia você irá dedicar todo o seu tempo, atenção e habilidade para o melhor de sua capacidade de

\n \n

o seu negócio. Você não deve, direta ou indiretamente, se envolver ou associar-se com, estar conectado com, preocupado, empregado, ou tempo ou prosseguir qualquer curso de estudo, sem a permissão prévia do Company.engajado em qualquer outro negócio ou atividades ou qualquer outro cargo ou trabalho parcial ou prosseguir qualquer curso de estudo, sem a permissão prévia do

\n \n

Empresa.

\n \n

11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros 

\n \n

Informações confidenciais relativas ao negócio da Companhia que possam ser conhecidas por você ou confiadas em você por qualquer meio e utilizarão tais registros, documentos e informações apenas de forma devidamente autorizada no interesse da Companhia. Para efeitos da presente cláusula \"Informações confidenciais\" significa informação sobre os negócios da Companhia e a dos seus clientes que não está disponível para o público em geral e que poderá ser aprendida por você no curso do seu emprego. Isso inclui,

\n \n

mas não se limita a, informações relativas à organização, suas listas de clientes, políticas de emprego, pessoal, e informações sobre os produtos da Companhia, processos incluindo ideias, conceitos, projeções, tecnologia, manuais, desenho, desenhos, 

\n \n

especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.

\n \n

11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.

\n \n

11,4 O seu dever de salvaguardar e não os desclos

\n \n

Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.

\n \n

11,5 Violação das condições desta cláusula irá torná-lo sujeito a demissão sumária sob a cláusula acima, além de qualquer outro remédio que a Companhia possa ter contra você em lei.

\n \n

12. Notices

\n \n

Os avisos podem ser conferidos por você à Empresa em seu endereço de escritório registrado. Os avisos podem ser conferidos pela Companhia a você no endereço intimado por você nos registros oficiais.

\n \n

13. Aplicabilidade da Política da Empresa

\n \n

A Companhia tem direito a fazer declarações de política de tempos em tempos relativos a matérias como licença de licença, maternidade

\n \n

sair, benefícios dos empregados, horas de trabalho, políticas de transferência, etc., e pode alterar o mesmo de vez em quando a seu exclusivo critério.

\n \n

Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.

\n \n

14. Direito / Jurisdição

\n \n

Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior

\n \n

Gujarat apenas.

\n \n

15. Aceitação da nossa oferta

\n \n

Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.

\n \n

Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.

\n \n

Seu Sinceramente,

\n \n

{app_name}

\n \n

{data}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'); /*!40000 ALTER TABLE `joining_letters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `landing_page_sections` -- DROP TABLE IF EXISTS `landing_page_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `landing_page_sections` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `section_name` varchar(191) NOT NULL, `section_order` int(11) NOT NULL DEFAULT 0, `content` text DEFAULT NULL, `section_type` enum('section-1','section-2','section-3','section-4','section-5','section-6','section-7','section-8','section-9','section-10','section-plan') NOT NULL, `default_content` text NOT NULL, `section_demo_image` text NOT NULL, `section_blade_file_name` text NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `landing_page_sections` -- LOCK TABLES `landing_page_sections` WRITE; /*!40000 ALTER TABLE `landing_page_sections` DISABLE KEYS */; /*!40000 ALTER TABLE `landing_page_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `landing_page_settings` -- DROP TABLE IF EXISTS `landing_page_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `landing_page_settings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `value` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `landing_page_settings_name_unique` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `landing_page_settings` -- LOCK TABLES `landing_page_settings` WRITE; /*!40000 ALTER TABLE `landing_page_settings` DISABLE KEYS */; INSERT INTO `landing_page_settings` VALUES (1,'topbar_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (2,'topbar_notification_msg','70% Special Offer. Don’t Miss it. The offer ends in 72 hours.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (3,'menubar_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (4,'menubar_page','[{\"menubar_page_name\": \"About Us\",\"template_name\": \"page_content\",\"page_url\": \"\",\"menubar_page_contant\": \"Welcome to the HRMGo-SaaS website. By accessing this website, you agree to comply with and be bound by the following terms and conditions of use. If you disagree with any part of these terms, please do not use our website. The content of the pages of this website is for your general information and use only. It is subject to change without notice. This website uses cookies to monitor browsing preferences. If you do allow cookies to be used, personal information may be stored by us for use by third parties. Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness, or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors, and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law. Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services, or information available through this website meet your specific requirements. This website contains material that is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance, and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions. Unauthorized use of this website may give rise to a claim for damages and\\/or be a criminal offense. From time to time, this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s\",\"page_slug\": \"about_us\",\"header\": \"on\",\"footer\": \"on\",\"login\": \"on\"},{\"menubar_page_name\": \"Terms and Conditions\",\"template_name\": \"page_content\",\"page_url\": \"\",\"menubar_page_contant\": \"Welcome to the HRMGo-SaaS website. By accessing this website, you agree to comply with and be bound by the following terms and conditions of use. If you disagree with any part of these terms, please do not use our website.\\r\\n\\r\\nThe content of the pages of this website is for your general information and use only. It is subject to change without notice.\\r\\n\\r\\nThis website uses cookies to monitor browsing preferences. If you do allow cookies to be used, personal information may be stored by us for use by third parties.\\r\\n\\r\\nNeither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness, or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors, and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.\\r\\n\\r\\nYour use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services, or information available through this website meet your specific requirements.\\r\\n\\r\\nThis website contains material that is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance, and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.\\r\\n\\r\\nUnauthorized use of this website may give rise to a claim for damages and\\/or be a criminal offense.\\r\\n\\r\\nFrom time to time, this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).\",\"page_slug\": \"terms_and_conditions\",\"header\": \"off\",\"footer\": \"on\",\"login\": \"on\"},{\"menubar_page_name\": \"Privacy Policy\",\"template_name\": \"page_content\",\"page_url\": \"\",\"menubar_page_contant\": \"Introduction: An overview of the privacy policy, including the purpose and scope of the policy. Information Collection: Details about the types of information collected from users\\/customers, such as personal information (name, address, email), device information, usage data, and any other relevant data. Data Usage: An explanation of how the collected data will be used, including providing services, improving products, personalization, analytics, and any other legitimate business purposes. Data Sharing: Information about whether and how the company shares user data with third parties, such as partners, service providers, or affiliates, along with the purposes of such sharing. Data Security: Details about the measures taken to protect user data from unauthorized access, loss, or misuse, including encryption, secure protocols, access controls, and data breach notification procedures. User Choices: Information on the choices available to users regarding the collection, use, and sharing of their personal data, including opt-out mechanisms and account settings. Cookies and Tracking Technologies: Explanation of the use of cookies, web beacons, and similar technologies for tracking user activity and collecting information for analytics and advertising purposes. Third-Party Links: Clarification that the companys website or services may contain links to third-party websites or services and that the privacy policy does not extend to those external sites. Data Retention: Details about the retention period for user data and how long it will be stored by the company. Legal Basis and Compliance: Information about the legal basis for processing personal data, compliance with applicable data protection laws, and the rights of users under relevant privacy regulations (e.g., GDPR, CCPA). Updates to the Privacy Policy: Notification that the privacy policy may be updated from time to time, and how users will be informed of any material changes. Contact Information: How users can contact the company regarding privacy-related concerns or inquiries.\",\"page_slug\": \"privacy_policy\",\"header\": \"off\",\"footer\": \"on\",\"login\": \"on\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (5,'site_logo','site_logo.png','2024-05-29 04:33:11','2024-05-29 04:33:11'), (6,'site_description','We build modern web tools to help you jump-start your daily business work.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (7,'home_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (8,'home_offer_text','70% Special Offer','2024-05-29 04:33:11','2024-05-29 04:33:11'), (9,'home_title','Home','2024-05-29 04:33:11','2024-05-29 04:33:11'), (10,'home_heading','HRMGo SaaS - HRM and Payroll Tool','2024-05-29 04:33:11','2024-05-29 04:33:11'), (11,'home_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (12,'home_trusted_by','1000+ Customer','2024-05-29 04:33:11','2024-05-29 04:33:11'), (13,'home_live_demo_link','https://demo.workdo.io/hrmgo-saas/login','2024-05-29 04:33:11','2024-05-29 04:33:11'), (14,'home_buy_now_link','https://codecanyon.net/item/hrmgo-saas-hrm-and-payroll-tool/25982934','2024-05-29 04:33:11','2024-05-29 04:33:11'), (15,'home_banner','home_banner.png','2024-05-29 04:33:11','2024-05-29 04:33:11'), (16,'home_logo','home_logo.png,home_logo.png,home_logo.png,home_logo.png,home_logo.png,home_logo.png,home_logo.png','2024-05-29 04:33:11','2024-05-29 04:33:11'), (17,'feature_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (18,'feature_title','Features','2024-05-29 04:33:11','2024-05-29 04:33:11'), (19,'feature_heading','All In One Place HRM System','2024-05-29 04:33:11','2024-05-29 04:33:11'), (20,'feature_description','Use these awesome forms to login or create new account in your project for free. Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (21,'feature_buy_now_link','https://codecanyon.net/item/hrmgo-saas-hrm-and-payroll-tool/25982934','2024-05-29 04:33:11','2024-05-29 04:33:11'), (22,'feature_of_features','[{\"feature_logo\":\"1686575690-feature_logo.png\",\"feature_heading\":\"Feature\",\"feature_description\":\"

Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.<\\/p>\"},{\"feature_logo\":\"1686545757-feature_logo.png\",\"feature_heading\":\"Support\",\"feature_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"feature_logo\":\"1686546152-feature_logo.png\",\"feature_heading\":\"Integration\",\"feature_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (23,'highlight_feature_heading','HRMGo SaaS - HRM and Payroll Tool','2024-05-29 04:33:11','2024-05-29 04:33:11'), (24,'highlight_feature_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (25,'highlight_feature_image','highlight_feature_image.png','2024-05-29 04:33:11','2024-05-29 04:33:11'), (26,'other_features','[{\"other_features_image\":\"1688372964-other_features_image.png\",\"other_features_heading\":\"HRMGo SaaS - HRM and Payroll Tool\",\"other_featured_description\":\"

Use these awesome forms to login or create new account in your project for free.<\\/p>\",\"other_feature_buy_now_link\":\"https:\\/\\/codecanyon.net\\/item\\/hrmgo-saas-hrm-and-payroll-tool\\/25982934\"},{\"other_features_image\":\"1688373001-other_features_image.png\",\"other_features_heading\":\"HRMGo SaaS - HRM and Payroll Tool\",\"other_featured_description\":\"

Use these awesome forms to login or create new account in your project for free.<\\/p>\",\"other_feature_buy_now_link\":\"https:\\/\\/codecanyon.net\\/item\\/hrmgo-saas-hrm-and-payroll-tool\\/25982934\"},{\"other_features_image\":\"1688373017-other_features_image.png\",\"other_features_heading\":\"HRMGo SaaS - HRM and Payroll Tool\",\"other_featured_description\":\"

Use these awesome forms to login or create new account in your project for free.<\\/p>\",\"other_feature_buy_now_link\":\"https:\\/\\/codecanyon.net\\/item\\/hrmgo-saas-hrm-and-payroll-tool\\/25982934\"},{\"other_features_image\":\"1688373037-other_features_image.png\",\"other_features_heading\":\"HRMGo SaaS - HRM and Payroll Tool\",\"other_featured_description\":\"

Use these awesome forms to login or create new account in your project for free.<\\/p>\",\"other_feature_buy_now_link\":\"https:\\/\\/codecanyon.net\\/item\\/hrmgo-saas-hrm-and-payroll-tool\\/25982934\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (27,'discover_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (28,'discover_heading','HRMGo SaaS - HRM and Payroll Tool','2024-05-29 04:33:11','2024-05-29 04:33:11'), (29,'discover_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (30,'discover_live_demo_link','https://demo.workdo.io/hrmgo-saas/login','2024-05-29 04:33:11','2024-05-29 04:33:11'), (31,'discover_buy_now_link','https://codecanyon.net/item/hrmgo-saas-hrm-and-payroll-tool/25982934','2024-05-29 04:33:11','2024-05-29 04:33:11'), (32,'discover_of_features','[{\"discover_logo\":\"1686575797-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"

Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.<\\/p>\"},{\"discover_logo\":\"1686547242-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"discover_logo\":\"1686547625-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"discover_logo\":\"1686547638-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"discover_logo\":\"1686547653-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"discover_logo\":\"1686547662-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"discover_logo\":\"1686547709-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"},{\"discover_logo\":\"1686547717-discover_logo.png\",\"discover_heading\":\"Feature\",\"discover_description\":\"Use these awesome forms to login or create new account in your project for free.Use these awesome forms to login or create new account in your project for free.\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (33,'screenshots_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (34,'screenshots_heading','HRMGo SaaS - HRM and Payroll Tool','2024-05-29 04:33:11','2024-05-29 04:33:11'), (35,'screenshots_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (36,'screenshots','[{\"screenshots\":\"1688373118-screenshots.png\",\"screenshots_heading\":\"HRM Dashboard\"},{\"screenshots\":\"1688373124-screenshots.png\",\"screenshots_heading\":\"User Roles\"},{\"screenshots\":\"1688373132-screenshots.png\",\"screenshots_heading\":\"Profile Overview\"},{\"screenshots\":\"1688373183-screenshots.png\",\"screenshots_heading\":\"HRM Users\"},{\"screenshots\":\"1688452985-screenshots.png\",\"screenshots_heading\":\"Contract Page\"},{\"screenshots\":\"1688450657-screenshots.png\",\"screenshots_heading\":\"Job Career\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (37,'plan_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (38,'plan_title','Plan','2024-05-29 04:33:11','2024-05-29 04:33:11'), (39,'plan_heading','HRMGo SaaS - HRM and Payroll Tool','2024-05-29 04:33:11','2024-05-29 04:33:11'), (40,'plan_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (41,'faq_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (42,'faq_title','Faq','2024-05-29 04:33:11','2024-05-29 04:33:11'), (43,'faq_heading','HRMGo SaaS - HRM and Payroll Tool','2024-05-29 04:33:11','2024-05-29 04:33:11'), (44,'faq_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (45,'faqs','[{\"faq_questions\":\"#What does \\\"Theme\\/Package Installation\\\" mean?\",\"faq_answer\":\"For an easy-to-install theme\\/package, we have included step-by-step detailed documentation (in English). However, if it is not done perfectly, please feel free to contact the support team at support@workdo.io\"},{\"faq_questions\":\"#What does \\\"Theme\\/Package Installation\\\" mean?\",\"faq_answer\":\"For an easy-to-install theme\\/package, we have included step-by-step detailed documentation (in English). However, if it is not done perfectly, please feel free to contact the support team at support@workdo.io\"},{\"faq_questions\":\"#What does \\\"Lifetime updates\\\" mean?\",\"faq_answer\":\"For an easy-to-install theme\\/package, we have included step-by-step detailed documentation (in English). However, if it is not done perfectly, please feel free to contact the support team at support@workdo.io\"},{\"faq_questions\":\"#What does \\\"Lifetime updates\\\" mean?\",\"faq_answer\":\"For an easy-to-install theme\\/package, we have included step-by-step detailed documentation (in English). However, if it is not done perfectly, please feel free to contact the support team at support@workdo.io\"},{\"faq_questions\":\"# What does \\\"6 months of support\\\" mean?\",\"faq_answer\":\"Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa\\r\\n nesciunt\\r\\n laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt\\r\\n sapiente ea\\r\\n proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven heard of them accusamus labore sustainable VHS.\"},{\"faq_questions\":\"# What does \\\"6 months of support\\\" mean?\",\"faq_answer\":\"Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa\\r\\n nesciunt\\r\\n laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt\\r\\n sapiente ea\\r\\n proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven heard of them accusamus labore sustainable VHS.\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (46,'testimonials_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (47,'testimonials_heading','From our Clients','2024-05-29 04:33:11','2024-05-29 04:33:11'), (48,'testimonials_description','Use these awesome forms to login or create new account in your project for free.','2024-05-29 04:33:11','2024-05-29 04:33:11'), (49,'testimonials_long_description','WorkDo seCommerce package offers you a “sales-ready.”secure online store. The package puts all the key pieces together, from design to payment processing. This gives you a headstart in your eCommerce venture. Every store is built using a reliable PHP framework -laravel. Thisspeeds up the development process while increasing the store’s security and performance.Additionally, thanks to the accompanying mobile app, you and your team can manage the store on the go. What’s more, because the app works both for you and your customers, you can use it to reach a wider audience.And, unlike popular eCommerce platforms, it doesn’t bind you to any terms and conditions or recurring fees. You get to choose where you host it or which payment gateway you use. Lastly, you getcomplete control over the looks of the store. And if it lacks any functionalities that you need, just reach out, and let’s discuss customization possibilities','2024-05-29 04:33:11','2024-05-29 04:33:11'), (50,'testimonials','[{\"testimonials_user_avtar\":\"1686634418-testimonials_user_avtar.jpg\",\"testimonials_title\":\"Tbistone\",\"testimonials_description\":\"Very quick customer support, installing this application on my machine locally, within 5 minutes of creating a ticket, the developer was able to fix the issue I had within 10 minutes. EXCELLENT! Thank you very much\",\"testimonials_user\":\"Chordsnstrings\",\"testimonials_designation\":\"from codecanyon\",\"testimonials_star\":\"5\"},{\"testimonials_user_avtar\":\"1686634425-testimonials_user_avtar.jpg\",\"testimonials_title\":\"Tbistone\",\"testimonials_description\":\"Very quick customer support, installing this application on my machine locally, within 5 minutes of creating a ticket, the developer was able to fix the issue I had within 10 minutes. EXCELLENT! Thank you very much\",\"testimonials_user\":\"Chordsnstrings\",\"testimonials_designation\":\"from codecanyon\",\"testimonials_star\":\"5\"},{\"testimonials_user_avtar\":\"1686634432-testimonials_user_avtar.jpg\",\"testimonials_title\":\"Tbistone\",\"testimonials_description\":\"Very quick customer support, installing this application on my machine locally, within 5 minutes of creating a ticket, the developer was able to fix the issue I had within 10 minutes. EXCELLENT! Thank you very much\",\"testimonials_user\":\"Chordsnstrings\",\"testimonials_designation\":\"from codecanyon\",\"testimonials_star\":\"5\"}]','2024-05-29 04:33:11','2024-05-29 04:33:11'), (51,'footer_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (52,'joinus_status','on','2024-05-29 04:33:11','2024-05-29 04:33:11'), (53,'joinus_heading','Join Our Community','2024-05-29 04:33:11','2024-05-29 04:33:11'), (54,'joinus_description','We build modern web tools to help you jump-start your daily business work.','2024-05-29 04:33:11','2024-05-29 04:33:11'); /*!40000 ALTER TABLE `landing_page_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `languages` -- DROP TABLE IF EXISTS `languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `languages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) DEFAULT NULL, `fullName` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `languages` -- LOCK TABLES `languages` WRITE; /*!40000 ALTER TABLE `languages` DISABLE KEYS */; INSERT INTO `languages` VALUES (1,'ar','Arabic','2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'zh','Chinese','2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'da','Danish','2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'de','German','2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'en','English','2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,'es','Spanish','2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,'fr','French','2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,'he','Hebrew','2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,'it','Italian','2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,'ja','Japanese','2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,'nl','Dutch','2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,'pl','Polish','2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,'pt','Portuguese','2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,'ru','Russian','2024-05-29 04:33:16','2024-05-29 04:33:16'), (15,'tr','Turkish','2024-05-29 04:33:16','2024-05-29 04:33:16'), (16,'pt-br','Portuguese(Brazil)','2024-05-29 04:33:16','2024-05-29 04:33:16'); /*!40000 ALTER TABLE `languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leave_types` -- DROP TABLE IF EXISTS `leave_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leave_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `days` int(11) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leave_types` -- LOCK TABLES `leave_types` WRITE; /*!40000 ALTER TABLE `leave_types` DISABLE KEYS */; /*!40000 ALTER TABLE `leave_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leaves` -- DROP TABLE IF EXISTS `leaves`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leaves` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `leave_type_id` int(11) NOT NULL, `applied_on` date NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `total_leave_days` varchar(191) NOT NULL, `leave_reason` varchar(191) NOT NULL, `remark` varchar(191) DEFAULT NULL, `status` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leaves` -- LOCK TABLES `leaves` WRITE; /*!40000 ALTER TABLE `leaves` DISABLE KEYS */; /*!40000 ALTER TABLE `leaves` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loan_options` -- DROP TABLE IF EXISTS `loan_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loan_options` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loan_options` -- LOCK TABLES `loan_options` WRITE; /*!40000 ALTER TABLE `loan_options` DISABLE KEYS */; /*!40000 ALTER TABLE `loan_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loans` -- DROP TABLE IF EXISTS `loans`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loans` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `loan_option` int(11) NOT NULL, `title` varchar(191) NOT NULL, `amount` double(15,2) NOT NULL, `type` varchar(191) DEFAULT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `reason` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loans` -- LOCK TABLES `loans` WRITE; /*!40000 ALTER TABLE `loans` DISABLE KEYS */; /*!40000 ALTER TABLE `loans` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `login_details` -- DROP TABLE IF EXISTS `login_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `login_details` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` varchar(191) NOT NULL, `ip` varchar(191) NOT NULL, `date` varchar(191) NOT NULL, `Details` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `login_details` -- LOCK TABLES `login_details` WRITE; /*!40000 ALTER TABLE `login_details` DISABLE KEYS */; /*!40000 ALTER TABLE `login_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meeting_employees` -- DROP TABLE IF EXISTS `meeting_employees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `meeting_employees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `meeting_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meeting_employees` -- LOCK TABLES `meeting_employees` WRITE; /*!40000 ALTER TABLE `meeting_employees` DISABLE KEYS */; /*!40000 ALTER TABLE `meeting_employees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meetings` -- DROP TABLE IF EXISTS `meetings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `meetings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch_id` int(11) NOT NULL, `department_id` longtext NOT NULL, `employee_id` longtext NOT NULL, `title` varchar(191) NOT NULL, `date` date NOT NULL, `time` time NOT NULL, `note` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meetings` -- LOCK TABLES `meetings` WRITE; /*!40000 ALTER TABLE `meetings` DISABLE KEYS */; /*!40000 ALTER TABLE `meetings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1), (2,'2014_10_12_100000_create_password_resets_table',1), (3,'2019_08_19_000000_create_failed_jobs_table',1), (4,'2019_09_28_102009_create_settings_table',1), (5,'2019_12_26_101754_create_departments_table',1), (6,'2019_12_26_101814_create_designations_table',1), (7,'2019_12_26_105721_create_documents_table',1), (8,'2019_12_27_083751_create_branches_table',1), (9,'2019_12_27_090831_create_employees_table',1), (10,'2019_12_27_112922_create_employee_documents_table',1), (11,'2019_12_28_050508_create_awards_table',1), (12,'2019_12_28_050919_create_award_types_table',1), (13,'2019_12_31_060916_create_termination_types_table',1), (14,'2019_12_31_062259_create_terminations_table',1), (15,'2019_12_31_070521_create_resignations_table',1), (16,'2019_12_31_072252_create_travels_table',1), (17,'2019_12_31_090637_create_promotions_table',1), (18,'2019_12_31_092838_create_transfers_table',1), (19,'2019_12_31_100319_create_warnings_table',1), (20,'2019_12_31_103019_create_complaints_table',1), (21,'2020_01_02_090837_create_payslip_types_table',1), (22,'2020_01_02_093331_create_allowance_options_table',1), (23,'2020_01_02_102558_create_loan_options_table',1), (24,'2020_01_02_103822_create_deduction_options_table',1), (25,'2020_01_02_110828_create_genrate_payslip_options_table',1), (26,'2020_01_02_111807_create_set_salaries_table',1), (27,'2020_01_03_084302_create_allowances_table',1), (28,'2020_01_03_101735_create_commissions_table',1), (29,'2020_01_03_105019_create_loans_table',1), (30,'2020_01_03_105046_create_saturation_deductions_table',1), (31,'2020_01_03_105100_create_other_payments_table',1), (32,'2020_01_03_105111_create_overtimes_table',1), (33,'2020_01_04_072527_create_pay_slips_table',1), (34,'2020_01_06_045425_create_account_lists_table',1), (35,'2020_01_06_062213_create_payees_table',1), (36,'2020_01_06_070037_create_payers_table',1), (37,'2020_01_06_072939_create_income_types_table',1), (38,'2020_01_06_073055_create_expense_types_table',1), (39,'2020_01_06_085218_create_deposits_table',1), (40,'2020_01_06_090709_create_payment_types_table',1), (41,'2020_01_06_121442_create_expenses_table',1), (42,'2020_01_06_124036_create_transfer_balances_table',1), (43,'2020_01_13_084720_create_events_table',1), (44,'2020_01_16_041720_create_announcements_table',1), (45,'2020_01_16_090747_create_leave_types_table',1), (46,'2020_01_16_093256_create_leaves_table',1), (47,'2020_01_16_110357_create_meetings_table',1), (48,'2020_01_17_051906_create_tickets_table',1), (49,'2020_01_17_112647_create_ticket_replies_table',1), (50,'2020_01_23_101613_create_meeting_employees_table',1), (51,'2020_01_23_123844_create_event_employees_table',1), (52,'2020_01_24_062752_create_announcement_employees_table',1), (53,'2020_01_27_052503_create_attendance_employees_table',1), (54,'2020_02_17_035047_create_plans_table',1), (55,'2020_02_17_072503_create_orders_table',1), (56,'2020_02_28_051636_create_time_sheets_table',1), (57,'2020_03_12_095629_create_coupons_table',1), (58,'2020_03_12_120749_create_user_coupons_table',1), (59,'2020_04_21_115823_create_assets_table',1), (60,'2020_05_01_122144_create_ducument_uploads_table',1), (61,'2020_05_04_070452_create_indicators_table',1), (62,'2020_05_05_023742_create_appraisals_table',1), (63,'2020_05_05_061241_create_goal_types_table',1), (64,'2020_05_05_095926_create_goal_trackings_table',1), (65,'2020_05_07_093520_create_company_policies_table',1), (66,'2020_05_07_131311_create_training_types_table',1), (67,'2020_05_08_023838_create_trainers_table',1), (68,'2020_05_08_043039_create_trainings_table',1), (69,'2020_05_21_065337_create_permission_tables',1), (70,'2020_07_18_065859_create_messageses_table',1), (71,'2020_10_07_034726_create_holidays_table',1), (72,'2021_03_13_093312_create_ip_restricts_table',1), (73,'2021_03_13_114832_create_job_categories_table',1), (74,'2021_03_13_123125_create_job_stages_table',1), (75,'2021_03_15_094707_create_jobs_table',1), (76,'2021_03_15_153745_create_job_applications_table',1), (77,'2021_03_16_115140_create_job_application_notes_table',1), (78,'2021_03_17_163107_create_custom_questions_table',1), (79,'2021_03_18_140630_create_interview_schedules_table',1), (80,'2021_03_22_122532_create_job_on_boards_table',1), (81,'2021_06_22_094220_create_landing_page_sections_table',1), (82,'2021_06_25_032625_admin_payment_setting',1), (83,'2021_08_20_084119_create_competencies_table',1), (84,'2021_09_10_165514_create_plan_requests_table',1), (85,'2021_11_22_043537_create_performance__types_table',1), (86,'2021_12_24_061634_create_zoom_meetings_table',1), (87,'2022_07_13_085418_create_email_templates_table',1), (88,'2022_07_13_085511_create_email_template_langs_table',1), (89,'2022_07_13_085553_user_email_templates_table',1), (90,'2022_07_26_054753_create_contract_types_table',1), (91,'2022_07_28_035621_create_contracts_table',1), (92,'2022_07_28_035654_create_contract_attechments_table',1), (93,'2022_07_28_035713_create_contract_comments_table',1), (94,'2022_07_28_035731_create_contract_notes_table',1), (95,'2022_08_10_051439_generate__offer__letter',1), (96,'2022_08_16_050109_joining_letter',1), (97,'2022_08_17_045033_experience_certificate',1), (98,'2022_08_17_065806_noc_certificate',1), (99,'2022_12_09_999999_create_favorites_table',1), (100,'2022_12_09_999999_create_messages_table',1), (101,'2023_04_19_113655_create_login_details_table',1), (102,'2023_04_24_062256_create_webhook_settings_table',1), (103,'2023_05_03_033446_create_notification_templates_table',1), (104,'2023_05_03_033536_create_notification_template_langs_table',1), (105,'2023_06_05_043450_create_landing_page_settings_table',1), (106,'2023_06_08_094417_create_template_table',1), (107,'2023_06_10_114031_create_join_us_table',1), (108,'2023_06_28_061829_create_languages_table',1), (109,'2023_12_08_065736_add_is_disable_to_users_table',1), (110,'2024_01_23_060449_add_trial_expire_date_to_users_table',1), (111,'2024_01_23_060917_add_trial_to_plans_table',1), (112,'2024_01_24_053357_update_password_for_users_table',1), (113,'2024_01_24_054034_add_is_login_enable_to_users_table',1), (114,'2024_01_30_050310_add_is_disable_to_plans_table',1), (115,'2024_01_30_094128_add_is_refund_to_orders_table',1), (116,'2024_02_01_064327_add_attachments_to_ticket_replies_table',1), (117,'2024_02_01_064335_add_attachments_to_tickets_table',1), (118,'2024_04_15_092833_create_referral_settings_table',1), (119,'2024_04_15_093303_add_referral_code_to_users',1), (120,'2024_04_15_093820_create_referral_transactions_table',1), (121,'2024_04_15_095510_create_transaction_orders_table',1), (122,'2024_04_29_125113_add_biometric_emp_id_to_employees_table',1), (123,'2024_05_02_051304_add_branch_id_to_designations_table',1), (124,'2024_05_02_072829_add_terms_and_conditions_to_jobs_table',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `model_has_permissions` -- DROP TABLE IF EXISTS `model_has_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `model_has_permissions` ( `permission_id` bigint(20) unsigned NOT NULL, `model_type` varchar(191) NOT NULL, `model_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`permission_id`,`model_id`,`model_type`), KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `model_has_permissions` -- LOCK TABLES `model_has_permissions` WRITE; /*!40000 ALTER TABLE `model_has_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `model_has_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `model_has_roles` -- DROP TABLE IF EXISTS `model_has_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `model_has_roles` ( `role_id` bigint(20) unsigned NOT NULL, `model_type` varchar(191) NOT NULL, `model_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`role_id`,`model_id`,`model_type`), KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `model_has_roles` -- LOCK TABLES `model_has_roles` WRITE; /*!40000 ALTER TABLE `model_has_roles` DISABLE KEYS */; INSERT INTO `model_has_roles` VALUES (1,'App\\Models\\User',1), (1,'App\\Models\\User',5), (2,'App\\Models\\User',2), (2,'App\\Models\\User',4), (3,'App\\Models\\User',3); /*!40000 ALTER TABLE `model_has_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `noc_certificates` -- DROP TABLE IF EXISTS `noc_certificates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `noc_certificates` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `lang` varchar(255) NOT NULL, `content` longtext NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `noc_certificates` -- LOCK TABLES `noc_certificates` WRITE; /*!40000 ALTER TABLE `noc_certificates` DISABLE KEYS */; INSERT INTO `noc_certificates` VALUES (1,'ar','

شهادة عدم ممانعة

\n \n \n \n

التاريخ: {date}

\n \n \n \n

إلى من يهمه الأمر

\n \n \n \n

هذه الشهادة مخصصة للمطالبة بشهادة عدم ممانعة (NoC) للسيدة / السيد {employee_name} إذا انضمت إلى أي مؤسسة أخرى وقدمت خدماتها / خدماتها. يتم إبلاغه لأنه قام بتصفية جميع أرصدته واستلام أمانه من شركة {app_name}.

\n \n \n \n

نتمنى لها / لها التوفيق في المستقبل.

\n \n \n \n

بإخلاص،

\n \n

{employee_name}

\n \n

{designation}

\n \n

التوقيع

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (2,'da','

Ingen indsigelsesattest

\n \n \n \n

Dato: {date}

\n \n \n \n

Til hvem det måtte vedrøre

\n \n \n \n

Dette certifikat er for at gøre krav på et No Objection Certificate (NoC) for Ms. / Mr. {employee_name}, hvis hun/han tilslutter sig og leverer sine tjenester til enhver anden organisation. Det informeres, da hun/han har udlignet alle sine saldi og modtaget sin sikkerhed fra {app_name}-virksomheden.

\n \n \n \n

Vi ønsker hende/ham held og lykke i fremtiden.

\n \n \n \n

Med venlig hilsen

\n \n

{employee_name}

\n \n

{designation}

\n \n

Underskrift

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (3,'de','

Kein Einwand-Zertifikat

\n \n \n \n

Datum {date}

\n \n \n \n

Wen auch immer es betrifft

\n \n \n \n

Dieses Zertifikat soll ein Unbedenklichkeitszertifikat (NoC) für Frau / Herrn {employee_name} beanspruchen, wenn sie/er einer anderen Organisation beitritt und ihre/seine Dienste anbietet. Sie wird informiert, da sie/er alle ihre/seine Guthaben ausgeglichen und ihre/seine Sicherheit von der Firma {app_name} erhalten hat.

\n \n \n \n

Wir wünschen ihr/ihm viel Glück für die Zukunft.

\n \n \n \n

Aufrichtig,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Unterschrift

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (4,'en','

No Objection Certificate

\n \n

Date: {date}

\n \n

To Whomsoever It May Concern

\n \n

This certificate is to claim a No Objection Certificate (NoC) for Ms. / Mr. {employee_name} if she/he joins and provides her/his services to any other organization. It is informed as she/he has cleared all her/his balances and received her/his security from {app_name} Company.

\n \n

We wish her/him good luck in the future.

\n \n

Sincerely,

\n

{employee_name}

\n

{designation}

\n

Signature

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (5,'es','

Certificado de conformidad

\n \n \n \n

Fecha: {date}

\n \n \n \n

A quien corresponda

\n \n \n \n

Este certificado es para reclamar un Certificado de No Objeción (NoC) para la Sra. / Sr. {employee_name} si ella / él se une y brinda sus servicios a cualquier otra organización. Se informa que él/ella ha liquidado todos sus saldos y recibido su seguridad de {app_name} Company.

\n \n \n \n

Le deseamos buena suerte en el futuro.

\n \n \n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (6,'fr','

Aucun certificat dopposition

\n \n \n

Date : {date}

\n \n \n

À toute personne concernée

\n \n \n

Ce certificat sert à réclamer un certificat de non-objection (NoC) pour Mme / M. {employee_name} sil rejoint et fournit ses services à toute autre organisation. Il est informé quil a soldé tous ses soldes et reçu sa garantie de la part de la société {app_name}.

\n \n \n

Nous lui souhaitons bonne chance pour lavenir.

\n \n \n

Sincèrement,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Signature

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (7,'id','

Sertifikat Tidak Keberatan

\n \n \n \n

Tanggal: {date}

\n \n \n \n

Kepada Siapa Pun Yang Memprihatinkan

\n \n \n \n

Sertifikat ini untuk mengklaim No Objection Certificate (NoC) untuk Ibu / Bapak {employee_name} jika dia bergabung dan memberikan layanannya ke organisasi lain mana pun. Diberitahukan karena dia telah melunasi semua saldonya dan menerima jaminannya dari Perusahaan {app_name}.

\n \n \n \n

Kami berharap dia sukses di masa depan.

\n \n \n \n

Sungguh-sungguh,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Tanda tangan

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (8,'it','

Certificato di nulla osta

\n \n \n \n

Data: {date}

\n \n \n \n

A chi può interessare

\n \n \n \n

Questo certificato serve a richiedere un certificato di non obiezione (NoC) per la signora / il signor {employee_name} se si unisce e fornisce i suoi servizi a qualsiasi altra organizzazione. Viene informato in quanto ha liquidato tutti i suoi saldi e ricevuto la sua sicurezza dalla società {app_name}.

\n \n \n \n

Le auguriamo buona fortuna per il futuro.

\n \n \n \n

Cordiali saluti,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (9,'ja','

異議なし証明書

\n \n \n \n

日付: {date}

\n \n \n \n

関係者各位

\n \n \n \n

この証明書は、Ms. / Mr. {employee_name} が他の組織に参加してサービスを提供する場合に、異議なし証明書 (NoC) を請求するためのものです。彼女/彼/彼がすべての残高を清算し、{app_name} 会社から彼女/彼のセキュリティを受け取ったことが通知されます。

\n \n \n \n

彼女/彼の今後の幸運を祈っています。

\n \n \n \n

心から、

\n \n

{employee_name}

\n \n

{designation}

\n \n

サイン

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (10,'nl','

Geen bezwaarcertificaat

\n \n \n \n

Datum: {date}

\n \n \n \n

Aan wie het ook aangaat

\n \n \n \n

Dit certificaat is bedoeld om aanspraak te maken op een Geen Bezwaarcertificaat (NoC) voor mevrouw/dhr. {employee_name} als zij/hij lid wordt en haar/zijn diensten verleent aan een andere organisatie. Het wordt geïnformeerd als zij/hij al haar/zijn saldos heeft gewist en haar/zijn zekerheid heeft ontvangen van {app_name} Company.

\n \n \n \n

We wensen haar/hem veel succes in de toekomst.

\n \n \n \n

Eerlijk,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Handtekening

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (11,'pl','

Certyfikat braku sprzeciwu

\n \n \n \n

Data: {date}

\n \n \n \n

Do kogo to może dotyczyć

\n \n \n \n

Ten certyfikat służy do ubiegania się o Certyfikat No Objection Certificate (NoC) dla Pani/Pana {employee_name}, jeśli ona/ona dołącza i świadczy swoje usługi na rzecz jakiejkolwiek innej organizacji. Jest o tym informowany, ponieważ wyczyścił wszystkie swoje salda i otrzymał swoje zabezpieczenie od firmy {app_name}.

\n \n \n \n

Życzymy jej/jej powodzenia w przyszłości.

\n \n \n \n

Z poważaniem,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Podpis

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (12,'pt','

Certificado de não objeção

\n \n \n \n

Data: {date}

\n \n \n \n

A quem interessar

\n \n \n \n

Este certificado é para reivindicar um Certificado de Não Objeção (NoC) para a Sra. / Sr. {employee_name} se ela ingressar e fornecer seus serviços a qualquer outra organização. É informado que ela cancelou todos os seus saldos e recebeu sua garantia da empresa {app_name}.

\n \n \n \n

Desejamos-lhe boa sorte no futuro.

\n \n \n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (13,'ru','

Сертификат об отсутствии возражений

\n \n \n \n

Дата: {date}

\n \n \n \n

Кого бы это ни касалось

\n \n \n \n

Этот сертификат предназначен для получения Сертификата об отсутствии возражений (NoC) для г-жи / г-на {employee_name}, если она / он присоединяется и предоставляет свои услуги любой другой организации. Сообщается, что она/он очистила все свои балансы и получила свою безопасность от компании {app_name}.

\n \n \n \n

Мы желаем ей/ему удачи в будущем.

\n \n \n \n

Искренне,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Подпись

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (14,'tr','

İtiraz Yok Belgesi

\n \n

Tarih: {date}

\n \n

İlgilenebilecek Kişiye

\n \n

Bu sertifika, Bayan / Bay için bir İtiraz Yok Sertifikası (NoC) talep etmek içindir {employee_name} başka bir kuruluşa katılır ve hizmet verirse. Tüm bakiyelerini kapattığı ve teminatını aldığı bilgisi verilir {app_name} Şirket.

\n \n

Kendisine gelecekte iyi şanslar diliyoruz.

\n \n

Samimi olarak,

\n

{employee_name}

\n

{designation}

\n

İmza

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (15,'zh','

无异议证书

\n \n

日期: {date}

\n \n

致相关负责人

\n \n

此证书旨在为女士/先生申请无异议证书(NoC)。{employee_name} 如果她/他加入任何其他组织并向其提供服务。据了解,她/他已结清所有余额并从以下机构收到她/他的担保: {app_name} 公司.

\n \n

我们祝她/他未来好运.

\n \n

真挚地,

\n

{employee_name}

\n

{designation}

\n

签名

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (16,'he','

אין תעודת התנגדות

\n \n

תַאֲרִיך: {date}

\n \n

לכל מאן דבעי

\n \n

תעודה זו מיועדת לתבוע אישור ללא התנגדות (NoC) עבור גב / מר. {employee_name} אם הוא/ה מצטרף ומספק את שירותיו/ה לכל ארגון אחר. זה מודיע כפי שהיא / הוא פינה את כל היתרות שלה / שלו וקיבל את האבטחה שלה / שלו {app_name} חֶברָה.

\n \n

אנו מאחלים לו/לה בהצלחה בעתיד.

\n \n

בכנות,

\n

{employee_name}

\n

{designation}

\n

חֲתִימָה

\n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (17,'pt-br','

Certificado de não objeção

\n \n

Data: {date}

\n \n

A quem interessar

\n \n

Este certificado é para reivindicar um Certificado de Não Objeção (NoC) para a Sra. / Sr. {employee_name} se ela ingressar e fornecer seus serviços a qualquer outra organização. É informado que ela cancelou todos os seus saldos e recebeu sua garantia da empresa {app_name}.

\n \n

Desejamos-lhe boa sorte no futuro.

\n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',2,'2024-05-29 04:33:16','2024-05-29 04:33:16'), (18,'ar','

شهادة عدم ممانعة

\n \n \n \n

التاريخ: {date}

\n \n \n \n

إلى من يهمه الأمر

\n \n \n \n

هذه الشهادة مخصصة للمطالبة بشهادة عدم ممانعة (NoC) للسيدة / السيد {employee_name} إذا انضمت إلى أي مؤسسة أخرى وقدمت خدماتها / خدماتها. يتم إبلاغه لأنه قام بتصفية جميع أرصدته واستلام أمانه من شركة {app_name}.

\n \n \n \n

نتمنى لها / لها التوفيق في المستقبل.

\n \n \n \n

بإخلاص،

\n \n

{employee_name}

\n \n

{designation}

\n \n

التوقيع

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (19,'da','

Ingen indsigelsesattest

\n \n \n \n

Dato: {date}

\n \n \n \n

Til hvem det måtte vedrøre

\n \n \n \n

Dette certifikat er for at gøre krav på et No Objection Certificate (NoC) for Ms. / Mr. {employee_name}, hvis hun/han tilslutter sig og leverer sine tjenester til enhver anden organisation. Det informeres, da hun/han har udlignet alle sine saldi og modtaget sin sikkerhed fra {app_name}-virksomheden.

\n \n \n \n

Vi ønsker hende/ham held og lykke i fremtiden.

\n \n \n \n

Med venlig hilsen

\n \n

{employee_name}

\n \n

{designation}

\n \n

Underskrift

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (20,'de','

Kein Einwand-Zertifikat

\n \n \n \n

Datum {date}

\n \n \n \n

Wen auch immer es betrifft

\n \n \n \n

Dieses Zertifikat soll ein Unbedenklichkeitszertifikat (NoC) für Frau / Herrn {employee_name} beanspruchen, wenn sie/er einer anderen Organisation beitritt und ihre/seine Dienste anbietet. Sie wird informiert, da sie/er alle ihre/seine Guthaben ausgeglichen und ihre/seine Sicherheit von der Firma {app_name} erhalten hat.

\n \n \n \n

Wir wünschen ihr/ihm viel Glück für die Zukunft.

\n \n \n \n

Aufrichtig,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Unterschrift

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (21,'en','

No Objection Certificate

\n \n

Date: {date}

\n \n

To Whomsoever It May Concern

\n \n

This certificate is to claim a No Objection Certificate (NoC) for Ms. / Mr. {employee_name} if she/he joins and provides her/his services to any other organization. It is informed as she/he has cleared all her/his balances and received her/his security from {app_name} Company.

\n \n

We wish her/him good luck in the future.

\n \n

Sincerely,

\n

{employee_name}

\n

{designation}

\n

Signature

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (22,'es','

Certificado de conformidad

\n \n \n \n

Fecha: {date}

\n \n \n \n

A quien corresponda

\n \n \n \n

Este certificado es para reclamar un Certificado de No Objeción (NoC) para la Sra. / Sr. {employee_name} si ella / él se une y brinda sus servicios a cualquier otra organización. Se informa que él/ella ha liquidado todos sus saldos y recibido su seguridad de {app_name} Company.

\n \n \n \n

Le deseamos buena suerte en el futuro.

\n \n \n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (23,'fr','

Aucun certificat dopposition

\n \n \n

Date : {date}

\n \n \n

À toute personne concernée

\n \n \n

Ce certificat sert à réclamer un certificat de non-objection (NoC) pour Mme / M. {employee_name} sil rejoint et fournit ses services à toute autre organisation. Il est informé quil a soldé tous ses soldes et reçu sa garantie de la part de la société {app_name}.

\n \n \n

Nous lui souhaitons bonne chance pour lavenir.

\n \n \n

Sincèrement,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Signature

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (24,'id','

Sertifikat Tidak Keberatan

\n \n \n \n

Tanggal: {date}

\n \n \n \n

Kepada Siapa Pun Yang Memprihatinkan

\n \n \n \n

Sertifikat ini untuk mengklaim No Objection Certificate (NoC) untuk Ibu / Bapak {employee_name} jika dia bergabung dan memberikan layanannya ke organisasi lain mana pun. Diberitahukan karena dia telah melunasi semua saldonya dan menerima jaminannya dari Perusahaan {app_name}.

\n \n \n \n

Kami berharap dia sukses di masa depan.

\n \n \n \n

Sungguh-sungguh,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Tanda tangan

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (25,'it','

Certificato di nulla osta

\n \n \n \n

Data: {date}

\n \n \n \n

A chi può interessare

\n \n \n \n

Questo certificato serve a richiedere un certificato di non obiezione (NoC) per la signora / il signor {employee_name} se si unisce e fornisce i suoi servizi a qualsiasi altra organizzazione. Viene informato in quanto ha liquidato tutti i suoi saldi e ricevuto la sua sicurezza dalla società {app_name}.

\n \n \n \n

Le auguriamo buona fortuna per il futuro.

\n \n \n \n

Cordiali saluti,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Firma

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (26,'ja','

異議なし証明書

\n \n \n \n

日付: {date}

\n \n \n \n

関係者各位

\n \n \n \n

この証明書は、Ms. / Mr. {employee_name} が他の組織に参加してサービスを提供する場合に、異議なし証明書 (NoC) を請求するためのものです。彼女/彼/彼がすべての残高を清算し、{app_name} 会社から彼女/彼のセキュリティを受け取ったことが通知されます。

\n \n \n \n

彼女/彼の今後の幸運を祈っています。

\n \n \n \n

心から、

\n \n

{employee_name}

\n \n

{designation}

\n \n

サイン

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (27,'nl','

Geen bezwaarcertificaat

\n \n \n \n

Datum: {date}

\n \n \n \n

Aan wie het ook aangaat

\n \n \n \n

Dit certificaat is bedoeld om aanspraak te maken op een Geen Bezwaarcertificaat (NoC) voor mevrouw/dhr. {employee_name} als zij/hij lid wordt en haar/zijn diensten verleent aan een andere organisatie. Het wordt geïnformeerd als zij/hij al haar/zijn saldos heeft gewist en haar/zijn zekerheid heeft ontvangen van {app_name} Company.

\n \n \n \n

We wensen haar/hem veel succes in de toekomst.

\n \n \n \n

Eerlijk,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Handtekening

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (28,'pl','

Certyfikat braku sprzeciwu

\n \n \n \n

Data: {date}

\n \n \n \n

Do kogo to może dotyczyć

\n \n \n \n

Ten certyfikat służy do ubiegania się o Certyfikat No Objection Certificate (NoC) dla Pani/Pana {employee_name}, jeśli ona/ona dołącza i świadczy swoje usługi na rzecz jakiejkolwiek innej organizacji. Jest o tym informowany, ponieważ wyczyścił wszystkie swoje salda i otrzymał swoje zabezpieczenie od firmy {app_name}.

\n \n \n \n

Życzymy jej/jej powodzenia w przyszłości.

\n \n \n \n

Z poważaniem,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Podpis

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (29,'pt','

Certificado de não objeção

\n \n

Data: {date}

\n \n

A quem interessar

\n \n

Este certificado é para reivindicar um Certificado de Não Objeção (NoC) para a Sra. / Sr. {employee_name} se ela ingressar e fornecer seus serviços a qualquer outra organização. É informado que ela cancelou todos os seus saldos e recebeu sua garantia da empresa {app_name}.

\n \n

Desejamos-lhe boa sorte no futuro.

\n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (30,'ru','

Сертификат об отсутствии возражений

\n \n \n \n

Дата: {date}

\n \n \n \n

Кого бы это ни касалось

\n \n \n \n

Этот сертификат предназначен для получения Сертификата об отсутствии возражений (NoC) для г-жи / г-на {employee_name}, если она / он присоединяется и предоставляет свои услуги любой другой организации. Сообщается, что она/он очистила все свои балансы и получила свою безопасность от компании {app_name}.

\n \n \n \n

Мы желаем ей/ему удачи в будущем.

\n \n \n \n

Искренне,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Подпись

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (31,'tr','

İtiraz Yok Belgesi

\n \n

Tarih: {date}

\n \n

İlgilenebilecek Kişiye

\n \n

Bu sertifika, Bayan / Bay için bir İtiraz Yok Sertifikası (NoC) talep etmek içindir {employee_name} başka bir kuruluşa katılır ve hizmet verirse. Tüm bakiyelerini kapattığı ve teminatını aldığı bilgisi verilir {app_name} Şirket.

\n \n

Kendisine gelecekte iyi şanslar diliyoruz.

\n \n

Samimi olarak,

\n

{employee_name}

\n

{designation}

\n

İmza

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (32,'zh','

无异议证书

\n \n

日期: {date}

\n \n

致相关负责人

\n \n

此证书旨在为女士/先生申请无异议证书(NoC)。{employee_name} 如果她/他加入任何其他组织并向其提供服务。据了解,她/他已结清所有余额并从以下机构收到她/他的担保: {app_name} 公司.

\n \n

我们祝她/他未来好运.

\n \n

真挚地,

\n

{employee_name}

\n

{designation}

\n

签名

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (33,'he','

אין תעודת התנגדות

\n \n

תַאֲרִיך: {date}

\n \n

לכל מאן דבעי

\n \n

תעודה זו מיועדת לתבוע אישור ללא התנגדות (NoC) עבור גב / מר. {employee_name} אם הוא/ה מצטרף ומספק את שירותיו/ה לכל ארגון אחר. זה מודיע כפי שהיא / הוא פינה את כל היתרות שלה / שלו וקיבל את האבטחה שלה / שלו {app_name} חֶברָה.

\n \n

אנו מאחלים לו/לה בהצלחה בעתיד.

\n \n

בכנות,

\n

{employee_name}

\n

{designation}

\n

חֲתִימָה

\n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (34,'pt-br','

Certificado de não objeção

\n \n

Data: {date}

\n \n

A quem interessar

\n \n

Este certificado é para reivindicar um Certificado de Não Objeção (NoC) para a Sra. / Sr. {employee_name} se ela ingressar e fornecer seus serviços a qualquer outra organização. É informado que ela cancelou todos os seus saldos e recebeu sua garantia da empresa {app_name}.

\n \n

Desejamos-lhe boa sorte no futuro.

\n \n

Sinceramente,

\n \n

{employee_name}

\n \n

{designation}

\n \n

Assinatura

\n \n

{app_name}

',4,'2025-02-05 16:22:54','2025-02-05 16:22:54'); /*!40000 ALTER TABLE `noc_certificates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification_template_langs` -- DROP TABLE IF EXISTS `notification_template_langs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `notification_template_langs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `lang` varchar(100) NOT NULL, `content` longtext NOT NULL, `variables` longtext NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=177 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification_template_langs` -- LOCK TABLES `notification_template_langs` WRITE; /*!40000 ALTER TABLE `notification_template_langs` DISABLE KEYS */; INSERT INTO `notification_template_langs` VALUES (1,1,'ar','تم إنشاء قسيمة دفع بتاريخ {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (2,1,'da','Lønseddel genereret af {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (3,1,'de','Gehaltsabrechnung erstellt vom {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (4,1,'en','Payslip generated of {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (5,1,'es','Nómina generada de {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (6,1,'fr','Fiche de paie générée de {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (7,1,'it','Busta paga generata da {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (8,1,'ja','{year} の給与明細が作成されました。','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (9,1,'nl','Loonstrook gegenereerd van {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (10,1,'pl','Odcinek wypłaty wygenerowany za {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (11,1,'pt','Folha de pagamento gerada de {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (12,1,'ru','Расчетная ведомость создана за {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (13,1,'tr','oluşturulan maaş bordrosu {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (14,1,'zh','生成的工资单 {year}','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (15,1,'he','תלוש שכר שנוצר מ {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (16,1,'pt-br','Folha de pagamento gerada de {year}.','{\n \"Year\": \"year\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (17,2,'ar','{announcement_title} إعلان تم إنشاؤه للفرع {branch_name} من {start_date} ل {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (18,2,'da','{announcement_title} meddelelse oprettet for filial {branch_name} fra {start_date} to {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (19,2,'de','{announcement_title} Ankündigung für Filiale erstellt {branch_name} aus {start_date} Zu {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (20,2,'en','{announcement_title} announcement created for branch {branch_name} from {start_date} to {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (21,2,'es','{announcement_title} anuncio creado para sucursal {branch_name} de {start_date} a {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (22,2,'fr','{announcement_title} annonce créée pour la filiale {branch_name} depuis {start_date} pour {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (23,2,'it','{announcement_title} annuncio creato per branch {branch_name} da {start_date} A {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (24,2,'ja','{announcement_title} ブランチ用に作成されたお知らせ {branch_name} から {start_date} に {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (25,2,'nl','{announcement_title} aankondiging gemaakt voor filiaal {branch_name} van {start_date} naar {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (26,2,'pl','{announcement_title} ogłoszenie stworzone dla oddziału {branch_name} z {start_date} Do {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (27,2,'pt','{announcement_title} anúncio criado para filial {branch_name} de {start_date} para {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (28,2,'ru','{announcement_title} объявление создано для ветки {branch_name} от {start_date} к {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (29,2,'tr','{announcement_title} şube için oluşturulan duyuru {branch_name} itibaren {start_date} ile {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (30,2,'zh','{announcement_title} 为分支机构创建的公告 {branch_name} 从 {start_date} 到 {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (31,2,'he','{announcement_title} הודעה נוצרה עבור הסניף {branch_name} מ {start_date} ל {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (32,2,'pt-br','{announcement_title} anúncio criado para filial {branch_name} de {start_date} para {end_date}','{\n \"Announcement Title\": \"announcement_title\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (33,3,'ar','{meeting_title} تم إنشاء الاجتماع لـ {branch_name} من {date} في {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (34,3,'da','{meeting_title} møde oprettet til {branch_name} fra {date} på {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (35,3,'de','{meeting_title} Besprechung erstellt für {branch_name} aus {date} bei {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (36,3,'en','{meeting_title} meeting created for {branch_name} from {date} at {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (37,3,'es','{meeting_title} reunión creada para {branch_name} de {date} en {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (38,3,'fr','{meeting_title} réunion créée pour {branch_name} depuis {date} à {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (39,3,'it','{meeting_title} incontro creato per {branch_name} da {date} A {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (40,3,'ja','{meeting_title} のために作成された会議 {branch_name} から {date} で {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (41,3,'nl','{meeting_title} bijeenkomst gemaakt voor {branch_name} van {date} bij {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (42,3,'pl','{meeting_title} spotkanie stworzone dla {branch_name} z {date} Na {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (43,3,'pt','{meeting_title} reunião criada para {branch_name} de {date} no {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (44,3,'ru','{meeting_title} встреча создана для {branch_name} от {date} в {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (45,3,'tr','{meeting_title} için oluşturulan toplantı {branch_name} itibaren {date} de {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (46,3,'zh','{meeting_title} 为以下目的创建的会议 {branch_name} 从 {date} 在 {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (47,3,'he','{meeting_title} פגישה נוצרה עבור {branch_name} מ {date} בְּ- {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (48,3,'pt-br','{meeting_title} reunião criada para {branch_name} de {date} no {time}.','{\n \"Meeting title\": \"meeting_title\",\n \"Branch name\": \"branch_name\",\n \"Date\": \"date\",\n \"Time\": \"time\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (49,4,'ar','{award_name} خلقت ل {employee_name} من {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (50,4,'da','{award_name} skabt til {employee_name} fra {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (51,4,'de','{award_name} hergestellt für {employee_name} aus {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (52,4,'en','{award_name} created for {employee_name} from {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (53,4,'es','{award_name} creado para {employee_name} de {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (54,4,'fr','{award_name} créé pour {employee_name} depuis {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (55,4,'it','{award_name} creato per {employee_name} da {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (56,4,'ja','{award_name} のために作成された {employee_name} から {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (57,4,'nl','{award_name} gemaakt voor {employee_name} van {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (58,4,'pl','{award_name} stworzone dla {employee_name} z {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (59,4,'pt','{award_name} criado para {employee_name} de {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (60,4,'ru','{award_name} предназначен для {employee_name} от {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (61,4,'tr','{award_name} için yaratıldı {employee_name} itibaren {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (62,4,'zh','{award_name} 已创建 为了 {employee_name} 从 {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (63,4,'he','{award_name} נוצר עבור {employee_name} מ {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (64,4,'pt-br','{award_name} criado para {employee_name} de {date}.','{\n \"Award name\": \"award_name\",\n \"Employee Name\": \"employee_name\",\n \"Date\": \"date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (65,5,'ar','{occasion_name} على {start_date} ل {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (66,5,'da','{occasion_name} på {start_date} til {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (67,5,'de','{occasion_name} An {start_date} Zu {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (68,5,'en','{occasion_name} on {start_date} to {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (69,5,'es','{occasion_name} en {start_date} a {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (70,5,'fr','{occasion_name} sur {start_date} pour {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (71,5,'it','{occasion_name} SU {start_date} A {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (72,5,'ja','{occasion_name} の上 {start_date} に {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (73,5,'nl','{occasion_name} op {start_date} naar {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (74,5,'pl','{occasion_name} NA {start_date} Do {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (75,5,'pt','{occasion_name} sobre {start_date} para {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (76,5,'ru','{occasion_name} на {start_date} к {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (77,5,'tr','{occasion_name} Açık {start_date} ile {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (78,5,'zh','{occasion_name} 在 {start_date} 到 {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (79,5,'he','{occasion_name} עַל {start_date} ל {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (80,5,'pt-br','{occasion_name} sobre {start_date} para {end_date}.','{\n \"Occasion name\": \"occasion_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (81,6,'ar','{company_policy_name} ل {branch_name} مخلوق.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (82,6,'da','{company_policy_name} til {branch_name} oprettet.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (83,6,'de','{company_policy_name} für {branch_name} erstellt.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (84,6,'en','{company_policy_name} for {branch_name} created.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (85,6,'es','{company_policy_name} para {branch_name} creada.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (86,6,'fr','{company_policy_name} pour {branch_name} créé.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (87,6,'it','{company_policy_name} per {branch_name} creata.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (88,6,'ja','{company_policy_name} ために {branch_name} 作成した.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (89,6,'nl','{company_policy_name} voor {branch_name} gemaakt.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (90,6,'pl','{company_policy_name} Do {branch_name} Utworzony.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (91,6,'pt','{company_policy_name} para {branch_name} criada.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (92,6,'ru','{company_policy_name} для {branch_name} созданный.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (93,6,'tr','{company_policy_name} için {branch_name} oluşturuldu.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (94,6,'zh','{company_policy_name} 为了 {branch_name} 已创建.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (95,6,'he','{company_policy_name} ל {branch_name} נוצר.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (96,6,'pt-br','{company_policy_name} para {branch_name} criada.','{\n \"Company policy name\": \"company_policy_name\",\n \"Branch name\": \"branch_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (97,7,'ar','تم إنشاء تذكرة دعم جديدة من {ticket_priority} الأولوية ل {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (98,7,'da','Ny supportbillet oprettet af {ticket_priority} prioritet for {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (99,7,'de','Neues Support-Ticket erstellt von {ticket_priority} Priorität für {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (100,7,'en','New Support ticket created of {ticket_priority} priority for {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (101,7,'es','Nuevo ticket de soporte creado de {ticket_priority} prioridad para {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (102,7,'fr','Nouveau ticket de support créé de {ticket_priority} priorité pour {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (103,7,'it','Nuovo ticket di supporto creato da {ticket_priority} priorità per {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (104,7,'ja','の新しいサポート チケットが作成されました {ticket_priority} の優先順位 {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (105,7,'nl','Nieuw supportticket gemaakt van {ticket_priority} prioriteit voor {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (106,7,'pl','Utworzono nowe zgłoszenie do pomocy technicznej {ticket_priority} priorytet dla {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (107,7,'pt','Novo ticket de suporte criado de {ticket_priority} prioridade para {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (108,7,'ru','Создан новый тикет в службу поддержки {ticket_priority} приоритет для {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (109,7,'tr','Şunun için yeni Destek bileti oluşturuldu {ticket_priority} için öncelik {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (110,7,'zh','新的支持票证创建于 {ticket_priority} 优先于 {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (111,7,'he','כרטיס תמיכה חדש נוצר מ {ticket_priority} עדיפות עבור {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (112,7,'pt-br','Novo ticket de suporte criado de {ticket_priority} prioridade para {employee_name}.','{\n \"Ticket priority\": \"ticket_priority\",\n \"Employee Name\": \"employee_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (113,8,'ar','{event_name} للفرع {branch_name} من {start_date} ل {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (114,8,'da','{event_name} for filial {branch_name} fra {start_date} til {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (115,8,'de','{event_name} für Filiale {branch_name} aus {start_date} Zu {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (116,8,'en','{event_name} for branch {branch_name} from {start_date} to {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (117,8,'es','{event_name} para rama {branch_name} de {start_date} a {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (118,8,'fr','{event_name} pour la branche {branch_name} depuis {start_date} pour {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (119,8,'it','{event_name} per ramo {branch_name} da {start_date} A {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (120,8,'ja','{event_name} 支店用 {branch_name} から {start_date} に {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (121,8,'nl','{event_name} voor filiaal {branch_name} van {start_date} naar {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (122,8,'pl','{event_name} dla oddziału {branch_name} z {start_date} Do {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (123,8,'pt','{event_name} para ramo {branch_name} de {start_date} para {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (124,8,'ru','{event_name} для филиала {branch_name} от {start_date} к {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (125,8,'tr','{event_name} şube için {branch_name} itibaren {start_date} ile {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (126,8,'zh','{event_name} 对于分支机构 {branch_name} 从 {start_date} 到 {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (127,8,'he','{event_name} עבור סניף {branch_name} מ {start_date} ל {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (128,8,'pt-br','{event_name} para ramo {branch_name} de {start_date} para {end_date}','{\n \"Event name\": \"event_name\",\n \"Branch name\": \"branch_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (129,9,'ar','لقد كانت إجازتك {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (130,9,'da','Din orlov har været {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (131,9,'de','Ihr Urlaub war {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (132,9,'en','Your leave has been {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (133,9,'es','Tu permiso ha sido {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (134,9,'fr','Votre congé a été {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (135,9,'it','Il tuo congedo è stato {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (136,9,'ja','あなたの休暇は {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (137,9,'nl','Je verlof is geweest {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (138,9,'pl','Twój urlop był {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (139,9,'pt','sua licença foi {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (140,9,'ru','Ваш отпуск был {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (141,9,'tr','İzniniz oldu {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (142,9,'zh','你的假期已经 {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (143,9,'he','החופש שלך היה {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (144,9,'pt-br','sua licença foi {leave_status}.','{\n \"Leave Status\": \"leave_status\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (145,10,'ar','{purpose_of_visit} تم إنشاؤه للزيارة {place_of_visit} ل {employee_name} من {start_date} ل {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (146,10,'da','{purpose_of_visit} er skabt til at besøge {place_of_visit} til {employee_name} fra {start_date} til {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (147,10,'de','{purpose_of_visit} ist zum Besuchen angelegt {place_of_visit} für {employee_name} aus {start_date} Zu {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (148,10,'en','{purpose_of_visit} is created to visit {place_of_visit} for {employee_name} from {start_date} to {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (149,10,'es','{purpose_of_visit} se crea para visitar {place_of_visit} para {employee_name} de {start_date} a {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (150,10,'fr','{purpose_of_visit} est créé pour visiter {place_of_visit} pour {employee_name} depuis {start_date} pour {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (151,10,'it','{purpose_of_visit} è creato per visitare {place_of_visit} for {employee_name} per {start_date} A {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (152,10,'ja','{purpose_of_visit} 訪問するために作成されます {place_of_visit} ために {employee_name} から {start_date} に {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (153,10,'nl','{purpose_of_visit} is gemaakt om te bezoeken {place_of_visit} voor {employee_name} van {start_date} naar {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (154,10,'pl','{purpose_of_visit} jest stworzony do zwiedzania {place_of_visit} Do {employee_name} z {start_date} Do {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (155,10,'pt','{purpose_of_visit} é criado para visitar {place_of_visit} para {employee_name} de {start_date} para {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (156,10,'ru','{purpose_of_visit} создан для посещения {place_of_visit} для {employee_name} от {start_date} к {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (157,10,'tr','{purpose_of_visit} ziyaret etmek için yaratılmıştır {place_of_visit} için {employee_name} itibaren {start_date} ile {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (158,10,'zh','{purpose_of_visit} 被创建来访问 {place_of_visit} 为了 {employee_name} 从 {start_date} 到 {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (159,10,'he','{purpose_of_visit} נוצר כדי לבקר {place_of_visit} ל {employee_name} מ {start_date} ל {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (160,10,'pt-br','{purpose_of_visit} é criado para visitar {place_of_visit} para {employee_name} de {start_date} para {end_date}.','{\n \"Purpose of visit\": \"purpose_of_visit\",\n \"Place of visit\": \"place_of_visit\",\n \"Employee Name\": \"employee_name\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (161,11,'ar','تم إنشاء الفاتورة الجديدة {contract_number} بواسطة {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (162,11,'da','Ny faktura {contract_number} oprettet af {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (163,11,'de','Neue Rechnung {contract_number} erstellt von {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (164,11,'en','New Invoice {contract_number} created by {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (165,11,'es','Nueva factura {contract_number} creada por {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (166,11,'fr','Nouvelle facture {contract_number} créée par {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (167,11,'it','Nuova fattura {contract_number} creata da {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (168,11,'ja','{contract_company_name} によって作成された新しい請求書 {contract_number}。','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (169,11,'nl','Nieuwe factuur {contract_number} gemaakt door {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (170,11,'pl','Nowa faktura {contract_number} utworzona przez firmę {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (171,11,'pt','Nova fatura {contract_number} criada por {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (172,11,'ru','Новый счет {contract_number}, созданный {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (173,11,'tr','Yeni fatura {contract_number} tarafından yaratıldı {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (174,11,'zh','新发票 {contract_number} 由...制作 {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (175,11,'he','חשבונית חדשה {contract_number} נוצר על ידי {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (176,11,'pt-br','Nova fatura {contract_number} criada por {contract_company_name}.','{\n \"Contract number\": \"contract_number\",\n \"Contract company name\": \"contract_company_name\"\n }',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'); /*!40000 ALTER TABLE `notification_template_langs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification_templates` -- DROP TABLE IF EXISTS `notification_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `notification_templates` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `slug` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification_templates` -- LOCK TABLES `notification_templates` WRITE; /*!40000 ALTER TABLE `notification_templates` DISABLE KEYS */; INSERT INTO `notification_templates` VALUES (1,'New Monthly Payslip','new_monthly_payslip','2024-05-29 04:33:17','2024-05-29 04:33:17'), (2,'New Announcement','new_announcement','2024-05-29 04:33:17','2024-05-29 04:33:17'), (3,'New Meeting','new_meeting','2024-05-29 04:33:17','2024-05-29 04:33:17'), (4,'New Award','new_award','2024-05-29 04:33:17','2024-05-29 04:33:17'), (5,'New Holidays','new_holidays','2024-05-29 04:33:17','2024-05-29 04:33:17'), (6,'New Company Policy','new_company_policy','2024-05-29 04:33:17','2024-05-29 04:33:17'), (7,'New Ticket','new_ticket','2024-05-29 04:33:17','2024-05-29 04:33:17'), (8,'New Event','new_event','2024-05-29 04:33:17','2024-05-29 04:33:17'), (9,'Leave Approve/Reject','leave_approve_reject','2024-05-29 04:33:17','2024-05-29 04:33:17'), (10,'New Trip','new_trip','2024-05-29 04:33:17','2024-05-29 04:33:17'), (11,'New Contract','contract_notification','2024-05-29 04:33:17','2024-05-29 04:33:17'); /*!40000 ALTER TABLE `notification_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `orders` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` varchar(100) NOT NULL, `name` varchar(100) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `card_number` varchar(10) DEFAULT NULL, `card_exp_month` varchar(10) DEFAULT NULL, `card_exp_year` varchar(10) DEFAULT NULL, `plan_name` varchar(100) NOT NULL, `plan_id` int(11) NOT NULL, `price` double(15,2) NOT NULL, `price_currency` varchar(10) NOT NULL, `txn_id` varchar(100) NOT NULL, `payment_status` varchar(100) NOT NULL, `payment_type` varchar(191) NOT NULL DEFAULT 'Manually', `receipt` varchar(191) DEFAULT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `is_refund` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `orders_order_id_unique` (`order_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `other_payments` -- DROP TABLE IF EXISTS `other_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `other_payments` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `title` varchar(191) NOT NULL, `amount` double(15,2) NOT NULL, `type` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `other_payments` -- LOCK TABLES `other_payments` WRITE; /*!40000 ALTER TABLE `other_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `other_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `overtimes` -- DROP TABLE IF EXISTS `overtimes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `overtimes` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `title` varchar(191) NOT NULL, `number_of_days` int(11) NOT NULL, `hours` int(11) NOT NULL, `rate` double(15,2) NOT NULL, `type` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `overtimes` -- LOCK TABLES `overtimes` WRITE; /*!40000 ALTER TABLE `overtimes` DISABLE KEYS */; /*!40000 ALTER TABLE `overtimes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(191) NOT NULL, `token` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `password_resets_email_index` (`email`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pay_slips` -- DROP TABLE IF EXISTS `pay_slips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `pay_slips` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `net_payble` double(15,2) NOT NULL, `salary_month` varchar(191) NOT NULL, `status` int(11) NOT NULL, `basic_salary` double(15,2) NOT NULL, `allowance` text NOT NULL, `commission` text NOT NULL, `loan` text NOT NULL, `saturation_deduction` text NOT NULL, `other_payment` text NOT NULL, `overtime` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pay_slips` -- LOCK TABLES `pay_slips` WRITE; /*!40000 ALTER TABLE `pay_slips` DISABLE KEYS */; /*!40000 ALTER TABLE `pay_slips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payees` -- DROP TABLE IF EXISTS `payees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `payee_name` varchar(191) NOT NULL, `contact_number` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payees` -- LOCK TABLES `payees` WRITE; /*!40000 ALTER TABLE `payees` DISABLE KEYS */; /*!40000 ALTER TABLE `payees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payers` -- DROP TABLE IF EXISTS `payers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payers` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `payer_name` varchar(191) NOT NULL, `contact_number` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payers` -- LOCK TABLES `payers` WRITE; /*!40000 ALTER TABLE `payers` DISABLE KEYS */; /*!40000 ALTER TABLE `payers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payment_types` -- DROP TABLE IF EXISTS `payment_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payment_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payment_types` -- LOCK TABLES `payment_types` WRITE; /*!40000 ALTER TABLE `payment_types` DISABLE KEYS */; /*!40000 ALTER TABLE `payment_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payslip_types` -- DROP TABLE IF EXISTS `payslip_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payslip_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payslip_types` -- LOCK TABLES `payslip_types` WRITE; /*!40000 ALTER TABLE `payslip_types` DISABLE KEYS */; /*!40000 ALTER TABLE `payslip_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `performance__types` -- DROP TABLE IF EXISTS `performance__types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `performance__types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `performance__types` -- LOCK TABLES `performance__types` WRITE; /*!40000 ALTER TABLE `performance__types` DISABLE KEYS */; /*!40000 ALTER TABLE `performance__types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `guard_name` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=309 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissions` -- LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` VALUES (1,'Manage User','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (2,'Create User','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (3,'Edit User','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (4,'Delete User','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (5,'Manage Role','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (6,'Create Role','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (7,'Delete Role','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (8,'Edit Role','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (9,'Manage Award','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (10,'Create Award','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (11,'Delete Award','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (12,'Edit Award','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (13,'Manage Transfer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (14,'Create Transfer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (15,'Delete Transfer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (16,'Edit Transfer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (17,'Manage Resignation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (18,'Create Resignation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (19,'Edit Resignation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (20,'Delete Resignation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (21,'Manage Travel','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (22,'Create Travel','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (23,'Edit Travel','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (24,'Delete Travel','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (25,'Manage Promotion','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (26,'Create Promotion','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (27,'Edit Promotion','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (28,'Delete Promotion','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (29,'Manage Complaint','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (30,'Create Complaint','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (31,'Edit Complaint','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (32,'Delete Complaint','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (33,'Manage Warning','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (34,'Create Warning','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (35,'Edit Warning','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (36,'Delete Warning','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (37,'Manage Termination','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (38,'Create Termination','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (39,'Edit Termination','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (40,'Delete Termination','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (41,'Manage Department','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (42,'Create Department','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (43,'Edit Department','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (44,'Delete Department','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (45,'Manage Designation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (46,'Create Designation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (47,'Edit Designation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (48,'Delete Designation','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (49,'Manage Document Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (50,'Create Document Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (51,'Edit Document Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (52,'Delete Document Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (53,'Manage Branch','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (54,'Create Branch','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (55,'Edit Branch','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (56,'Delete Branch','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (57,'Manage Award Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (58,'Create Award Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (59,'Edit Award Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (60,'Delete Award Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (61,'Manage Termination Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (62,'Create Termination Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (63,'Edit Termination Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (64,'Delete Termination Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (65,'Manage Employee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (66,'Create Employee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (67,'Edit Employee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (68,'Delete Employee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (69,'Show Employee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (70,'Manage Payslip Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (71,'Create Payslip Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (72,'Edit Payslip Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (73,'Delete Payslip Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (74,'Manage Allowance Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (75,'Create Allowance Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (76,'Edit Allowance Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (77,'Delete Allowance Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (78,'Manage Loan Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (79,'Create Loan Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (80,'Edit Loan Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (81,'Delete Loan Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (82,'Manage Deduction Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (83,'Create Deduction Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (84,'Edit Deduction Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (85,'Delete Deduction Option','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (86,'Manage Set Salary','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (87,'Create Set Salary','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (88,'Edit Set Salary','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (89,'Delete Set Salary','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (90,'Manage Allowance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (91,'Create Allowance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (92,'Edit Allowance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (93,'Delete Allowance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (94,'Create Commission','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (95,'Create Loan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (96,'Create Saturation Deduction','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (97,'Create Other Payment','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (98,'Create Overtime','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (99,'Edit Commission','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (100,'Delete Commission','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (101,'Edit Loan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (102,'Delete Loan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (103,'Edit Saturation Deduction','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (104,'Delete Saturation Deduction','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (105,'Edit Other Payment','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (106,'Delete Other Payment','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (107,'Edit Overtime','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (108,'Delete Overtime','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (109,'Manage Pay Slip','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (110,'Create Pay Slip','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (111,'Edit Pay Slip','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (112,'Delete Pay Slip','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (113,'Manage Account List','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (114,'Create Account List','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (115,'Edit Account List','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (116,'Delete Account List','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (117,'View Balance Account List','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (118,'Manage Payee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (119,'Create Payee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (120,'Edit Payee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (121,'Delete Payee','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (122,'Manage Payer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (123,'Create Payer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (124,'Edit Payer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (125,'Delete Payer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (126,'Manage Expense Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (127,'Create Expense Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (128,'Edit Expense Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (129,'Delete Expense Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (130,'Manage Income Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (131,'Edit Income Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (132,'Delete Income Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (133,'Create Income Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (134,'Manage Payment Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (135,'Create Payment Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (136,'Edit Payment Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (137,'Delete Payment Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (138,'Manage Deposit','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (139,'Create Deposit','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (140,'Edit Deposit','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (141,'Delete Deposit','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (142,'Manage Expense','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (143,'Create Expense','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (144,'Edit Expense','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (145,'Delete Expense','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (146,'Manage Transfer Balance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (147,'Create Transfer Balance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (148,'Edit Transfer Balance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (149,'Delete Transfer Balance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (150,'Manage Event','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (151,'Create Event','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (152,'Edit Event','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (153,'Delete Event','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (154,'Manage Announcement','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (155,'Create Announcement','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (156,'Edit Announcement','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (157,'Delete Announcement','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (158,'Manage Leave Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (159,'Create Leave Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (160,'Edit Leave Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (161,'Delete Leave Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (162,'Manage Leave','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (163,'Create Leave','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (164,'Edit Leave','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (165,'Delete Leave','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (166,'Manage Meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (167,'Create Meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (168,'Edit Meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (169,'Delete Meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (170,'Manage Ticket','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (171,'Create Ticket','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (172,'Edit Ticket','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (173,'Delete Ticket','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (174,'Manage Attendance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (175,'Create Attendance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (176,'Edit Attendance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (177,'Delete Attendance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (178,'Manage Language','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (179,'Create Language','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (180,'Manage Plan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (181,'Create Plan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (182,'Edit Plan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (183,'Buy Plan','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (184,'Manage System Settings','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (185,'Manage Company Settings','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (186,'Manage TimeSheet','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (187,'Create TimeSheet','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (188,'Edit TimeSheet','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (189,'Delete TimeSheet','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (190,'Manage Order','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (191,'manage coupon','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (192,'create coupon','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (193,'edit coupon','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (194,'delete coupon','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (195,'Manage Assets','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (196,'Create Assets','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (197,'Edit Assets','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (198,'Delete Assets','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (199,'Manage Document','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (200,'Create Document','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (201,'Edit Document','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (202,'Delete Document','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (203,'Manage Employee Profile','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (204,'Show Employee Profile','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (205,'Manage Employee Last Login','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (206,'Manage Indicator','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (207,'Create Indicator','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (208,'Edit Indicator','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (209,'Delete Indicator','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (210,'Show Indicator','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (211,'Manage Appraisal','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (212,'Create Appraisal','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (213,'Edit Appraisal','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (214,'Delete Appraisal','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (215,'Show Appraisal','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (216,'Manage Goal Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (217,'Create Goal Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (218,'Edit Goal Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (219,'Delete Goal Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (220,'Manage Goal Tracking','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (221,'Create Goal Tracking','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (222,'Edit Goal Tracking','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (223,'Delete Goal Tracking','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (224,'Manage Company Policy','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (225,'Create Company Policy','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (226,'Edit Company Policy','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (227,'Delete Company Policy','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (228,'Manage Trainer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (229,'Create Trainer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (230,'Edit Trainer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (231,'Delete Trainer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (232,'Show Trainer','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (233,'Manage Training','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (234,'Create Training','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (235,'Edit Training','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (236,'Delete Training','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (237,'Show Training','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (238,'Manage Training Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (239,'Create Training Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (240,'Edit Training Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (241,'Delete Training Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (242,'Manage Report','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (243,'Manage Holiday','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (244,'Create Holiday','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (245,'Edit Holiday','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (246,'Delete Holiday','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (247,'Manage Job Category','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (248,'Create Job Category','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (249,'Edit Job Category','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (250,'Delete Job Category','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (251,'Manage Job Stage','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (252,'Create Job Stage','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (253,'Edit Job Stage','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (254,'Delete Job Stage','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (255,'Manage Job','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (256,'Create Job','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (257,'Edit Job','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (258,'Delete Job','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (259,'Show Job','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (260,'Manage Job Application','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (261,'Create Job Application','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (262,'Edit Job Application','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (263,'Delete Job Application','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (264,'Show Job Application','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (265,'Move Job Application','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (266,'Add Job Application Note','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (267,'Delete Job Application Note','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (268,'Add Job Application Skill','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (269,'Manage Job OnBoard','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (270,'Manage Custom Question','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (271,'Create Custom Question','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (272,'Edit Custom Question','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (273,'Delete Custom Question','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (274,'Manage Interview Schedule','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (275,'Create Interview Schedule','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (276,'Edit Interview Schedule','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (277,'Delete Interview Schedule','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (278,'Manage Career','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (279,'Manage Competencies','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (280,'Create Competencies','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (281,'Edit Competencies','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (282,'Delete Competencies','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (283,'Manage Performance Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (284,'Create Performance Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (285,'Edit Performance Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (286,'Delete Performance Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (287,'Manage Contract Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (288,'Create Contract Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (289,'Edit Contract Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (290,'Delete Contract Type','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (291,'Manage Contract','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (292,'Create Contract','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (293,'Edit Contract','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (294,'Delete Contract','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (295,'Store Note','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (296,'Delete Note','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (297,'Store Comment','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (298,'Delete Comment','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (299,'Delete Attachment','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (300,'Create Webhook','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (301,'Edit Webhook','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (302,'Delete Webhook','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (303,'Manage Zoom meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (304,'Create Zoom meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (305,'Show Zoom meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (306,'Delete Zoom meeting','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (307,'Manage Biometric Attendance','web','2024-05-29 04:33:11','2024-05-29 04:33:11'), (308,'Biometric Attendance Synchronize','web','2024-05-29 04:33:11','2024-05-29 04:33:11'); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plan_requests` -- DROP TABLE IF EXISTS `plan_requests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plan_requests` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `plan_id` int(11) NOT NULL, `duration` varchar(20) NOT NULL DEFAULT 'monthly', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plan_requests` -- LOCK TABLES `plan_requests` WRITE; /*!40000 ALTER TABLE `plan_requests` DISABLE KEYS */; /*!40000 ALTER TABLE `plan_requests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plans` -- DROP TABLE IF EXISTS `plans`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plans` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `price` decimal(30,2) DEFAULT 0.00, `duration` varchar(100) NOT NULL, `max_users` int(11) NOT NULL DEFAULT 0, `max_employees` int(11) NOT NULL DEFAULT 0, `storage_limit` double(20,2) NOT NULL DEFAULT 0.00, `enable_chatgpt` varchar(191) DEFAULT NULL, `trial` int(11) NOT NULL DEFAULT 0, `trial_days` varchar(191) DEFAULT NULL, `is_disable` int(11) NOT NULL DEFAULT 1, `description` text DEFAULT NULL, `image` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `plans_name_unique` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plans` -- LOCK TABLES `plans` WRITE; /*!40000 ALTER TABLE `plans` DISABLE KEYS */; INSERT INTO `plans` VALUES (1,'Free Plan',0.00,'Lifetime',1,5,1024.00,'on',0,NULL,1,NULL,'free_plan.png','2024-05-29 04:33:17','2024-05-29 04:33:17'); /*!40000 ALTER TABLE `plans` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `promotions` -- DROP TABLE IF EXISTS `promotions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `promotions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `designation_id` int(11) NOT NULL, `promotion_title` varchar(191) NOT NULL, `promotion_date` date NOT NULL, `description` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `promotions` -- LOCK TABLES `promotions` WRITE; /*!40000 ALTER TABLE `promotions` DISABLE KEYS */; /*!40000 ALTER TABLE `promotions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `referral_settings` -- DROP TABLE IF EXISTS `referral_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `referral_settings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `percentage` int(11) NOT NULL, `minimum_threshold_amount` int(11) NOT NULL, `is_enable` int(11) NOT NULL DEFAULT 0, `guideline` longtext NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `referral_settings` -- LOCK TABLES `referral_settings` WRITE; /*!40000 ALTER TABLE `referral_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `referral_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `referral_transactions` -- DROP TABLE IF EXISTS `referral_transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `referral_transactions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `plan_id` int(11) NOT NULL, `plan_price` decimal(15,2) NOT NULL DEFAULT 0.00, `commission` int(11) NOT NULL, `referral_code` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `referral_transactions` -- LOCK TABLES `referral_transactions` WRITE; /*!40000 ALTER TABLE `referral_transactions` DISABLE KEYS */; /*!40000 ALTER TABLE `referral_transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `resignations` -- DROP TABLE IF EXISTS `resignations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `resignations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `notice_date` date NOT NULL, `resignation_date` date NOT NULL, `description` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `resignations` -- LOCK TABLES `resignations` WRITE; /*!40000 ALTER TABLE `resignations` DISABLE KEYS */; /*!40000 ALTER TABLE `resignations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_has_permissions` -- DROP TABLE IF EXISTS `role_has_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `role_has_permissions` ( `permission_id` bigint(20) unsigned NOT NULL, `role_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`permission_id`,`role_id`), KEY `role_has_permissions_role_id_foreign` (`role_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_has_permissions` -- LOCK TABLES `role_has_permissions` WRITE; /*!40000 ALTER TABLE `role_has_permissions` DISABLE KEYS */; INSERT INTO `role_has_permissions` VALUES (1,1), (1,2), (1,3), (1,5), (2,1), (2,2), (2,3), (2,5), (3,1), (3,2), (3,3), (3,5), (4,1), (4,2), (4,3), (4,5), (5,1), (5,2), (5,5), (6,1), (6,2), (6,5), (7,1), (7,2), (7,5), (8,1), (8,2), (8,5), (9,2), (9,3), (9,4), (9,5), (10,2), (10,3), (10,5), (11,2), (11,3), (11,5), (12,2), (12,3), (12,5), (13,2), (13,3), (13,4), (13,5), (14,2), (14,3), (14,5), (15,2), (15,3), (15,5), (16,2), (16,3), (16,5), (17,2), (17,3), (17,4), (17,5), (18,2), (18,3), (18,4), (18,5), (19,2), (19,3), (19,4), (19,5), (20,2), (20,3), (20,4), (20,5), (21,2), (21,3), (21,4), (21,5), (22,2), (22,3), (22,5), (23,2), (23,3), (23,5), (24,2), (24,3), (24,5), (25,2), (25,3), (25,4), (25,5), (26,2), (26,3), (26,5), (27,2), (27,3), (27,5), (28,2), (28,3), (28,5), (29,2), (29,3), (29,4), (29,5), (30,2), (30,3), (30,4), (30,5), (31,2), (31,3), (31,4), (31,5), (32,2), (32,3), (32,4), (32,5), (33,2), (33,3), (33,4), (33,5), (34,2), (34,3), (34,4), (34,5), (35,2), (35,3), (35,4), (35,5), (36,2), (36,3), (36,4), (36,5), (37,2), (37,3), (37,4), (37,5), (38,2), (38,3), (38,5), (39,2), (39,3), (39,5), (40,2), (40,3), (40,5), (41,2), (41,3), (41,5), (42,2), (42,3), (42,5), (43,2), (43,3), (43,5), (44,2), (44,3), (44,5), (45,2), (45,3), (45,5), (46,2), (46,3), (46,5), (47,2), (47,3), (47,5), (48,2), (48,3), (48,5), (49,2), (49,3), (49,5), (50,2), (50,3), (50,5), (51,2), (51,3), (51,5), (52,2), (52,3), (52,5), (53,2), (53,3), (53,5), (54,2), (54,3), (54,5), (55,2), (55,3), (55,5), (56,2), (56,3), (56,5), (57,2), (57,3), (57,5), (58,2), (58,3), (58,5), (59,2), (59,3), (59,5), (60,2), (60,3), (60,5), (61,2), (61,3), (61,5), (62,2), (62,3), (62,5), (63,2), (63,3), (63,5), (64,2), (64,3), (64,5), (65,2), (65,3), (65,4), (65,5), (66,2), (66,3), (66,5), (67,2), (67,3), (67,4), (67,5), (68,2), (68,3), (68,5), (69,2), (69,3), (69,4), (69,5), (70,2), (70,3), (70,5), (71,2), (71,3), (71,5), (72,2), (72,3), (72,5), (73,2), (73,3), (73,5), (74,2), (74,3), (74,5), (75,2), (75,3), (75,5), (76,2), (76,3), (76,5), (77,2), (77,3), (77,5), (78,2), (78,3), (78,5), (79,2), (79,3), (79,5), (80,2), (80,3), (80,5), (81,2), (81,3), (81,5), (82,2), (82,3), (82,5), (83,2), (83,3), (83,5), (84,2), (84,3), (84,5), (85,2), (85,3), (85,5), (86,2), (86,3), (86,5), (87,2), (87,3), (87,5), (88,2), (88,3), (88,5), (89,2), (89,3), (89,5), (90,2), (90,3), (90,4), (90,5), (91,2), (91,3), (91,5), (92,2), (92,3), (92,5), (93,2), (93,3), (93,5), (94,2), (94,3), (94,5), (95,2), (95,3), (95,5), (96,2), (96,3), (96,5), (97,2), (97,3), (97,5), (98,2), (98,3), (98,5), (99,2), (99,3), (99,5), (100,2), (100,3), (100,5), (101,2), (101,3), (101,5), (102,2), (102,3), (102,5), (103,2), (103,3), (103,5), (104,2), (104,3), (104,5), (105,2), (105,3), (105,5), (106,2), (106,3), (106,5), (107,2), (107,3), (107,5), (108,2), (108,3), (108,5), (109,2), (109,3), (109,5), (110,2), (110,3), (110,5), (111,2), (111,3), (111,5), (112,2), (112,3), (112,5), (113,2), (113,5), (114,2), (114,5), (115,2), (115,5), (116,2), (116,5), (117,2), (118,2), (118,5), (119,2), (119,5), (120,2), (120,5), (121,2), (121,5), (122,2), (122,5), (123,2), (123,5), (124,2), (124,5), (125,2), (125,5), (126,2), (126,5), (127,2), (127,5), (128,2), (128,5), (129,2), (129,5), (130,2), (130,5), (131,2), (131,5), (132,2), (132,5), (133,2), (133,5), (134,2), (134,5), (135,2), (135,5), (136,2), (136,5), (137,2), (137,5), (138,2), (138,5), (139,2), (139,5), (140,2), (140,5), (141,2), (141,5), (142,2), (142,5), (143,2), (143,5), (144,2), (144,5), (145,2), (145,5), (146,2), (146,5), (147,2), (147,5), (148,2), (148,5), (149,2), (149,5), (150,2), (150,3), (150,4), (150,5), (151,2), (151,3), (151,5), (152,2), (152,3), (152,5), (153,2), (153,3), (153,5), (154,2), (154,3), (154,4), (154,5), (155,2), (155,3), (155,5), (156,2), (156,3), (156,5), (157,2), (157,3), (157,5), (158,2), (158,3), (158,5), (159,2), (159,3), (159,5), (160,2), (160,3), (160,5), (161,2), (161,3), (161,5), (162,2), (162,3), (162,4), (162,5), (163,2), (163,3), (163,4), (163,5), (164,2), (164,3), (164,4), (164,5), (165,2), (165,3), (165,4), (165,5), (166,2), (166,3), (166,4), (166,5), (167,2), (167,3), (167,5), (168,2), (168,3), (168,5), (169,2), (169,3), (169,5), (170,2), (170,3), (170,4), (170,5), (171,2), (171,3), (171,4), (171,5), (172,2), (172,3), (172,4), (172,5), (173,2), (173,3), (173,4), (173,5), (174,2), (174,3), (174,4), (174,5), (175,2), (175,3), (175,5), (176,2), (176,3), (176,5), (177,2), (177,3), (177,5), (178,1), (178,2), (178,3), (178,4), (179,1), (180,1), (180,2), (180,5), (181,1), (181,5), (182,1), (182,5), (183,2), (183,5), (184,1), (185,2), (186,2), (186,3), (186,4), (186,5), (187,2), (187,3), (187,4), (187,5), (188,2), (188,3), (188,4), (188,5), (189,2), (189,3), (189,4), (189,5), (190,1), (190,2), (191,1), (192,1), (193,1), (194,1), (195,2), (195,3), (195,5), (196,2), (196,3), (196,5), (197,2), (197,3), (197,5), (198,2), (198,3), (198,5), (199,2), (199,3), (199,4), (199,5), (200,2), (200,5), (201,2), (201,5), (202,2), (202,5), (203,2), (203,3), (203,5), (204,2), (204,3), (204,5), (205,2), (205,3), (205,5), (206,2), (206,3), (206,5), (207,2), (207,3), (207,5), (208,2), (208,3), (208,5), (209,2), (209,3), (209,5), (210,2), (210,3), (210,5), (211,2), (211,3), (211,5), (212,2), (212,3), (212,5), (213,2), (213,3), (213,5), (214,2), (214,3), (214,5), (215,2), (215,3), (215,5), (216,2), (216,3), (216,5), (217,2), (217,3), (217,5), (218,2), (218,3), (218,5), (219,2), (219,3), (219,5), (220,2), (220,3), (220,5), (221,2), (221,3), (221,5), (222,2), (222,3), (222,5), (223,2), (223,3), (223,5), (224,2), (224,3), (224,5), (225,2), (225,3), (225,5), (226,2), (226,3), (226,5), (227,2), (227,3), (227,5), (228,2), (228,3), (228,5), (229,2), (229,3), (229,5), (230,2), (230,3), (230,5), (231,2), (231,3), (231,5), (232,2), (232,3), (232,5), (233,2), (233,3), (233,5), (234,2), (234,3), (234,5), (235,2), (235,3), (235,5), (236,2), (236,3), (236,5), (237,2), (237,3), (237,5), (238,2), (238,3), (238,5), (239,2), (239,3), (239,5), (240,2), (240,3), (240,5), (241,2), (241,3), (241,5), (242,2), (242,5), (243,2), (243,3), (243,4), (243,5), (244,2), (244,3), (244,5), (245,2), (245,3), (245,5), (246,2), (246,3), (246,5), (247,2), (247,3), (247,5), (248,2), (248,3), (248,5), (249,2), (249,3), (249,5), (250,2), (250,3), (250,5), (251,2), (251,3), (251,5), (252,2), (252,3), (252,5), (253,2), (253,3), (253,5), (254,2), (254,3), (254,5), (255,2), (255,3), (255,5), (256,2), (256,3), (256,5), (257,2), (257,3), (257,5), (258,2), (258,3), (258,5), (259,2), (259,3), (259,5), (260,2), (260,3), (260,5), (261,2), (261,3), (261,5), (262,2), (262,3), (262,5), (263,2), (263,3), (263,5), (264,2), (264,3), (264,5), (265,2), (265,3), (265,5), (266,2), (266,3), (266,5), (267,2), (267,3), (267,5), (268,2), (268,3), (268,5), (269,2), (269,3), (269,5), (270,2), (270,3), (270,5), (271,2), (271,3), (271,5), (272,2), (272,3), (272,5), (273,2), (273,3), (273,5), (274,2), (274,3), (274,5), (275,2), (275,3), (275,5), (276,2), (276,3), (276,5), (277,2), (277,3), (277,5), (278,2), (278,3), (278,4), (278,5), (279,2), (279,5), (280,2), (280,5), (281,2), (281,5), (282,2), (282,5), (283,2), (283,3), (283,5), (284,2), (284,3), (284,5), (285,2), (285,3), (285,5), (286,2), (286,3), (286,5), (287,2), (287,3), (287,5), (288,2), (288,3), (288,5), (289,2), (289,3), (289,5), (290,2), (290,3), (290,5), (291,2), (291,3), (291,4), (291,5), (292,2), (292,3), (292,5), (293,2), (293,3), (293,5), (294,2), (294,3), (294,5), (295,2), (295,3), (295,4), (296,2), (296,3), (296,4), (297,2), (297,3), (297,4), (298,2), (298,3), (298,4), (299,2), (299,3), (299,4), (300,2), (301,2), (302,2), (303,2), (303,3), (303,4), (303,5), (304,2), (304,5), (305,2), (305,3), (305,4), (305,5), (306,2), (306,5), (307,2), (307,3), (308,2), (308,3); /*!40000 ALTER TABLE `role_has_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `guard_name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'super admin','web',0,'2024-05-29 04:33:11','2024-05-29 04:33:11'), (2,'company','web',1,'2024-05-29 04:33:12','2024-05-29 04:33:12'), (3,'hr','web',2,'2024-05-29 04:33:14','2024-05-29 04:33:14'), (4,'employee','web',2,'2024-05-29 04:33:15','2024-05-29 04:33:15'), (5,'asfasf','web',4,'2025-02-05 16:24:42','2025-02-05 16:24:42'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `saturation_deductions` -- DROP TABLE IF EXISTS `saturation_deductions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `saturation_deductions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `deduction_option` int(11) NOT NULL, `title` varchar(191) NOT NULL, `amount` double(15,2) NOT NULL, `type` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `saturation_deductions` -- LOCK TABLES `saturation_deductions` WRITE; /*!40000 ALTER TABLE `saturation_deductions` DISABLE KEYS */; /*!40000 ALTER TABLE `saturation_deductions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `set_salaries` -- DROP TABLE IF EXISTS `set_salaries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `set_salaries` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `set_salaries` -- LOCK TABLES `set_salaries` WRITE; /*!40000 ALTER TABLE `set_salaries` DISABLE KEYS */; /*!40000 ALTER TABLE `set_salaries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `settings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `value` longtext NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `settings_name_created_by_unique` (`name`,`created_by`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES (1,'local_storage_validation','jpg,jpeg,png,xlsx,xls,csv,pdf',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (2,'wasabi_storage_validation','jpg,jpeg,png,xlsx,xls,csv,pdf',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (3,'s3_storage_validation','jpg,jpeg,png,xlsx,xls,csv,pdf',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (4,'local_storage_max_upload_size','2048000',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (5,'wasabi_max_upload_size','2048000',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (6,'s3_max_upload_size','2048000',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (7,'storage_setting','local',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (8,'storage_setting','local',5,NULL,NULL), (9,'local_storage_validation','csv,jpeg,jpg,pdf,png,xls,xlsx,php,phtml',5,NULL,NULL), (10,'local_storage_max_upload_size','2048000',5,NULL,NULL), (11,'meta_title','asfasf',5,'2025-02-05 16:49:14','2025-02-05 16:49:14'), (12,'meta_description','asfasf',5,'2025-02-05 16:49:14','2025-02-05 16:49:14'), (13,'meta_image','home_banner.php',5,'2025-02-05 16:49:14','2025-02-05 16:49:14'); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template` -- DROP TABLE IF EXISTS `template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `template` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `template_name` varchar(191) NOT NULL, `prompt` text NOT NULL, `module` varchar(191) NOT NULL, `field_json` text NOT NULL, `is_tone` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template` -- LOCK TABLES `template` WRITE; /*!40000 ALTER TABLE `template` DISABLE KEYS */; INSERT INTO `template` VALUES (1,'title','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##title## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','allowance','{\"field\":[{\"label\":\"Allowance Title\",\"placeholder\":\"e.g.Medical Allowance, Bonus Allowance\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (2,'title','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##title## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','commission','{\"field\":[{\"label\":\"Commission Title\",\"placeholder\":\"e.g.Sales Commission, Bonus Commission\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (3,'title','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##title## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','loan','{\"field\":[{\"label\":\"Loan Title\",\"placeholder\":\"e.g.Sales Training Loan, Other Loan\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (4,'reason','Generate a comma-separated string of common loan reasons that employees may provide to their employers. Include both personal and professional reasons for taking loan, such only ##reason## . Aim to generate a diverse range of loan reasons that can be used in different situations. Please provide a comprehensive and varied list of loan reasons that can help employers understand and accommodate their employees\' needs.','loan','{\"field\":[{\"label\":\"Leave Reason\",\"placeholder\":\"e.g.career development,health issues\",\"field_type\":\"textarea\",\"field_name\":\"reason\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (5,'title','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##title## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','saturation deduction','{\"field\":[{\"label\":\"Saturation Deduction Title\",\"placeholder\":\"e.g.Saturation Deduction\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (6,'title','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##title## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','other payment','{\"field\":[{\"label\":\"Other Payment Title\",\"placeholder\":\"e.g.Bonus Payment, Allowance Payment\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (7,'title','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##title## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','overtime','{\"field\":[{\"label\":\"Overtime Title\",\"placeholder\":\"e.g.Overtime Pay, Overtime Earnings\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (8,'remark','Generate a comma-separated string of common loan reasons that employees may provide to their employers. Include both personal and professional reasons for taking loan, such only ##remark## . Aim to generate a diverse range of loan reasons that can be used in different situations. Please provide a comprehensive and varied list of loan reasons that can help employers understand and accommodate their employees\' needs.','timesheet','{\"field\":[{\"label\":\"Timesheet Remark\",\"placeholder\":\"e.g.Project Update,Time Management\",\"field_type\":\"textarea\",\"field_name\":\"reason\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (9,'leave_reason','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##leave_reason## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','leave','{\"field\":[{\"label\":\"Leave Type\",\"placeholder\":\"e.g.illness, family emergencies,vacation\",\"field_type\":\"textarea\",\"field_name\":\"leave_reason\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (10,'remark','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##remark## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','leave','{\"field\":[{\"label\":\"Leave Remark\",\"placeholder\":\"e.g.illness, family emergencies,vacation\",\"field_type\":\"textarea\",\"field_name\":\"remark\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (11,'remark','Generate a comma-separated string of common leave reasons that employees may provide to their employers. Include both personal and professional reasons for taking leave, such only ##remark## . Aim to generate a diverse range of leave reasons that can be used in different situations. Please provide a comprehensive and varied list of leave reasons that can help employers understand and accommodate their employees\' needs.','appraisal','{\"field\":[{\"label\":\"Appraisal Remark\",\"placeholder\":\"e.g.Communication Skills, Teamwork\",\"field_type\":\"textarea\",\"field_name\":\"remark\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (12,'subject','Generate a goal subject for an employee\'s goal related type to ##type##.','goal tracking','{\"field\":[{\"label\":\"Goal Type\",\"placeholder\":\"e.g.invoice, production,hiring\",\"field_type\":\"text_box\",\"field_name\":\"type\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (13,'description','Generate a goal descriptions for an employee\'s goal title is ##title##.','goal tracking','{\"field\":[{\"label\":\"Goal Description\",\"placeholder\":\"e.g.Invoice Accuracy\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (14,'description','Generate a deposit descriptions for an employee\'s deposit title is ##title##.','deposit','{\"field\":[{\"label\":\"Deposit Description\",\"placeholder\":\"e.g.Salary Deposit, Bonus Deposit\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (15,'description','Generate a expense descriptions for an employee\'s expense title is ##title##.','expense','{\"field\":[{\"label\":\"Expense Description\",\"placeholder\":\"e.g.Office Supplies, Travel Expenses\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (16,'description','Generate a transfer balance descriptions for an employee\'s transfer balance title is ##title##.','transfer balance','{\"field\":[{\"label\":\"Transfer Balance Description\",\"placeholder\":\"e.g.Savings Transfer\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (17,'description','Generate a job training descriptions for a ##position## position. The training description should include responsibilities such as ##responsibilities##. Please ensure the descriptions are concise, informative, and accurately reflect the key responsibilities of a ##position##.','training','{\"field\":[{\"label\":\"Position\",\"placeholder\":\"job training descriptions\",\"field_type\":\"text_box\",\"field_name\":\"position\"},{\"label\":\"Responsibilities\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"responsibilities\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (18,'description','Generate a description for presenting the Award. The description should highlight ##description##. Emphasize the significance of the Award as a symbol of recognition for employee\'s remarkable accomplishments and its representation of her \'##description##\' and impact on the organization. Please create a personalized and engaging description that conveys appreciation, pride, and gratitude for employee\'s contributions to the company\'s sucess','award','{\"field\":[{\"label\":\"Award Description\",\"placeholder\":\"e.g.skilled, focused ,efficiency\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (19,'description','Generate a list of common description for employee transfers within an organization. Include description such as ##description##. Please provide a comprehensive and varied list of description that can help employers understand and address employee transfer situations effectively.','transfer','{\"field\":[{\"label\":\"Transfer Description\",\"placeholder\":\"e.g.career development,special projects or initiatives\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (20,'description','Generate a description why an employee might choose to resign and request a transfer to another location within the company. Include both professional and personal reasons that could contribute to this decision. Examples may include ##reasons##. Aim to provide a comprehensive and varied description that can help employers understand and accommodate employees\' needs when considering a transfer request','resignation','{\"field\":[{\"label\":\"Resignation reasons\",\"placeholder\":\"e.g.career development,health issues\",\"field_type\":\"textarea\",\"field_name\":\"reasons\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (21,'description','Generate a description for organizing a company trip. The trip aims to ##aims## . Please provide a diverse description that highlight the benefits and positive outcomes associated with organizing a company trip. Focus on creating an engaging and enjoyable experience for employees while also achieving business objectives and cultivating a positive work environment.','travel','{\"field\":[{\"label\":\"Aims\",\"placeholder\":\"e.g.career development,health issues\",\"field_type\":\"textarea\",\"field_name\":\"aims\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (22,'promotion_title','Generate a list of promotion title suggestions for an ##role##. The promotion titles should reflect ##reasons##, and recognition of the ##role##\'s accomplishments. Please provide a diverse range of promotion titles that align with ##role## job roles and levels within the company. Aim to create titles that are both professional and descriptive, highlighting the ##role##\'s progression and impact within the organization.','promotion','{\"field\":[{\"label\":\"Job\",\"placeholder\":\"e.g.doctor, developer\",\"field_type\":\"text_box\",\"field_name\":\"role\"},{\"label\":\"Promotion Reasons\",\"placeholder\":\"e.g.increased responsibility, higher position\",\"field_type\":\"textarea\",\"field_name\":\"reasons\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (23,'description','Generate a promotion description for this title:##title##. ','promotion','{\"field\":[{\"label\":\"Promotion Title\",\"placeholder\":\"e.g.Medical Director\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (24,'title','Generate a list of titles for complaints related to employee and company issues. ##reasons##. Please provide a range of titles that accurately reflect common complaint categories, ensuring they are concise, descriptive, and effective in conveying the nature of the complaint. ','complaint','{\"field\":[{\"label\":\"Complaint reasons\",\"placeholder\":\"e.g.unprofessional behavior, harassment,\",\"field_type\":\"textarea\",\"field_name\":\"reasons\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (25,'description','Generate a Complaint description for this title:##title##. ','complaint','{\"field\":[{\"label\":\"Complaint Title\",\"placeholder\":\"e.g.Unprofessional Behavior Complaint\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (26,'subject','Generate a warning description for an employee who consistently ##subject##. The warning should address the employee\'s ##subject##, including further disciplinary action or termination of employment. Please provide a clear and firm warning message that encourages the employee to review the policy and make immediate improvements.','warning','{\"field\":[{\"label\":\"Warning Subject\",\"placeholder\":\"e.g.break attendance policy\",\"field_type\":\"text_box\",\"field_name\":\"subject\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (27,'description','Generate a warning description for an employee who consistently ##reasons##. The warning should address the employee\'s ##reasons##, including further disciplinary action or termination of employment. Please provide a clear and firm warning message that encourages the employee to review the policy and make immediate improvements.','warning','{\"field\":[{\"label\":\"Warning reasons\",\"placeholder\":\"e.g.break attendance policy\",\"field_type\":\"textarea\",\"field_name\":\"reasons\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (28,'description','Generate a termination description for the reason :##reason##. The description should convey the company\'s regret over the decision and outline the specific concerns, such as ##reasons##. Please provide a clear and professional message that explains the decision while expressing appreciation for the employee\'s contributions. Aim to offer guidance for personal and professional growth and provide necessary instructions regarding final paycheck and return of company property.','termination','{\"field\":[{\"label\":\"Termination reasons\",\"placeholder\":\"e.g.Poor Performance\",\"field_type\":\"textarea\",\"field_name\":\"reasons\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (29,'title','Generate an announcement title for ##title##. The title should be attention-grabbing and informative, effectively conveying the key message to the intended audience. Please ensure the title is appropriate for the given situation, whether it\'s about a ##title##. Aim to create a title that captures the essence of the announcement and sparks interest or curiosity among the readers.','announcement','{\"field\":[{\"label\":\"Announcement Title\",\"placeholder\":\"e.g.Growth Opportunities\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (30,'description','Generate an announcement title for ##reasons##. The title should be attention-grabbing and informative, effectively conveying the key message to the intended audience. Please ensure the title is appropriate for the given situation, whether it\'s about a ##reasons##. Aim to create a title that captures the essence of the announcement and sparks interest or curiosity among the readers.','announcement','{\"field\":[{\"label\":\"Announcement reasons\",\"placeholder\":\"e.g.Growth Opportunities\",\"field_type\":\"textarea\",\"field_name\":\"reasons\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (31,'occasion','Generate a list of holiday occasions for celebrations and gatherings. The occasions should cover a variety of holidays and events throughout the year, such as ##name##. Please provide a diverse range of occasions that can be used for hosting parties, organizing special events, or planning festive activities. Aim to offer unique and creative ideas that cater to different cultures, traditions, and preferences.','holiday','{\"field\":[{\"label\":\"Any Specific occasions\",\"placeholder\":\"e.g.Cultural Celebration\",\"field_type\":\"text_box\",\"field_name\":\"name\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (32,'title','Generate a list of job titles commonly found in an ##work_place##. The job titles should cover a range of roles and responsibilities within the field of ##field##. Include positions such as ##positions##. Please provide a diverse selection of job titles that accurately reflect the various positions found in an ##work_place##.','job','{\"field\":[{\"label\":\"Work Place\",\"placeholder\":\"e.g.IT Company,hospital\",\"field_type\":\"text_box\",\"field_name\":\"work_place\"},{\"label\":\"Field \",\"placeholder\":\"e.g.Backend\",\"field_type\":\"text_box\",\"field_name\":\"field\"},{\"label\":\"Positions\",\"placeholder\":\"e.g.developer,tester\",\"field_type\":\"text_box\",\"field_name\":\"positions\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (33,'description','Generate a job descriptions for a ##position## position. The job description should include responsibilities such as ##responsibilities##. Please ensure the descriptions are concise, informative, and accurately reflect the key responsibilities of a ##position##.','job','{\"field\":[{\"label\":\"Position\",\"placeholder\":\"job for a position\",\"field_type\":\"text_box\",\"field_name\":\"position\"},{\"label\":\"Responsibilities\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"responsibilities\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (34,'requirement','Generate a comma-separated string of job requirements for a ##position## position. The requirements should include ##description##. Please provide the requirements in a comma-separated string format.','job','{\"field\":[{\"label\":\"Position\",\"placeholder\":\"requirement of job\",\"field_type\":\"text_box\",\"field_name\":\"position\"},{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (35,'comment','Generate an announcement title for ##comment##. The title should be attention-grabbing and informative, effectively conveying the key message to the intended audience. Please ensure the title is appropriate for the given situation, whether it\'s about a ##comment##. Aim to create a title that captures the essence of the announcement and sparks interest or curiosity among the readers.','interview-schedule','{\"field\":[{\"label\":\"Interview Schedule Comment\",\"placeholder\":\"e.g.Growth Opportunities\",\"field_type\":\"textarea\",\"field_name\":\"comment\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (36,'title','Generate a creative and engaging event title for an upcoming event. The event can be a ##name##. Please focus on creating a title that captures the essence of the event, sparks curiosity, and encourages attendance. Aim to make the title memorable, intriguing, and aligned with the purpose and theme of the event. Consider the target audience, event objectives, and any specific keywords or ideas you would like to incorporate','event','{\"field\":[{\"label\":\"Specific type of event\",\"placeholder\":\"e.g.conference, workshop, seminar\",\"field_type\":\"text_box\",\"field_name\":\"name\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (37,'description','Generate a meeting title that is catchy and informative. The title should effectively convey the purpose and focus of the meeting, whether it\'s for ##description##. Please aim to create a title that grabs the attention of participants, reflects the importance of the meeting, and provides a clear understanding of what will be discussed or accomplished during the session.','event','{\"field\":[{\"label\":\"Event Description\",\"placeholder\":\"e.g.conference, workshop\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (38,'title','Generate a meeting title that is catchy and informative. The title should effectively convey the purpose and focus of the meeting, whether it\'s for ##purpose##. Please aim to create a title that grabs the attention of participants, reflects the importance of the meeting, and provides a clear understanding of what will be discussed or accomplished during the session.','meeting','{\"field\":[{\"label\":\"Meeting purpose\",\"placeholder\":\"e.g.conference, workshop\",\"field_type\":\"text_box\",\"field_name\":\"purpose\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (39,'note','Generate a meeting title that is catchy and informative. The title should effectively convey the purpose and focus of the meeting, whether it\'s for ##note##. Please aim to create a title that grabs the attention of participants, reflects the importance of the meeting, and provides a clear understanding of what will be discussed or accomplished during the session.','meeting','{\"field\":[{\"label\":\"Meeting Note\",\"placeholder\":\"e.g.conference, workshop\",\"field_type\":\"textarea\",\"field_name\":\"note\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (40,'title','Generate a meeting title that is catchy and informative. The title should effectively convey the purpose and focus of the meeting, whether it\'s for ##title##. Please aim to create a title that grabs the attention of participants, reflects the importance of the meeting, and provides a clear understanding of what will be discussed or accomplished during the session.','zoom-meeting','{\"field\":[{\"label\":\"Zoom Meeting Title\",\"placeholder\":\"e.g.conference, workshop\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (41,'description','Generate a descriptive response for a given ##title##. The response should be detailed, engaging, and informative, providing relevant information and capturing the reader\'s interest','account-assets','{\"field\":[{\"label\":\"Asset Description\",\"placeholder\":\"HR may provide some devices \",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (42,'description','Generate a description based on a given document name:##title##. The document name: ##title## represents a specific file or document, and you need a descriptive summary or overview of its contents. Please provide a clear and concise description that captures the main points, purpose, or key information contained within the document. Aim to create a brief but informative description that gives the reader an understanding of what they can expect when accessing or reviewing the document.','document-upload','{\"field\":[{\"label\":\"Document Description\",\"placeholder\":\"e.g. Employee handbook\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (43,'title','Generate a suitable title for the company policy regarding ##description##. The title should be clear, concise, and informative, effectively conveying the purpose and scope of the policy. Please ensure that the title reflects the importance of ##description##. Aim to create a title that is professional, easily understandable, and aligned with the company\'s culture and values.','company-policy','{\"field\":[{\"label\":\"Description of policy\",\"placeholder\":\"e.g.Leave policies,Performance management\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (44,'description','generate description for this title ##title##','company-policy','{\"field\":[{\"label\":\" Company Policy Description \",\"placeholder\":\"e.g.Accounts Receivable,Office Equipment\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (45,'subject','generate contract subject for this contract description ##description##','contract','{\"field\":[{\"label\":\"Contract Subject\",\"placeholder\":\"e.g.Terms and Conditions\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (46,'description','generate contract description for this contract subject ##subject##','contract','{\"field\":[{\"label\":\"Contract Description\",\"placeholder\":\"e.g.Legal Protection,Terms and Conditions\",\"field_type\":\"textarea\",\"field_name\":\"subject\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (47,'title','generate example of subject for bug in ecommerce base website support ticket','ticket','{\"field\":[{\"label\":\"Ticket Subject\",\"placeholder\":\"e.g.Bug Summary\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (48,'description','generate support ticket description of subject for ##description## ','ticket','{\"field\":[{\"label\":\"Ticket Description\",\"placeholder\":\"e.g.Error Message Displayed\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (49,'content','Generate a meeting notification message for an ##topic## meeting. Include the date, time, location, and a brief agenda with three key discussion points.','notification-templates','{\"field\":[{\"label\":\"Notification Message\",\"placeholder\":\"e.g.brief explanation of the purpose or background of the notification\",\"field_type\":\"textarea\",\"field_name\":\"topic\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (50,'name','please suggest subscription plan name for this : ##description## for my business','plan','{\"field\":[{\"label\":\"What is your plan about?\",\"placeholder\":\"e.g. Describe your plan details \",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (51,'description','please suggest subscription plan description for this : ##title##: for my business','plan','{\"field\":[{\"label\":\"What is your plan title?\",\"placeholder\":\"e.g. Pro Resller,Exclusive Access\",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (52,'name','give 10 catchy only name of Offer or discount Coupon for : ##keywords##','coupon','{\"field\":[{\"label\":\"Seed words\",\"placeholder\":\"e.g.coupon will provide you with a discount on your selected plan\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (53,'meta_title','Write SEO meta title for:\n\n ##description## \n\nWebsite name is:\n ##title## \n\nSeed words:\n ##keywords## \n\n','seo','{\"field\":[{\"label\":\"Website Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Website Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"e.g. cloud services, databases\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (54,'meta_description','Write SEO meta description for:\n\n ##description## \n\nWebsite name is:\n ##title## \n\nSeed words:\n ##keywords## \n\n','seo','{\"field\":[{\"label\":\"Website Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Website Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"e.g. cloud services, databases\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (55,'cookie_title','please suggest me cookie title for this ##description## website which i can use in my website cookie','cookie','{\"field\":[{\"label\":\"Website name or info\",\"placeholder\":\"e.g. example website \",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (56,'cookie_description','please suggest me Cookie description for this cookie title ##title## which i can use in my website cookie','cookie','{\"field\":[{\"label\":\"Cookie Title \",\"placeholder\":\"e.g. example website \",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (57,'strictly_cookie_title','please suggest me only Strictly Cookie Title for this ##description## website which i can use in my website cookie','cookie','{\"field\":[{\"label\":\"Website name or info\",\"placeholder\":\"e.g. example website \",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}',0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (58,'strictly_cookie_description','please suggest me Strictly Cookie description for this Strictly cookie title ##title## which i can use in my website cookie','cookie','{\"field\":[{\"label\":\"Strictly Cookie Title \",\"placeholder\":\"e.g. example website \",\"field_type\":\"text_box\",\"field_name\":\"title\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (59,'more_information_description','I need assistance in crafting compelling content for my ##web_name## website\'s \'Contact Us\' page of my website. The page should provide relevant information to users, encourage them to reach out for inquiries, support, and feedback, and reflect the unique value proposition of my business.','cookie','{\"field\":[{\"label\":\"Websit Name\",\"placeholder\":\"e.g. example website \",\"field_type\":\"text_box\",\"field_name\":\"web_name\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (60,'content','generate email template for ##type##','email template','{\"field\":[{\"label\":\"Email Type\",\"placeholder\":\"e.g. new user,new client\",\"field_type\":\"text_box\",\"field_name\":\"type\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (61,'contract_description','generate contract brief description for title \'##contract_description##\' and cover all point that sutiable to contract title','contracts','{\"field\":[{\"label\":\"Contract Description\",\"placeholder\":\"e.g. product return condition \",\"field_type\":\"textarea\",\"field_name\":\"contract_description\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (62,'comment','generate short and valuable comment for contract title \'##name##\' and focus on this ##comment##','contracts','{\"field\":[{\"label\":\"Contract Comment\",\"placeholder\":\"e.g. product return condition \",\"field_type\":\"textarea\",\"field_name\":\"comment\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (63,'note','generate short and valuable note for contract title \'##note##\'','contracts','{\"field\":[{\"label\":\"Contract Name\",\"placeholder\":\"e.g. product return condition \",\"field_type\":\"textarea\",\"field_name\":\"note\"}]}',1,'2024-05-29 04:33:17','2024-05-29 04:33:17'); /*!40000 ALTER TABLE `template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `termination_types` -- DROP TABLE IF EXISTS `termination_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `termination_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `termination_types` -- LOCK TABLES `termination_types` WRITE; /*!40000 ALTER TABLE `termination_types` DISABLE KEYS */; /*!40000 ALTER TABLE `termination_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `terminations` -- DROP TABLE IF EXISTS `terminations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `terminations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `notice_date` date NOT NULL, `termination_date` date NOT NULL, `termination_type` varchar(191) NOT NULL, `description` longtext NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `terminations` -- LOCK TABLES `terminations` WRITE; /*!40000 ALTER TABLE `terminations` DISABLE KEYS */; /*!40000 ALTER TABLE `terminations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ticket_replies` -- DROP TABLE IF EXISTS `ticket_replies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `ticket_replies` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ticket_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `description` text DEFAULT NULL, `attachment` varchar(191) DEFAULT NULL, `created_by` int(11) NOT NULL, `is_read` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ticket_replies` -- LOCK TABLES `ticket_replies` WRITE; /*!40000 ALTER TABLE `ticket_replies` DISABLE KEYS */; /*!40000 ALTER TABLE `ticket_replies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tickets` -- DROP TABLE IF EXISTS `tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tickets` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `employee_id` int(11) NOT NULL, `priority` varchar(191) NOT NULL, `end_date` date NOT NULL, `description` text DEFAULT NULL, `attachment` varchar(191) DEFAULT NULL, `ticket_code` varchar(191) NOT NULL, `ticket_created` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL, `status` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tickets` -- LOCK TABLES `tickets` WRITE; /*!40000 ALTER TABLE `tickets` DISABLE KEYS */; /*!40000 ALTER TABLE `tickets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_sheets` -- DROP TABLE IF EXISTS `time_sheets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `time_sheets` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL DEFAULT 0, `date` date NOT NULL, `hours` double(8,2) NOT NULL DEFAULT 0.00, `remark` text DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_sheets` -- LOCK TABLES `time_sheets` WRITE; /*!40000 ALTER TABLE `time_sheets` DISABLE KEYS */; /*!40000 ALTER TABLE `time_sheets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trainers` -- DROP TABLE IF EXISTS `trainers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `trainers` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch` varchar(191) NOT NULL, `firstname` varchar(191) NOT NULL, `lastname` varchar(191) NOT NULL, `contact` varchar(191) NOT NULL, `email` varchar(191) NOT NULL, `address` text DEFAULT NULL, `expertise` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trainers` -- LOCK TABLES `trainers` WRITE; /*!40000 ALTER TABLE `trainers` DISABLE KEYS */; /*!40000 ALTER TABLE `trainers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `training_types` -- DROP TABLE IF EXISTS `training_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `training_types` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `training_types` -- LOCK TABLES `training_types` WRITE; /*!40000 ALTER TABLE `training_types` DISABLE KEYS */; /*!40000 ALTER TABLE `training_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trainings` -- DROP TABLE IF EXISTS `trainings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `trainings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `branch` int(11) NOT NULL, `trainer_option` int(11) NOT NULL, `training_type` int(11) NOT NULL, `trainer` int(11) NOT NULL, `training_cost` double(15,2) NOT NULL DEFAULT 0.00, `employee` int(11) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `description` text DEFAULT NULL, `performance` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 0, `remarks` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trainings` -- LOCK TABLES `trainings` WRITE; /*!40000 ALTER TABLE `trainings` DISABLE KEYS */; /*!40000 ALTER TABLE `trainings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transaction_orders` -- DROP TABLE IF EXISTS `transaction_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `transaction_orders` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `req_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `req_user_id` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `date` date DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transaction_orders` -- LOCK TABLES `transaction_orders` WRITE; /*!40000 ALTER TABLE `transaction_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `transaction_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transfer_balances` -- DROP TABLE IF EXISTS `transfer_balances`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `transfer_balances` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_account_id` int(11) NOT NULL, `to_account_id` int(11) NOT NULL, `date` date NOT NULL, `amount` double(15,2) NOT NULL, `payment_type_id` int(11) NOT NULL, `referal_id` varchar(191) DEFAULT NULL, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transfer_balances` -- LOCK TABLES `transfer_balances` WRITE; /*!40000 ALTER TABLE `transfer_balances` DISABLE KEYS */; /*!40000 ALTER TABLE `transfer_balances` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transfers` -- DROP TABLE IF EXISTS `transfers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `transfers` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `branch_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `transfer_date` date NOT NULL, `description` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transfers` -- LOCK TABLES `transfers` WRITE; /*!40000 ALTER TABLE `transfers` DISABLE KEYS */; /*!40000 ALTER TABLE `transfers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `travels` -- DROP TABLE IF EXISTS `travels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `travels` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `employee_id` int(11) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `purpose_of_visit` varchar(191) NOT NULL, `place_of_visit` varchar(191) NOT NULL, `description` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `travels` -- LOCK TABLES `travels` WRITE; /*!40000 ALTER TABLE `travels` DISABLE KEYS */; /*!40000 ALTER TABLE `travels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_coupons` -- DROP TABLE IF EXISTS `user_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `user_coupons` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user` int(11) NOT NULL, `coupon` int(11) NOT NULL, `order` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_coupons` -- LOCK TABLES `user_coupons` WRITE; /*!40000 ALTER TABLE `user_coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `user_coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_email_templates` -- DROP TABLE IF EXISTS `user_email_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `user_email_templates` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `template_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_email_templates` -- LOCK TABLES `user_email_templates` WRITE; /*!40000 ALTER TABLE `user_email_templates` DISABLE KEYS */; INSERT INTO `user_email_templates` VALUES (1,1,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (2,2,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (3,3,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (4,4,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (5,5,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (6,6,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (7,7,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (8,8,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (9,9,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (10,10,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (11,11,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (12,12,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (13,13,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (14,14,2,1,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (15,1,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (16,2,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (17,3,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (18,4,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (19,5,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (20,6,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (21,7,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (22,8,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (23,9,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (24,10,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (25,11,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (26,12,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (27,13,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (28,14,2,0,'2024-05-29 04:33:17','2024-05-29 04:33:17'), (29,1,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (30,2,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (31,3,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (32,4,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (33,5,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (34,6,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (35,7,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (36,8,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (37,9,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (38,10,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (39,11,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (40,12,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (41,13,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (42,14,2,1,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (43,1,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (44,2,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (45,3,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (46,4,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (47,5,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (48,6,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (49,7,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (50,8,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (51,9,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (52,10,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (53,11,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (54,12,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (55,13,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (56,14,4,0,'2025-02-05 16:22:54','2025-02-05 16:22:54'); /*!40000 ALTER TABLE `user_email_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `email` varchar(191) NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(191) DEFAULT NULL, `type` varchar(191) NOT NULL, `avatar` varchar(191) NOT NULL DEFAULT 'avatar.png', `lang` varchar(191) NOT NULL, `plan` int(11) DEFAULT NULL, `plan_expire_date` date DEFAULT NULL, `requested_plan` int(11) NOT NULL DEFAULT 0, `trial_expire_date` date DEFAULT NULL, `trial_plan` int(11) NOT NULL DEFAULT 0, `is_login_enable` int(11) NOT NULL DEFAULT 1, `storage_limit` double(20,2) NOT NULL DEFAULT 0.00, `last_login` timestamp NULL DEFAULT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `referral_code` int(11) NOT NULL DEFAULT 0, `used_referral_code` int(11) NOT NULL DEFAULT 0, `commission_amount` int(11) NOT NULL DEFAULT 0, `active_status` tinyint(1) NOT NULL DEFAULT 0, `is_disable` int(11) NOT NULL DEFAULT 1, `dark_mode` tinyint(1) NOT NULL DEFAULT 0, `messenger_color` varchar(191) NOT NULL DEFAULT '#2180f3', `created_by` varchar(191) NOT NULL, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'Super Admin','superadmin@example.com','2024-05-29 04:33:12','$2y$10$j0hph0pZBfKPWWJlqXAIBOCH88VM.ncTAuTGfU9OuhsKG0ySvFt5u','super admin','','en',NULL,NULL,0,NULL,0,1,0.00,NULL,1,0,0,0,0,1,0,'#2180f3','0',NULL,'2024-05-29 04:33:12','2024-05-29 04:33:12'), (2,'company','company@example.com','2024-05-29 04:33:14','$2y$10$ApP9Mnt2KQQpM5g1yMae7.FX8DW15XGXuWP24OAf7pXOjBvAO9doa','company','','en',1,NULL,0,NULL,0,1,0.00,NULL,1,0,0,0,0,1,0,'#2180f3','1',NULL,'2024-05-29 04:33:14','2024-05-29 04:33:14'), (3,'hr','hr@example.com','2024-05-29 04:33:15','$2y$10$Z.5izwewvDehMhalpXDdBuqCRH9mrx7/Towp3wZKUpNat.nTEu62.','hr','','en',NULL,NULL,0,NULL,0,1,0.00,NULL,1,0,0,0,0,1,0,'#2180f3','2',NULL,'2024-05-29 04:33:15','2024-05-29 04:33:15'), (4,'asfasf','caesarapf@gmail.com','2025-02-05 04:22:54','$2y$10$1jY9fEImBEeHXfcQHFFzveVRLs7sZJgbPb5vcJVB8VYNaouJat.Ce','company','avatar.png','',1,NULL,0,NULL,0,1,0.00,NULL,1,943470,0,0,0,1,0,'#2180f3','1',NULL,'2025-02-05 16:22:54','2025-02-05 16:22:54'), (5,'asfasf','cae@gmail.com','2025-02-05 16:25:07','$2y$10$ewg422ltPWHkCasWprlCweiJRLgFortn3iIUb4MB7jLavYyyX4.di','super admin','avatar.png','en',NULL,NULL,0,NULL,0,1,0.00,NULL,1,0,0,0,0,1,0,'#2180f3','4',NULL,'2025-02-05 16:25:07','2025-02-05 16:25:07'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `warnings` -- DROP TABLE IF EXISTS `warnings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `warnings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `warning_to` int(11) NOT NULL, `warning_by` int(11) NOT NULL, `subject` varchar(191) NOT NULL, `warning_date` date NOT NULL, `description` varchar(191) NOT NULL, `created_by` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `warnings` -- LOCK TABLES `warnings` WRITE; /*!40000 ALTER TABLE `warnings` DISABLE KEYS */; /*!40000 ALTER TABLE `warnings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webhooks` -- DROP TABLE IF EXISTS `webhooks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `webhooks` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `module` text NOT NULL, `url` text NOT NULL, `method` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webhooks` -- LOCK TABLES `webhooks` WRITE; /*!40000 ALTER TABLE `webhooks` DISABLE KEYS */; /*!40000 ALTER TABLE `webhooks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zoom_meetings` -- DROP TABLE IF EXISTS `zoom_meetings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `zoom_meetings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) DEFAULT NULL, `meeting_id` varchar(191) NOT NULL DEFAULT '0', `user_id` varchar(191) NOT NULL DEFAULT '0', `password` varchar(191) DEFAULT NULL, `start_date` timestamp NOT NULL DEFAULT current_timestamp(), `duration` int(11) NOT NULL DEFAULT 0, `start_url` text DEFAULT NULL, `join_url` varchar(191) DEFAULT NULL, `status` varchar(191) DEFAULT 'waiting', `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zoom_meetings` -- LOCK TABLES `zoom_meetings` WRITE; /*!40000 ALTER TABLE `zoom_meetings` DISABLE KEYS */; /*!40000 ALTER TABLE `zoom_meetings` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-05-03 18:32:53