D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
erp.dentostock.com
/
Filename :
u827283894_erp.sql
back
Copy
-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Jul 29, 2025 at 08:23 AM -- Server version: 10.11.10-MariaDB -- PHP Version: 7.2.34 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `u827283894_erp` -- -- -------------------------------------------------------- -- -- Table structure for table `activity_logs` -- CREATE TABLE `activity_logs` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `user_type` text NOT NULL, `project_id` bigint(20) UNSIGNED NOT NULL, `log_type` varchar(255) NOT NULL, `remark` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `add_ons` -- CREATE TABLE `add_ons` ( `id` bigint(20) UNSIGNED NOT NULL, `module` varchar(255) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `monthly_price` varchar(255) DEFAULT NULL, `yearly_price` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `add_ons` -- INSERT INTO `add_ons` (`id`, `module`, `name`, `monthly_price`, `yearly_price`, `created_at`, `updated_at`) VALUES (1, 'LandingPage', 'CMS', '0', '0', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (2, 'Account', 'Accounting', '0', '0', '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (3, 'Hrm', 'HRM', '0', '0', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (4, 'Lead', 'CRM', '0', '0', '2024-08-11 08:23:04', '2024-08-11 08:23:04'), (5, 'Paypal', 'PayPal', '0', '0', '2024-08-11 08:23:08', '2024-08-11 08:23:08'), (6, 'Pos', 'POS', '0', '0', '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (7, 'ProductService', 'Product Service', '0', '0', '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (8, 'Stripe', 'Stripe', '0', '0', '2024-08-11 08:23:12', '2024-08-11 08:23:12'), (9, 'Taskly', 'Project', '0', '0', '2024-08-11 08:23:14', '2024-08-11 08:23:14'); -- -------------------------------------------------------- -- -- Table structure for table `allowances` -- CREATE TABLE `allowances` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `allowance_option` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `allowance_options` -- CREATE TABLE `allowance_options` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `allowance_taxs` -- CREATE TABLE `allowance_taxs` ( `id` bigint(20) UNSIGNED NOT NULL, `description` text DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `announcements` -- CREATE TABLE `announcements` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `branch_id` int(11) NOT NULL, `department_id` varchar(255) NOT NULL, `employee_id` varchar(255) NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `announcement_employees` -- CREATE TABLE `announcement_employees` ( `id` bigint(20) UNSIGNED NOT NULL, `announcement_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `api_key_settings` -- CREATE TABLE `api_key_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `key` longtext DEFAULT NULL, `created_by` varchar(255) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attendances` -- CREATE TABLE `attendances` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `date` date NOT NULL, `status` varchar(255) NOT NULL, `clock_in` time DEFAULT NULL, `clock_out` time DEFAULT NULL, `late` time DEFAULT NULL, `early_leaving` time DEFAULT NULL, `overtime` time DEFAULT NULL, `total_rest` time DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `awards` -- CREATE TABLE `awards` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `award_type` varchar(255) NOT NULL, `date` date NOT NULL, `gift` varchar(255) NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `award_types` -- CREATE TABLE `award_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bank_accounts` -- CREATE TABLE `bank_accounts` ( `id` bigint(20) UNSIGNED NOT NULL, `holder_name` varchar(255) NOT NULL, `chart_account_id` int(11) NOT NULL DEFAULT 0, `bank_name` varchar(255) DEFAULT NULL, `bank_type` varchar(255) NOT NULL, `wallet_type` varchar(255) DEFAULT NULL, `account_number` varchar(255) DEFAULT NULL, `opening_balance` double(15,2) NOT NULL DEFAULT 0.00, `contact_number` varchar(255) DEFAULT NULL, `bank_address` text NOT NULL, `bank_branch` varchar(255) DEFAULT NULL, `swift` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bank_accounts` -- INSERT INTO `bank_accounts` (`id`, `holder_name`, `chart_account_id`, `bank_name`, `bank_type`, `wallet_type`, `account_number`, `opening_balance`, `contact_number`, `bank_address`, `bank_branch`, `swift`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'cash', 0, '', '', NULL, '-', 0.00, '-', '-', NULL, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (2, 'cash', 0, '', '', NULL, '-', 0.00, '-', '-', NULL, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-10 14:13:49'), (3, 'ICS', 114, 'Al Ahly', 'bank', NULL, '2501554125455', 0.00, '+201145270392', '2 kjjkkl ,lklj', 'Haram', 'EGC1245', 2, 6, '2024-10-10 13:32:13', '2024-10-10 13:32:13'), (4, 'cash', 0, '', '', NULL, '-', 0.00, '-', '-', NULL, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (5, 'cash', 0, '', '', NULL, '-', 0.00, '-', '-', NULL, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `bank_transfers` -- CREATE TABLE `bank_transfers` ( `id` bigint(20) UNSIGNED NOT NULL, `from_account` int(11) NOT NULL DEFAULT 0, `to_account` int(11) NOT NULL DEFAULT 0, `from_type` varchar(255) NOT NULL, `to_type` varchar(255) NOT NULL, `amount` double(15,2) NOT NULL DEFAULT 0.00, `date` date NOT NULL, `payment_method` int(11) NOT NULL DEFAULT 0, `reference` varchar(255) DEFAULT NULL, `description` longtext DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bank_transfer_payments` -- CREATE TABLE `bank_transfer_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` varchar(255) NOT NULL, `user_id` int(11) NOT NULL, `request` longtext NOT NULL, `status` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `payment_type` varchar(255) NOT NULL DEFAULT 'Bank Transfer', `bank_accounts_id` varchar(255) NOT NULL DEFAULT '0', `price` double(8,2) NOT NULL DEFAULT 0.00, `price_currency` varchar(255) NOT NULL DEFAULT 'USD', `attachment` varchar(255) DEFAULT NULL, `created_by` int(11) NOT NULL, `workspace` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bills` -- CREATE TABLE `bills` ( `id` bigint(20) UNSIGNED NOT NULL, `bill_id` varchar(255) NOT NULL DEFAULT '0', `vendor_id` int(11) NOT NULL, `user_id` int(11) DEFAULT NULL, `account_type` varchar(255) NOT NULL DEFAULT 'Accounting', `bill_date` date NOT NULL, `due_date` date NOT NULL, `order_number` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 0, `bill_shipping_display` int(11) NOT NULL DEFAULT 1, `send_date` date DEFAULT NULL, `discount_apply` int(11) NOT NULL DEFAULT 0, `bill_module` varchar(255) NOT NULL DEFAULT 'account', `category_id` int(11) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bills` -- INSERT INTO `bills` (`id`, `bill_id`, `vendor_id`, `user_id`, `account_type`, `bill_date`, `due_date`, `order_number`, `status`, `bill_shipping_display`, `send_date`, `discount_apply`, `bill_module`, `category_id`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, '1', 1, 7, 'Accounting', '2024-10-10', '2024-10-10', 0, 0, 1, NULL, 0, 'account', 7, 2, 6, '2024-10-10 11:28:39', '2024-10-10 11:28:39'), (2, '2', 2, 9, 'Accounting', '2024-10-10', '2024-10-10', 0, 0, 1, NULL, 0, 'account', 7, 2, 6, '2024-10-10 12:56:18', '2024-10-10 12:56:18'); -- -------------------------------------------------------- -- -- Table structure for table `bill_accounts` -- CREATE TABLE `bill_accounts` ( `id` bigint(20) UNSIGNED NOT NULL, `chart_account_id` int(11) NOT NULL DEFAULT 0, `price` double(8,2) NOT NULL DEFAULT 0.00, `description` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `ref_id` int(11) NOT NULL DEFAULT 0, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bill_attechments` -- CREATE TABLE `bill_attechments` ( `id` bigint(20) UNSIGNED NOT NULL, `bill_id` varchar(255) NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `file_size` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bill_payments` -- CREATE TABLE `bill_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `bill_id` int(11) NOT NULL, `date` date NOT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `account_id` int(11) NOT NULL, `payment_method` int(11) NOT NULL, `reference` varchar(255) NOT NULL, `add_receipt` varchar(255) DEFAULT NULL, `description` longtext NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bill_products` -- CREATE TABLE `bill_products` ( `id` bigint(20) UNSIGNED NOT NULL, `bill_id` int(11) NOT NULL, `product_type` varchar(255) DEFAULT NULL, `product_id` int(11) NOT NULL, `quantity` int(11) NOT NULL, `tax` varchar(255) DEFAULT NULL, `discount` double(8,2) NOT NULL DEFAULT 0.00, `price` double(8,2) NOT NULL DEFAULT 0.00, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bill_products` -- INSERT INTO `bill_products` (`id`, `bill_id`, `product_type`, `product_id`, `quantity`, `tax`, `discount`, `price`, `description`, `created_at`, `updated_at`) VALUES (1, 1, 'product', 5, 10, '3', 0.00, 35.00, '', '2024-10-10 11:28:39', '2024-10-10 11:28:39'), (2, 2, 'product', 2, 10, '3', 0.00, 100.00, '', '2024-10-10 12:56:18', '2024-10-10 12:56:18'); -- -------------------------------------------------------- -- -- Table structure for table `branches` -- CREATE TABLE `branches` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bug_comments` -- CREATE TABLE `bug_comments` ( `id` bigint(20) UNSIGNED NOT NULL, `comment` text NOT NULL, `bug_id` int(11) NOT NULL, `user_type` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bug_files` -- CREATE TABLE `bug_files` ( `id` bigint(20) UNSIGNED NOT NULL, `file` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `extension` varchar(255) NOT NULL, `file_size` varchar(255) NOT NULL, `bug_id` int(11) NOT NULL, `user_type` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bug_reports` -- CREATE TABLE `bug_reports` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `priority` varchar(255) NOT NULL, `description` text NOT NULL, `assign_to` int(11) NOT NULL, `project_id` int(11) NOT NULL, `status` varchar(255) NOT NULL DEFAULT 'unconfirmed', `order` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bug_stages` -- CREATE TABLE `bug_stages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL DEFAULT '#051c4b', `complete` tinyint(1) NOT NULL, `workspace_id` bigint(20) UNSIGNED NOT NULL, `order` int(11) NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bug_stages` -- INSERT INTO `bug_stages` (`id`, `name`, `color`, `complete`, `workspace_id`, `order`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Unconfirmed', '#77b6ea', 0, 1, 0, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (2, 'Confirmed', '#6e00ff', 0, 1, 1, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (3, 'In Progress', '#3cb8d9', 0, 1, 2, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (4, 'Resolved', '#37b37e', 0, 1, 3, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (5, 'Verified', '#545454', 1, 1, 4, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (6, 'Unconfirmed', '#77b6ea', 0, 2, 0, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (7, 'Confirmed', '#6e00ff', 0, 2, 1, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (8, 'In Progress', '#3cb8d9', 0, 2, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (9, 'Resolved', '#37b37e', 0, 2, 3, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (10, 'Verified', '#545454', 1, 2, 4, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (11, 'Unconfirmed', '#77b6ea', 0, 3, 0, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (12, 'Confirmed', '#6e00ff', 0, 3, 1, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (13, 'In Progress', '#3cb8d9', 0, 3, 2, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (14, 'Resolved', '#37b37e', 0, 3, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (15, 'Verified', '#545454', 1, 3, 4, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (16, 'Unconfirmed', '#77b6ea', 0, 4, 0, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (17, 'Confirmed', '#6e00ff', 0, 4, 1, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (18, 'In Progress', '#3cb8d9', 0, 4, 2, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (19, 'Resolved', '#37b37e', 0, 4, 3, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (20, 'Verified', '#545454', 1, 4, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `type` varchar(255) NOT NULL DEFAULT '0', `color` varchar(255) NOT NULL DEFAULT '#fc544b', `chart_account_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `name`, `type`, `color`, `chart_account_id`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES (2, 'Extreme', '0', '#000000', 0, 2, 1, '2024-09-09 10:21:00', '2024-09-09 10:21:00'), (3, 'بقوليات', '0', '#000000', 0, 6, 2, '2024-10-09 15:26:33', '2024-10-09 15:26:33'), (7, 'Purchase invoice', '2', '#000000', 186, 6, 2, '2024-10-09 18:30:56', '2024-10-09 18:30:56'), (8, 'Sales Invoice', '2', '#000000', 224, 6, 2, '2024-10-09 18:32:05', '2024-10-09 18:32:05'), (9, 'Sales Invoice', '1', '#000000', 162, 6, 2, '2024-10-09 18:42:27', '2024-10-09 18:42:27'); -- -------------------------------------------------------- -- -- Table structure for table `chart_of_accounts` -- CREATE TABLE `chart_of_accounts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `code` int(11) NOT NULL DEFAULT 0, `type` int(11) NOT NULL DEFAULT 0, `sub_type` int(11) NOT NULL DEFAULT 0, `parent` int(11) NOT NULL DEFAULT 0, `is_enabled` int(11) NOT NULL DEFAULT 1, `description` text DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `chart_of_accounts` -- INSERT INTO `chart_of_accounts` (`id`, `name`, `code`, `type`, `sub_type`, `parent`, `is_enabled`, `description`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Checking Account', 1060, 1, 1, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (2, 'Petty Cash', 1065, 1, 1, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (3, 'Account Receivables', 1200, 1, 1, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (4, 'Allowance for doubtful accounts', 1205, 1, 1, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (5, 'Inventory', 1510, 1, 2, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (6, 'Stock of Raw Materials', 1520, 1, 2, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (7, 'Stock of Work In Progress', 1530, 1, 2, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (8, 'Stock of Finished Goods', 1540, 1, 2, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (9, 'Goods Received Clearing account', 1550, 1, 2, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (10, 'Land and Buildings', 1810, 1, 3, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (11, 'Office Furniture and Equipement', 1820, 1, 3, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (12, 'Accum.depreciation-Furn. and Equip', 1825, 1, 3, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (13, 'Motor Vehicle', 1840, 1, 3, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (14, 'Accum.depreciation-Motor Vehicle', 1845, 1, 3, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (15, 'Account Payable', 2100, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (16, 'Deferred Income', 2105, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (17, 'Accrued Income Tax-Central', 2110, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (18, 'Income Tax Payable', 2120, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (19, 'Accrued Franchise Tax', 2130, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (20, 'Vat Provision', 2140, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (21, 'Purchase Tax', 2145, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (22, 'VAT Pay / Refund', 2150, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (23, 'Zero Rated', 2151, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (24, 'Capital import', 2152, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (25, 'Standard Import', 2153, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (26, 'Capital Standard', 2154, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (27, 'Vat Exempt', 2155, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (28, 'Accrued Use Tax Payable', 2160, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (29, 'Accrued Wages', 2210, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (30, 'Accrued Comp Time', 2220, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (31, 'Accrued Holiday Pay', 2230, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (32, 'Accrued Vacation Pay', 2240, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (33, 'Accr. Benefits - Central Provident Fund', 2310, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (34, 'Accr. Benefits - Stock Purchase', 2320, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (35, 'Accr. Benefits - Med, Den', 2330, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (36, 'Accr. Benefits - Payroll Taxes', 2340, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (37, 'Accr. Benefits - Credit Union', 2350, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (38, 'Accr. Benefits - Savings Bond', 2360, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (39, 'Accr. Benefits - Group Insurance', 2370, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (40, 'Accr. Benefits - Charity Cont.', 2380, 2, 4, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (41, 'Bank Loans', 2620, 2, 5, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (42, 'Loans from Shareholders', 2680, 2, 5, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (43, 'Common Shares', 3350, 2, 6, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (44, 'Reserves and Surplus', 3590, 2, 7, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (45, 'Owners Drawings', 3595, 2, 7, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (46, 'Opening Balances and adjustments', 3020, 3, 8, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (47, 'Owners Contribution', 3025, 3, 8, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (48, 'Profit and Loss ( current Year)', 3030, 3, 8, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (49, 'Retained income', 3035, 3, 8, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (50, 'Sales Income', 4010, 4, 9, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (51, 'Service Income', 4020, 4, 9, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (52, 'Shipping and Handling', 4430, 4, 10, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (53, 'Sundry Income', 4435, 4, 10, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (54, 'Interest Received', 4440, 4, 10, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (55, 'Foreign Exchange Gain', 4450, 4, 10, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (56, 'Unallocated Income', 4500, 4, 10, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (57, 'Discounts Received', 4510, 4, 10, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (58, 'Cost of Sales- On Services', 5005, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (59, 'Cost of Sales - Purchases', 5010, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (60, 'Operating Costs', 5015, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (61, 'Material Usage Varaiance', 5020, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (62, 'Breakage and Replacement Costs', 5025, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (63, 'Consumable Materials', 5030, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (64, 'Sub-contractor Costs', 5035, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (65, 'Purchase Price Variance', 5040, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (66, 'Direct Labour - COS', 5045, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (67, 'Purchases of Materials', 5050, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (68, 'Discounts Received', 5060, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (69, 'Freight Costs', 5100, 5, 11, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (70, 'Salaries and Wages', 5410, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (71, 'Directors Fees & Remuneration', 5415, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (72, 'Wages - Overtime', 5420, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (73, 'Members Salaries', 5425, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (74, 'UIF Payments', 5430, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (75, 'Payroll Taxes', 5440, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (76, 'Workers Compensation ( Coida )', 5450, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (77, 'Normal Taxation Paid', 5460, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (78, 'General Benefits', 5470, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (79, 'Provisional Tax Paid', 5510, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (80, 'Inc Tax Exp - State', 5520, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (81, 'Taxes - Real Estate', 5530, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (82, 'Taxes - Personal Property', 5540, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (83, 'Taxes - Franchise', 5550, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (84, 'Taxes - Foreign Withholding', 5560, 6, 12, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (85, 'Accounting Fees', 5610, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (86, 'Advertising and Promotions', 5615, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (87, 'Bad Debts', 5620, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (88, 'Courier and Postage', 5625, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (89, 'Depreciation Expense', 5660, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (90, 'Insurance Expense', 5685, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (91, 'Bank Charges', 5690, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (92, 'Interest Paid', 5695, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (93, 'Office Expenses - Consumables', 5700, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (94, 'Printing and Stationary', 5705, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (95, 'Security Expenses', 5710, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (96, 'Subscription - Membership Fees', 5715, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (97, 'Electricity, Gas and Water', 5755, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (98, 'Rent Paid', 5760, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (99, 'Repairs and Maintenance', 5765, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (100, 'Motor Vehicle Expenses', 5770, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (101, 'Petrol and Oil', 5771, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (102, 'Equipment Hire - Rental', 5775, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (103, 'Telephone and Internet', 5780, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (104, 'Travel and Accommodation', 5785, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (105, 'Meals and Entertainment', 5786, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (106, 'Staff Training', 5787, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (107, 'Utilities', 5790, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (108, 'Computer Expenses', 5791, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (109, 'Registrations', 5795, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (110, 'Licenses', 5800, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (111, 'Foreign Exchange Loss', 5810, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (112, 'Profit and Loss', 9990, 6, 13, 0, 1, NULL, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (113, 'Checking Account', 1060, 7, 14, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (114, 'Petty Cash', 1065, 7, 14, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (115, 'Account Receivables', 1200, 7, 14, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (116, 'Allowance for doubtful accounts', 1205, 7, 14, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (117, 'Inventory', 1510, 7, 15, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (118, 'Stock of Raw Materials', 1520, 7, 15, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (119, 'Stock of Work In Progress', 1530, 7, 15, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (120, 'Stock of Finished Goods', 1540, 7, 15, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (121, 'Goods Received Clearing account', 1550, 7, 15, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (122, 'Land and Buildings', 1810, 7, 16, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (123, 'Office Furniture and Equipement', 1820, 7, 16, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (124, 'Accum.depreciation-Furn. and Equip', 1825, 7, 16, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (125, 'Motor Vehicle', 1840, 7, 16, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (126, 'Accum.depreciation-Motor Vehicle', 1845, 7, 16, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (127, 'Account Payable', 2100, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (128, 'Deferred Income', 2105, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (129, 'Accrued Income Tax-Central', 2110, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (130, 'Income Tax Payable', 2120, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (131, 'Accrued Franchise Tax', 2130, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (132, 'Vat Provision', 2140, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (133, 'Purchase Tax', 2145, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (134, 'VAT Pay / Refund', 2150, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (135, 'Zero Rated', 2151, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (136, 'Capital import', 2152, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (137, 'Standard Import', 2153, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (138, 'Capital Standard', 2154, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (139, 'Vat Exempt', 2155, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (140, 'Accrued Use Tax Payable', 2160, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (141, 'Accrued Wages', 2210, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (142, 'Accrued Comp Time', 2220, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (143, 'Accrued Holiday Pay', 2230, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (144, 'Accrued Vacation Pay', 2240, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (145, 'Accr. Benefits - Central Provident Fund', 2310, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (146, 'Accr. Benefits - Stock Purchase', 2320, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (147, 'Accr. Benefits - Med, Den', 2330, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (148, 'Accr. Benefits - Payroll Taxes', 2340, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (149, 'Accr. Benefits - Credit Union', 2350, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (150, 'Accr. Benefits - Savings Bond', 2360, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (151, 'Accr. Benefits - Group Insurance', 2370, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (152, 'Accr. Benefits - Charity Cont.', 2380, 8, 17, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (153, 'Bank Loans', 2620, 8, 18, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (154, 'Loans from Shareholders', 2680, 8, 18, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (155, 'Common Shares', 3350, 8, 19, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (156, 'Reserves and Surplus', 3590, 8, 20, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (157, 'Owners Drawings', 3595, 8, 20, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (158, 'Opening Balances and adjustments', 3020, 9, 21, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (159, 'Owners Contribution', 3025, 9, 21, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (160, 'Profit and Loss ( current Year)', 3030, 9, 21, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (161, 'Retained income', 3035, 9, 21, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (162, 'Sales Income', 4010, 10, 22, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (163, 'Service Income', 4020, 10, 22, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (164, 'Shipping and Handling', 4430, 10, 23, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (165, 'Sundry Income', 4435, 10, 23, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (166, 'Interest Received', 4440, 10, 23, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (167, 'Foreign Exchange Gain', 4450, 10, 23, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (168, 'Unallocated Income', 4500, 10, 23, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (169, 'Discounts Received', 4510, 10, 23, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (170, 'Cost of Sales- On Services', 5005, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (171, 'Cost of Sales - Purchases', 5010, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (172, 'Operating Costs', 5015, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (173, 'Material Usage Varaiance', 5020, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (174, 'Breakage and Replacement Costs', 5025, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (175, 'Consumable Materials', 5030, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (176, 'Sub-contractor Costs', 5035, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (177, 'Purchase Price Variance', 5040, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (178, 'Direct Labour - COS', 5045, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (179, 'Purchases of Materials', 5050, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (180, 'Discounts Received', 5060, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (181, 'Freight Costs', 5100, 11, 24, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (182, 'Salaries and Wages', 5410, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (183, 'Directors Fees & Remuneration', 5415, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (184, 'Wages - Overtime', 5420, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (185, 'Members Salaries', 5425, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (186, 'UIF Payments', 5430, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (187, 'Payroll Taxes', 5440, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (188, 'Workers Compensation ( Coida )', 5450, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (189, 'Normal Taxation Paid', 5460, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (190, 'General Benefits', 5470, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (191, 'Provisional Tax Paid', 5510, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (192, 'Inc Tax Exp - State', 5520, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (193, 'Taxes - Real Estate', 5530, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (194, 'Taxes - Personal Property', 5540, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (195, 'Taxes - Franchise', 5550, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (196, 'Taxes - Foreign Withholding', 5560, 12, 25, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (197, 'Accounting Fees', 5610, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (198, 'Advertising and Promotions', 5615, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (199, 'Bad Debts', 5620, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (200, 'Courier and Postage', 5625, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (201, 'Depreciation Expense', 5660, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (202, 'Insurance Expense', 5685, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (203, 'Bank Charges', 5690, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (204, 'Interest Paid', 5695, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (205, 'Office Expenses - Consumables', 5700, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (206, 'Printing and Stationary', 5705, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (207, 'Security Expenses', 5710, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (208, 'Subscription - Membership Fees', 5715, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (209, 'Electricity, Gas and Water', 5755, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (210, 'Rent Paid', 5760, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (211, 'Repairs and Maintenance', 5765, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (212, 'Motor Vehicle Expenses', 5770, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (213, 'Petrol and Oil', 5771, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (214, 'Equipment Hire - Rental', 5775, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (215, 'Telephone and Internet', 5780, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (216, 'Travel and Accommodation', 5785, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (217, 'Meals and Entertainment', 5786, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (218, 'Staff Training', 5787, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (219, 'Utilities', 5790, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (220, 'Computer Expenses', 5791, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (221, 'Registrations', 5795, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (222, 'Licenses', 5800, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (223, 'Foreign Exchange Loss', 5810, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (224, 'Profit and Loss', 9990, 12, 26, 0, 1, NULL, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (225, 'Checking Account', 1060, 13, 27, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (226, 'Petty Cash', 1065, 13, 27, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (227, 'Account Receivables', 1200, 13, 27, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (228, 'Allowance for doubtful accounts', 1205, 13, 27, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (229, 'Inventory', 1510, 13, 28, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (230, 'Stock of Raw Materials', 1520, 13, 28, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (231, 'Stock of Work In Progress', 1530, 13, 28, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (232, 'Stock of Finished Goods', 1540, 13, 28, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (233, 'Goods Received Clearing account', 1550, 13, 28, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (234, 'Land and Buildings', 1810, 13, 29, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (235, 'Office Furniture and Equipement', 1820, 13, 29, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (236, 'Accum.depreciation-Furn. and Equip', 1825, 13, 29, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (237, 'Motor Vehicle', 1840, 13, 29, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (238, 'Accum.depreciation-Motor Vehicle', 1845, 13, 29, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (239, 'Account Payable', 2100, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (240, 'Deferred Income', 2105, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (241, 'Accrued Income Tax-Central', 2110, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (242, 'Income Tax Payable', 2120, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (243, 'Accrued Franchise Tax', 2130, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (244, 'Vat Provision', 2140, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (245, 'Purchase Tax', 2145, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (246, 'VAT Pay / Refund', 2150, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (247, 'Zero Rated', 2151, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (248, 'Capital import', 2152, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (249, 'Standard Import', 2153, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (250, 'Capital Standard', 2154, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (251, 'Vat Exempt', 2155, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (252, 'Accrued Use Tax Payable', 2160, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (253, 'Accrued Wages', 2210, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (254, 'Accrued Comp Time', 2220, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (255, 'Accrued Holiday Pay', 2230, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (256, 'Accrued Vacation Pay', 2240, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (257, 'Accr. Benefits - Central Provident Fund', 2310, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (258, 'Accr. Benefits - Stock Purchase', 2320, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (259, 'Accr. Benefits - Med, Den', 2330, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (260, 'Accr. Benefits - Payroll Taxes', 2340, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (261, 'Accr. Benefits - Credit Union', 2350, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (262, 'Accr. Benefits - Savings Bond', 2360, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (263, 'Accr. Benefits - Group Insurance', 2370, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (264, 'Accr. Benefits - Charity Cont.', 2380, 14, 30, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (265, 'Bank Loans', 2620, 14, 31, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (266, 'Loans from Shareholders', 2680, 14, 31, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (267, 'Common Shares', 3350, 14, 32, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (268, 'Reserves and Surplus', 3590, 14, 33, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (269, 'Owners Drawings', 3595, 14, 33, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (270, 'Opening Balances and adjustments', 3020, 15, 34, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (271, 'Owners Contribution', 3025, 15, 34, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (272, 'Profit and Loss ( current Year)', 3030, 15, 34, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (273, 'Retained income', 3035, 15, 34, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (274, 'Sales Income', 4010, 16, 35, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (275, 'Service Income', 4020, 16, 35, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (276, 'Shipping and Handling', 4430, 16, 36, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (277, 'Sundry Income', 4435, 16, 36, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (278, 'Interest Received', 4440, 16, 36, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (279, 'Foreign Exchange Gain', 4450, 16, 36, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (280, 'Unallocated Income', 4500, 16, 36, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (281, 'Discounts Received', 4510, 16, 36, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (282, 'Cost of Sales- On Services', 5005, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (283, 'Cost of Sales - Purchases', 5010, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (284, 'Operating Costs', 5015, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (285, 'Material Usage Varaiance', 5020, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (286, 'Breakage and Replacement Costs', 5025, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (287, 'Consumable Materials', 5030, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (288, 'Sub-contractor Costs', 5035, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (289, 'Purchase Price Variance', 5040, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (290, 'Direct Labour - COS', 5045, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (291, 'Purchases of Materials', 5050, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (292, 'Discounts Received', 5060, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (293, 'Freight Costs', 5100, 17, 37, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (294, 'Salaries and Wages', 5410, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (295, 'Directors Fees & Remuneration', 5415, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (296, 'Wages - Overtime', 5420, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (297, 'Members Salaries', 5425, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (298, 'UIF Payments', 5430, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (299, 'Payroll Taxes', 5440, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (300, 'Workers Compensation ( Coida )', 5450, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (301, 'Normal Taxation Paid', 5460, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (302, 'General Benefits', 5470, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (303, 'Provisional Tax Paid', 5510, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (304, 'Inc Tax Exp - State', 5520, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (305, 'Taxes - Real Estate', 5530, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (306, 'Taxes - Personal Property', 5540, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (307, 'Taxes - Franchise', 5550, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (308, 'Taxes - Foreign Withholding', 5560, 18, 38, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (309, 'Accounting Fees', 5610, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (310, 'Advertising and Promotions', 5615, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (311, 'Bad Debts', 5620, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (312, 'Courier and Postage', 5625, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (313, 'Depreciation Expense', 5660, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (314, 'Insurance Expense', 5685, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (315, 'Bank Charges', 5690, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (316, 'Interest Paid', 5695, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (317, 'Office Expenses - Consumables', 5700, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (318, 'Printing and Stationary', 5705, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (319, 'Security Expenses', 5710, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (320, 'Subscription - Membership Fees', 5715, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (321, 'Electricity, Gas and Water', 5755, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (322, 'Rent Paid', 5760, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (323, 'Repairs and Maintenance', 5765, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (324, 'Motor Vehicle Expenses', 5770, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (325, 'Petrol and Oil', 5771, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (326, 'Equipment Hire - Rental', 5775, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (327, 'Telephone and Internet', 5780, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (328, 'Travel and Accommodation', 5785, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (329, 'Meals and Entertainment', 5786, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (330, 'Staff Training', 5787, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (331, 'Utilities', 5790, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (332, 'Computer Expenses', 5791, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (333, 'Registrations', 5795, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (334, 'Licenses', 5800, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (335, 'Foreign Exchange Loss', 5810, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (336, 'Profit and Loss', 9990, 18, 39, 0, 1, NULL, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (337, 'Checking Account', 1060, 19, 40, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (338, 'Petty Cash', 1065, 19, 40, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (339, 'Account Receivables', 1200, 19, 40, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (340, 'Allowance for doubtful accounts', 1205, 19, 40, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (341, 'Inventory', 1510, 19, 41, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (342, 'Stock of Raw Materials', 1520, 19, 41, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (343, 'Stock of Work In Progress', 1530, 19, 41, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (344, 'Stock of Finished Goods', 1540, 19, 41, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (345, 'Goods Received Clearing account', 1550, 19, 41, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (346, 'Land and Buildings', 1810, 19, 42, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (347, 'Office Furniture and Equipement', 1820, 19, 42, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (348, 'Accum.depreciation-Furn. and Equip', 1825, 19, 42, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (349, 'Motor Vehicle', 1840, 19, 42, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (350, 'Accum.depreciation-Motor Vehicle', 1845, 19, 42, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (351, 'Account Payable', 2100, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (352, 'Deferred Income', 2105, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (353, 'Accrued Income Tax-Central', 2110, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (354, 'Income Tax Payable', 2120, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (355, 'Accrued Franchise Tax', 2130, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (356, 'Vat Provision', 2140, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (357, 'Purchase Tax', 2145, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (358, 'VAT Pay / Refund', 2150, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (359, 'Zero Rated', 2151, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (360, 'Capital import', 2152, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (361, 'Standard Import', 2153, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (362, 'Capital Standard', 2154, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (363, 'Vat Exempt', 2155, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (364, 'Accrued Use Tax Payable', 2160, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (365, 'Accrued Wages', 2210, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (366, 'Accrued Comp Time', 2220, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (367, 'Accrued Holiday Pay', 2230, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (368, 'Accrued Vacation Pay', 2240, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (369, 'Accr. Benefits - Central Provident Fund', 2310, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (370, 'Accr. Benefits - Stock Purchase', 2320, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (371, 'Accr. Benefits - Med, Den', 2330, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (372, 'Accr. Benefits - Payroll Taxes', 2340, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (373, 'Accr. Benefits - Credit Union', 2350, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (374, 'Accr. Benefits - Savings Bond', 2360, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (375, 'Accr. Benefits - Group Insurance', 2370, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (376, 'Accr. Benefits - Charity Cont.', 2380, 20, 43, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (377, 'Bank Loans', 2620, 20, 44, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (378, 'Loans from Shareholders', 2680, 20, 44, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (379, 'Common Shares', 3350, 20, 45, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (380, 'Reserves and Surplus', 3590, 20, 46, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (381, 'Owners Drawings', 3595, 20, 46, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (382, 'Opening Balances and adjustments', 3020, 21, 47, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (383, 'Owners Contribution', 3025, 21, 47, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (384, 'Profit and Loss ( current Year)', 3030, 21, 47, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (385, 'Retained income', 3035, 21, 47, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (386, 'Sales Income', 4010, 22, 48, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (387, 'Service Income', 4020, 22, 48, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (388, 'Shipping and Handling', 4430, 22, 49, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (389, 'Sundry Income', 4435, 22, 49, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (390, 'Interest Received', 4440, 22, 49, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (391, 'Foreign Exchange Gain', 4450, 22, 49, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (392, 'Unallocated Income', 4500, 22, 49, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (393, 'Discounts Received', 4510, 22, 49, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (394, 'Cost of Sales- On Services', 5005, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (395, 'Cost of Sales - Purchases', 5010, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (396, 'Operating Costs', 5015, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (397, 'Material Usage Varaiance', 5020, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (398, 'Breakage and Replacement Costs', 5025, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (399, 'Consumable Materials', 5030, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (400, 'Sub-contractor Costs', 5035, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (401, 'Purchase Price Variance', 5040, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (402, 'Direct Labour - COS', 5045, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (403, 'Purchases of Materials', 5050, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (404, 'Discounts Received', 5060, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (405, 'Freight Costs', 5100, 23, 50, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (406, 'Salaries and Wages', 5410, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (407, 'Directors Fees & Remuneration', 5415, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (408, 'Wages - Overtime', 5420, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (409, 'Members Salaries', 5425, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (410, 'UIF Payments', 5430, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (411, 'Payroll Taxes', 5440, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (412, 'Workers Compensation ( Coida )', 5450, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (413, 'Normal Taxation Paid', 5460, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (414, 'General Benefits', 5470, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (415, 'Provisional Tax Paid', 5510, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (416, 'Inc Tax Exp - State', 5520, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (417, 'Taxes - Real Estate', 5530, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (418, 'Taxes - Personal Property', 5540, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (419, 'Taxes - Franchise', 5550, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (420, 'Taxes - Foreign Withholding', 5560, 24, 51, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (421, 'Accounting Fees', 5610, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (422, 'Advertising and Promotions', 5615, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (423, 'Bad Debts', 5620, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (424, 'Courier and Postage', 5625, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (425, 'Depreciation Expense', 5660, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (426, 'Insurance Expense', 5685, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (427, 'Bank Charges', 5690, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (428, 'Interest Paid', 5695, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (429, 'Office Expenses - Consumables', 5700, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (430, 'Printing and Stationary', 5705, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (431, 'Security Expenses', 5710, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (432, 'Subscription - Membership Fees', 5715, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (433, 'Electricity, Gas and Water', 5755, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (434, 'Rent Paid', 5760, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (435, 'Repairs and Maintenance', 5765, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (436, 'Motor Vehicle Expenses', 5770, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (437, 'Petrol and Oil', 5771, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (438, 'Equipment Hire - Rental', 5775, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (439, 'Telephone and Internet', 5780, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (440, 'Travel and Accommodation', 5785, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (441, 'Meals and Entertainment', 5786, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (442, 'Staff Training', 5787, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (443, 'Utilities', 5790, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (444, 'Computer Expenses', 5791, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (445, 'Registrations', 5795, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (446, 'Licenses', 5800, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (447, 'Foreign Exchange Loss', 5810, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (448, 'Profit and Loss', 9990, 24, 52, 0, 1, NULL, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `chart_of_account_parents` -- CREATE TABLE `chart_of_account_parents` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `sub_type` int(11) NOT NULL DEFAULT 0, `type` int(11) NOT NULL DEFAULT 0, `account` int(11) NOT NULL DEFAULT 0, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chart_of_account_sub_types` -- CREATE TABLE `chart_of_account_sub_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL DEFAULT '1', `type` int(11) NOT NULL DEFAULT 0, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `chart_of_account_sub_types` -- INSERT INTO `chart_of_account_sub_types` (`id`, `name`, `type`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Current Asset', 1, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (2, 'Inventory Asset', 1, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (3, 'Non-current Asset', 1, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (4, 'Current Liabilities', 2, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (5, 'Long Term Liabilities', 2, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (6, 'Share Capital', 2, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (7, 'Retained Earnings', 2, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (8, 'Owners Equity', 3, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (9, 'Sales Revenue', 4, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (10, 'Other Revenue', 4, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (11, 'Costs of Goods Sold', 5, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (12, 'Payroll Expenses', 6, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (13, 'General and Administrative expenses', 6, 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (14, 'Current Asset', 7, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (15, 'Inventory Asset', 7, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (16, 'Non-current Asset', 7, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (17, 'Current Liabilities', 8, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (18, 'Long Term Liabilities', 8, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (19, 'Share Capital', 8, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (20, 'Retained Earnings', 8, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (21, 'Owners Equity', 9, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (22, 'Sales Revenue', 10, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (23, 'Other Revenue', 10, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (24, 'Costs of Goods Sold', 11, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (25, 'Payroll Expenses', 12, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (26, 'General and Administrative expenses', 12, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (27, 'Current Asset', 13, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (28, 'Inventory Asset', 13, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (29, 'Non-current Asset', 13, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (30, 'Current Liabilities', 14, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (31, 'Long Term Liabilities', 14, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (32, 'Share Capital', 14, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (33, 'Retained Earnings', 14, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (34, 'Owners Equity', 15, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (35, 'Sales Revenue', 16, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (36, 'Other Revenue', 16, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (37, 'Costs of Goods Sold', 17, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (38, 'Payroll Expenses', 18, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (39, 'General and Administrative expenses', 18, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (40, 'Current Asset', 19, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (41, 'Inventory Asset', 19, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (42, 'Non-current Asset', 19, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (43, 'Current Liabilities', 20, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (44, 'Long Term Liabilities', 20, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (45, 'Share Capital', 20, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (46, 'Retained Earnings', 20, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (47, 'Owners Equity', 21, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (48, 'Sales Revenue', 22, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (49, 'Other Revenue', 22, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (50, 'Costs of Goods Sold', 23, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (51, 'Payroll Expenses', 24, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (52, 'General and Administrative expenses', 24, 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `chart_of_account_types` -- CREATE TABLE `chart_of_account_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `chart_of_account_types` -- INSERT INTO `chart_of_account_types` (`id`, `name`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Assets', 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (2, 'Liabilities', 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (3, 'Equity', 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (4, 'Income', 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (5, 'Costs of Goods Sold', 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (6, 'Expenses', 1, 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (7, 'Assets', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (8, 'Liabilities', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (9, 'Equity', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (10, 'Income', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (11, 'Costs of Goods Sold', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (12, 'Expenses', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (13, 'Assets', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (14, 'Liabilities', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (15, 'Equity', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (16, 'Income', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (17, 'Costs of Goods Sold', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (18, 'Expenses', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (19, 'Assets', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (20, 'Liabilities', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (21, 'Equity', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (22, 'Income', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (23, 'Costs of Goods Sold', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (24, 'Expenses', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `ch_favorites` -- 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ch_messages` -- CREATE TABLE `ch_messages` ( `id` bigint(20) NOT NULL, `type` varchar(255) NOT NULL, `from_id` bigint(20) NOT NULL, `to_id` bigint(20) NOT NULL, `body` varchar(5000) DEFAULT NULL, `attachment` varchar(255) DEFAULT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `client_deals` -- CREATE TABLE `client_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `client_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `client_permissions` -- CREATE TABLE `client_permissions` ( `id` bigint(20) UNSIGNED NOT NULL, `client_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `permissions` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `client_projects` -- CREATE TABLE `client_projects` ( `id` bigint(20) UNSIGNED NOT NULL, `client_id` int(11) NOT NULL, `project_id` int(11) NOT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `permission` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `id` bigint(20) UNSIGNED NOT NULL, `comment` text NOT NULL, `task_id` int(11) NOT NULL, `user_type` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `commissions` -- CREATE TABLE `commissions` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `company_contributions` -- CREATE TABLE `company_contributions` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `company_policies` -- CREATE TABLE `company_policies` ( `id` bigint(20) UNSIGNED NOT NULL, `branch` int(11) NOT NULL, `title` varchar(255) NOT NULL, `description` longtext NOT NULL, `attachment` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `complaints` -- CREATE TABLE `complaints` ( `id` bigint(20) UNSIGNED NOT NULL, `complaint_from` int(11) NOT NULL, `complaint_against` int(11) NOT NULL, `title` varchar(255) NOT NULL, `complaint_date` date NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `code` varchar(255) NOT NULL, `discount` double(8,2) NOT NULL DEFAULT 0.00, `limit` int(11) NOT NULL DEFAULT 0, `type` enum('percentage','flat','fixed') NOT NULL DEFAULT 'percentage', `minimum_spend` int(11) DEFAULT NULL, `maximum_spend` int(11) DEFAULT NULL, `limit_per_user` int(11) DEFAULT NULL, `expiry_date` date DEFAULT NULL, `included_module` varchar(255) DEFAULT NULL, `excluded_module` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `credit_notes` -- CREATE TABLE `credit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice` int(11) NOT NULL DEFAULT 0, `customer` int(11) NOT NULL DEFAULT 0, `amount` double(15,2) NOT NULL DEFAULT 0.00, `date` date NOT NULL, `description` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `name` varchar(50) DEFAULT NULL, `code` varchar(3) DEFAULT NULL, `symbol` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`name`, `code`, `symbol`) VALUES ('Leke', 'ALL', 'Lek'), ('Dollars', 'USD', '$'), ('Afghanis', 'AFN', '؋'), ('Pesos', 'ARS', '$'), ('Guilders', 'AWG', 'ƒ'), ('Dollars', 'AUD', '$'), ('New Manats', 'AZN', 'ман'), ('Dollars', 'BSD', '$'), ('Dollars', 'BBD', '$'), ('Rubles', 'BYR', 'p.'), ('Euro', 'EUR', '€'), ('Dollars', 'BZD', 'BZ$'), ('Dollars', 'BMD', '$'), ('Bolivianos', 'BOB', '$b'), ('Convertible Marka', 'BAM', 'KM'), ('Pula', 'BWP', 'P'), ('Leva', 'BGN', 'лв'), ('Reais', 'BRL', 'R$'), ('Pounds', 'GBP', '£'), ('Dollars', 'BND', '$'), ('Riels', 'KHR', '៛'), ('Dollars', 'CAD', '$'), ('Dollars', 'KYD', '$'), ('Pesos', 'CLP', '$'), ('Yuan Renminbi', 'CNY', '¥'), ('Pesos', 'COP', '$'), ('Colón', 'CRC', '₡'), ('Kuna', 'HRK', 'kn'), ('Pesos', 'CUP', '₱'), ('Koruny', 'CZK', 'Kč'), ('Kroner', 'DKK', 'kr'), ('Pesos', 'DOP', 'RD$'), ('Dollars', 'XCD', '$'), ('Pounds', 'EGP', '£'), ('Colones', 'SVC', '$'), ('Pounds', 'FKP', '£'), ('Dollars', 'FJD', '$'), ('Cedis', 'GHC', '¢'), ('Pounds', 'GIP', '£'), ('Quetzales', 'GTQ', 'Q'), ('Pounds', 'GGP', '£'), ('Dollars', 'GYD', '$'), ('Lempiras', 'HNL', 'L'), ('Dollars', 'HKD', '$'), ('Forint', 'HUF', 'Ft'), ('Kronur', 'ISK', 'kr'), ('Rupees', 'INR', 'Rp'), ('Rupiahs', 'IDR', 'Rp'), ('Rials', 'IRR', '﷼'), ('Pounds', 'IMP', '£'), ('New Shekels', 'ILS', '₪'), ('Dollars', 'JMD', 'J$'), ('Yen', 'JPY', '¥'), ('Pounds', 'JEP', '£'), ('Tenge', 'KZT', 'лв'), ('Won', 'KPW', '₩'), ('Won', 'KRW', '₩'), ('Soms', 'KGS', 'лв'), ('Kips', 'LAK', '₭'), ('Lati', 'LVL', 'Ls'), ('Pounds', 'LBP', '£'), ('Dollars', 'LRD', '$'), ('Switzerland Francs', 'CHF', 'CHF'), ('Litai', 'LTL', 'Lt'), ('Denars', 'MKD', 'ден'), ('Ringgits', 'MYR', 'RM'), ('Rupees', 'MUR', '₨'), ('Pesos', 'MXN', '$'), ('Tugriks', 'MNT', '₮'), ('Meticais', 'MZN', 'MT'), ('Dollars', 'NAD', '$'), ('Rupees', 'NPR', '₨'), ('Guilders', 'ANG', 'ƒ'), ('Dollars', 'NZD', '$'), ('Cordobas', 'NIO', 'C$'), ('Nairas', 'NGN', '₦'), ('Krone', 'NOK', 'kr'), ('Rials', 'OMR', '﷼'), ('Rupees', 'PKR', '₨'), ('Balboa', 'PAB', 'B/.'), ('Guarani', 'PYG', 'Gs'), ('Nuevos Soles', 'PEN', 'S/.'), ('Pesos', 'PHP', 'Php'), ('Zlotych', 'PLN', 'zł'), ('Rials', 'QAR', '﷼'), ('New Lei', 'RON', 'lei'), ('Rubles', 'RUB', 'руб'), ('Pounds', 'SHP', '£'), ('Riyals', 'SAR', '﷼'), ('Dinars', 'RSD', 'Дин.'), ('Rupees', 'SCR', '₨'), ('Dollars', 'SGD', '$'), ('Dollars', 'SBD', '$'), ('Shillings', 'SOS', 'S'), ('Rand', 'ZAR', 'R'), ('Rupees', 'LKR', '₨'), ('Kronor', 'SEK', 'kr'), ('Dollars', 'SRD', '$'), ('Pounds', 'SYP', '£'), ('New Dollars', 'TWD', 'NT$'), ('Baht', 'THB', '฿'), ('Dollars', 'TTD', 'TT$'), ('Lira', 'TRY', '₺'), ('Liras', 'TRL', '£'), ('Dollars', 'TVD', '$'), ('Hryvnia', 'UAH', '₴'), ('Pesos', 'UYU', '$U'), ('Sums', 'UZS', 'лв'), ('Bolivares Fuertes', 'VEF', 'Bs'), ('Dong', 'VND', '₫'), ('Rials', 'YER', '﷼'), ('Zimbabwe Dollars', 'ZWD', 'Z$'), ('Bahraini Dinar', 'BHD', '$'), ('Turkish lira', 'TL', '₺'), ('United Arab Emirates Dirham', 'AED', 'د.إ'), ('Bangladesh', 'BDT', '৳'), ('Kenya', 'KES', 'KES'), ('Ugandan Shilling', 'UGX', 'UGX'); -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` int(11) NOT NULL, `user_id` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `contact` varchar(255) DEFAULT NULL, `tax_number` varchar(255) DEFAULT NULL, `billing_name` varchar(255) NOT NULL, `billing_country` varchar(255) NOT NULL, `billing_state` varchar(255) NOT NULL, `billing_city` varchar(255) NOT NULL, `billing_phone` varchar(255) NOT NULL, `billing_zip` varchar(255) NOT NULL, `billing_address` text NOT NULL, `shipping_name` varchar(255) DEFAULT NULL, `shipping_country` varchar(255) DEFAULT NULL, `shipping_state` varchar(255) DEFAULT NULL, `shipping_city` varchar(255) DEFAULT NULL, `shipping_phone` varchar(255) DEFAULT NULL, `shipping_zip` varchar(255) DEFAULT NULL, `shipping_address` text DEFAULT NULL, `lang` varchar(255) NOT NULL DEFAULT 'en', `balance` double(8,2) NOT NULL DEFAULT 0.00, `credit_note_balance` varchar(255) NOT NULL DEFAULT '0.00', `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customers` -- INSERT INTO `customers` (`id`, `customer_id`, `user_id`, `name`, `email`, `password`, `contact`, `tax_number`, `billing_name`, `billing_country`, `billing_state`, `billing_city`, `billing_phone`, `billing_zip`, `billing_address`, `shipping_name`, `shipping_country`, `shipping_state`, `shipping_city`, `shipping_phone`, `shipping_zip`, `shipping_address`, `lang`, `balance`, `credit_note_balance`, `workspace`, `created_by`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 1, 3, 'mostafa', 'mostafa@ics.com', NULL, '12002101', '212', 'mostafa', 'Egypt', 'banha', 'Egypt', '010232131312', '11511', 'eg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'en', 0.00, '0.00', 1, 2, NULL, '2024-08-11 14:46:29', '2024-08-11 14:46:29'), (4, 1, 8, 'موسسة السعيد', 'customer@example.com', NULL, '01115770153', NULL, 'موسسة السعيد', 'Egypt', 'الهرم', 'الجيزة', '01115770153', '5788', '15 شارع عباس ابو الحسن', 'موسسة السعيد', NULL, NULL, NULL, NULL, NULL, NULL, 'en', 0.00, '0.00', 2, 6, NULL, '2024-10-10 14:26:02', '2024-10-10 14:26:02'), (5, 2, 10, 'مطعم طازة', 'sdddr@example.com', NULL, '01140769019', NULL, 'مطعم طازة', 'مصر', 'صفط اللبن', 'صفط اللبن', '01140769019', '8797', '40 شارع على محمد', 'مطعم طازة', NULL, NULL, NULL, NULL, NULL, NULL, 'en', 5600.00, '0.00', 2, 6, NULL, '2024-10-10 14:27:03', '2024-10-13 08:01:03'); -- -------------------------------------------------------- -- -- Table structure for table `customer_credit_notes` -- CREATE TABLE `customer_credit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice` int(11) NOT NULL DEFAULT 0, `customer` int(11) NOT NULL DEFAULT 0, `amount` decimal(15,2) NOT NULL DEFAULT 0.00, `date` date NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_debit_notes` -- CREATE TABLE `customer_debit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `bill` int(11) NOT NULL DEFAULT 0, `vendor` int(11) NOT NULL DEFAULT 0, `amount` decimal(15,2) NOT NULL DEFAULT 0.00, `date` date NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `custom_domain_requests` -- CREATE TABLE `custom_domain_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `domain` varchar(255) NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deals` -- CREATE TABLE `deals` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `price` double(8,2) DEFAULT NULL, `pipeline_id` int(11) NOT NULL, `stage_id` int(11) NOT NULL, `sources` varchar(255) DEFAULT NULL, `products` varchar(255) DEFAULT NULL, `notes` text DEFAULT NULL, `labels` varchar(255) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `order` int(11) NOT NULL DEFAULT 0, `phone` varchar(255) DEFAULT NULL, `created_by` int(11) NOT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_activity_logs` -- CREATE TABLE `deal_activity_logs` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `log_type` varchar(255) NOT NULL, `remark` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_calls` -- CREATE TABLE `deal_calls` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `subject` varchar(255) NOT NULL, `call_type` varchar(30) NOT NULL, `duration` varchar(20) NOT NULL, `user_id` int(11) NOT NULL, `description` text DEFAULT NULL, `call_result` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_discussions` -- CREATE TABLE `deal_discussions` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `comment` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_emails` -- CREATE TABLE `deal_emails` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `to` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_files` -- CREATE TABLE `deal_files` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_stages` -- CREATE TABLE `deal_stages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `pipeline_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `order` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_stages` -- INSERT INTO `deal_stages` (`id`, `name`, `pipeline_id`, `created_by`, `order`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'Initial Contact', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (2, 'Qualification', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (3, 'Meeting', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (4, 'Proposal', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (5, 'Close', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (6, 'Initial Contact', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (7, 'Qualification', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (8, 'Meeting', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (9, 'Proposal', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (10, 'Close', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (11, 'Initial Contact', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (12, 'Qualification', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (13, 'Meeting', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (14, 'Proposal', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (15, 'Close', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (16, 'Initial Contact', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (17, 'Qualification', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (18, 'Meeting', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (19, 'Proposal', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (20, 'Close', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `deal_tasks` -- CREATE TABLE `deal_tasks` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `date` date NOT NULL, `time` time NOT NULL, `priority` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `workspace` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `debit_notes` -- CREATE TABLE `debit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `bill` int(11) NOT NULL DEFAULT 0, `vendor` int(11) NOT NULL DEFAULT 0, `amount` double(15,2) NOT NULL DEFAULT 0.00, `date` date NOT NULL, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deduction_options` -- CREATE TABLE `deduction_options` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `departments` -- CREATE TABLE `departments` ( `id` bigint(20) UNSIGNED NOT NULL, `branch_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `designations` -- CREATE TABLE `designations` ( `id` bigint(20) UNSIGNED NOT NULL, `branch_id` int(11) DEFAULT NULL, `department_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `documents` -- CREATE TABLE `documents` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `role` varchar(255) NOT NULL, `document` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `document_types` -- CREATE TABLE `document_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `is_required` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `from` varchar(255) DEFAULT NULL, `module_name` varchar(255) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `email_templates` -- INSERT INTO `email_templates` (`id`, `name`, `from`, `module_name`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'New User', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 'Customer Invoice Send', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (3, 'Payment Reminder', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (4, 'Invoice Payment Create', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (5, 'Proposal Send', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (6, 'New Helpdesk Ticket', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (7, 'New Helpdesk Ticket Reply', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (8, 'Purchase Send', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (9, 'Purchase Payment Create', 'WorkDo Dash', 'general', 1, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (10, 'Bill Send', 'Account', 'Account', 1, 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (11, 'Bill Payment Create', 'Account', 'Account', 1, 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (12, 'Revenue Payment Create', 'Account', 'Account', 1, 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (13, 'Leave Status', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (14, 'New Award', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (15, 'Employee Transfer', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (16, 'Employee Resignation', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (17, 'Employee Trip', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (18, 'Employee Promotion', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (19, 'Employee Complaints', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (20, 'Employee Warning', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (21, 'Employee Termination', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (22, 'New Payroll', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (23, 'Employee Leave Received', 'HRM', 'Hrm', 1, 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (24, 'Deal Assigned', 'Lead', 'Lead', 1, 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (25, 'Deal Moved', 'Lead', 'Lead', 1, 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (26, 'New Task', 'Lead', 'Lead', 1, 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (27, 'Lead Assigned', 'Lead', 'Lead', 1, 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (28, 'Lead Moved', 'Lead', 'Lead', 1, 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'); -- -------------------------------------------------------- -- -- Table structure for table `email_template_langs` -- CREATE TABLE `email_template_langs` ( `id` bigint(20) UNSIGNED NOT NULL, `parent_id` int(11) NOT NULL DEFAULT 0, `lang` varchar(255) DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `content` text DEFAULT NULL, `module_name` varchar(255) DEFAULT NULL, `variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`variables`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `email_template_langs` -- INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (1, 1, 'ar', 'Login Detail', '<p>مرحبا، <br>مرحبا بك في {app_name}.</p><p><b>البريد الإلكتروني </b>: {email}<br><b>كلمه السر</b> : {password}</p><p>{app_url}</p><p>شكر،<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 1, 'da', 'Login Detail', '<p>Hej, <br>Velkommen til {app_name}.</p><p><b>E-mail </b>: {email}<br><b>Adgangskode</b> : {password}</p><p>{app_url}</p><p>Tak,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (3, 1, 'de', 'Login Detail', '<p>Hallo, <br>Willkommen zu {app_name}.</p><p><b>Email </b>: {email}<br><b>Passwort</b> : {password}</p><p>{app_url}</p><p>Vielen Dank,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (4, 1, 'en', 'Login Detail', '<p>Hello, <br />Welcome to {app_name}</p>\n <p><strong>Email </strong>: {email}<br /><strong>Password</strong> : {password}</p>\n <p>{app_url}</p>\n <p>Thanks,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (5, 1, 'es', 'Login Detail', '<p>Hola, <br>Bienvenido a {app_name}.</p><p><b>Correo electrónico </b>: {email}<br><b>Contraseña</b> : {password}</p><p>{app_url}</p><p>Gracias,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (6, 1, 'fr', 'Login Detail', '<p>Bonjour, <br>Bienvenue à {app_name}.</p><p><b>Email </b>: {email}<br><b>Mot de passe</b> : {password}</p><p>{app_url}</p><p>Merci,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (7, 1, 'it', 'Login Detail', '<p>Ciao, <br>Benvenuto a {app_name}.</p><p><b>E-mail </b>: {email}<br><b>Parola d\'ordine</b> : {password}</p><p>{app_url}</p><p>Grazie,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (8, 1, 'ja', 'Login Detail', '<p>こんにちは、 <br>へようこそ {app_name}.</p><p><b>Eメール </b>: {email}<br><b>パスワード</b> : {password}</p><p>{app_url}</p><p>おかげで、<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (9, 1, 'nl', 'Login Detail', '<p>Hallo, <br>Welkom bij {app_name}.</p><p><b>E-mail </b>: {email}<br><b>Wachtwoord</b> : {password}</p><p>{app_url}</p><p>Bedankt,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (10, 1, 'pl', 'Login Detail', '<p>Witaj, <br>Witamy w {app_name}.</p><p><b>E-mail </b>: {email}<br><b>Hasło</b> : {password}</p><p>{app_url}</p><p>Dzięki,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (11, 1, 'ru', 'Login Detail', '<p>Привет, <br>Добро пожаловать в {app_name}.</p><p><b>Электронное письмо </b>: {email}<br><b>пароль</b> : {password}</p><p>{app_url}</p><p>Спасибо,<br>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (12, 1, 'pt', 'Login Detail', '<p>Olá, Bem-vindo a {app_name}.</p>\n <p>E-mail: {email}</p>\n <p>Senha: {password}</p>\n <p>{app_url}</p>\n <p> </p>\n <p>Obrigado,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Email\": \"email\",\n \"Password\": \"password\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (13, 2, 'ar', 'Customer Invoice Send', '<p>مرحبا ، { invoice_name }</p>\n <p>مرحبا بك في { app_name }</p>\n <p>أتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى رقم الفاتورة الملحقة { invoice_number } للخدمة / الخدمة.</p>\n <p>ببساطة اضغط على الاختيار بأسفل.</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">تحميل فاتورة</strong> </a></span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">دفع الفاتورة</strong> </a></span></p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p> </p>\n <p>Regards,</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (14, 2, 'da', 'Customer Invoice Send', '<p>Hej, { invoice_name }</p>\n <p>Velkommen til { app_name }</p>\n <p>Håber denne e-mail finder dig godt! Se vedlagte fakturanummer { invoice_number } for product/service.</p>\n <p>Klik på knappen nedenfor.</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Download faktura</strong> </a></span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Betal faktura</strong> </a></span></p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p> </p>\n <p>Med venlig hilsen</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (15, 2, 'de', 'Customer Invoice Send', '<p>Hi, {invoice_name}</p>\n <p>Willkommen bei {app_name}</p>\n <p>Hoffe, diese E-Mail findet dich gut! Bitte beachten Sie die beigefügte Rechnungsnummer {invoice_number} für Produkt/Service.</p>\n <p>Klicken Sie einfach auf den Button unten.</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Download Rechnung</strong> </a></span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Rechnung bezahlen</strong> </a></span></p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Vielen Dank,</p>\n <p> </p>\n <p>Betrachtet,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>\n ', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (16, 2, 'en', 'Customer Invoice Send', '<p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Hi, {invoice_name}</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Welcome to {app_name}</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Hope this email finds you well! Please see attached invoice number {invoice_number} for product/service.</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Simply click on the button below.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Download Invoice</strong> </a></span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Pay Invoice</strong> </a></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Feel free to reach out if you have any questions.</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Thank You,</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">Regards,</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">{company_name}</span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif; font-size: 15px; font-variant-ligatures: common-ligatures; background-color: #f8f8f8;\">{app_url}</span></p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (17, 2, 'es', 'Customer Invoice Send', '<p>Hi, {invoice_name}</p>\n <p> </p>\n <p>Bienvenido a {app_name}</p>+\n <p> </p>\n <p>¡Espero que este email le encuentre bien! Consulte el número de factura adjunto {invoice_number} para el producto/servicio.</p>\n <p> </p>\n <p>Simplemente haga clic en el botón de abajo.</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Descargar factura</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Factura de pago</strong> </a></span></p>\n <p> </p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p> </p>\n <p>Gracias,</p>\n <p> </p>\n <p>Considerando,</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (18, 2, 'fr', 'Customer Invoice Send', '<p>Bonjour, { invoice_name }</p>\n <p> </p>\n <p>Bienvenue dans { app_name }</p>\n <p> </p>\n <p>Jespère que ce courriel vous trouve bien ! Voir le numéro de facture { invoice_number } pour le produit/service.</p>\n <p> </p>\n <p>Cliquez simplement sur le bouton ci-dessous.</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Télécharger la facture</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Payer sa commande</strong> </a></span></p>\n <p> </p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p> </p>\n <p>Merci,</p>\n <p> </p>\n <p>Regards,</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (19, 2, 'it', 'Customer Invoice Send', '<p>Ciao, {invoice_name}</p>\n <p> </p>\n <p>Benvenuti in {app_name}</p>\n <p> </p>\n <p>Spero che questa email ti trovi bene! Si prega di consultare il numero di fattura collegato {invoice_number} per il prodotto/servizio.</p>\n <p> </p>\n <p>Semplicemente clicca sul pulsante sottostante.</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Scarica Fattura</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Pagare la fattura</strong> </a></span></p>\n <p> </p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p> </p>\n <p>Grazie,</p>\n <p> </p>\n <p>Riguardo,</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (20, 2, 'ja', 'Customer Invoice Send', '<p>こんにちは、 {invoice_name}</p>\n <p> </p>\n <p>{app_name} へようこそ</p>\n <p> </p>\n <p>この E メールでよくご確認ください。 製品 / サービスについては、添付された請求書番号 {invoice_number} を参照してください。</p>\n <p> </p>\n <p>以下のボタンをクリックしてください。</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">請求書のダウンロード</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">請求書の支払い</strong> </a></span></p>\n <p> </p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p> </p>\n <p>ありがとうございます</p>\n <p> </p>\n <p>よろしく</p>\n <p> </p>\n <p>{ company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (21, 2, 'nl', 'Customer Invoice Send', '<p>Hallo, { invoice_name }</p>\n <p>Welkom bij { app_name }</p>\n <p>Hoop dat deze e-mail je goed vindt! Zie bijgevoegde factuurnummer { invoice_number } voor product/service.</p>\n <p>Klik gewoon op de knop hieronder.</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Factuur downloaden</strong> </a></span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Betaal factuur</strong> </a></span></p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank U,</p>\n <p>Betreft:</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (22, 2, 'pl', 'Customer Invoice Send', '<p>Witaj, {invoice_name }</p>\n <p> </p>\n <p>Witamy w aplikacji {app_name }</p>\n <p> </p>\n <p>Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Sprawdź załączoną fakturę numer {invoice_number } dla produktu/usługi.</p>\n <p> </p>\n <p>Wystarczy kliknąć na przycisk poniżej.</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Pobierz fakturę</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Zapłać fakturę</strong> </a></span></p>\n <p> </p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p> </p>\n <p>Dziękuję,</p>\n <p> </p>\n <p>W odniesieniu do</p>\n <p> </p>\n <p>{company_name }</p>\n <p> </p>\n <p>{app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (23, 2, 'ru', 'Customer Invoice Send', '<p>Привет, { invoice_name }</p>\n <p> </p>\n <p>Вас приветствует { app_name }</p>\n <p> </p>\n <p>Надеюсь, это электронное письмо найдет вас хорошо! См. вложенный номер счета-фактуры { invoice_number } для производства/услуги.</p>\n <p> </p>\n <p>Просто нажмите на кнопку внизу.</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Скачать счет</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Оплатить счет</strong> </a></span></p>\n <p> </p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p> </p>\n <p>Спасибо.</p>\n <p> </p>\n <p>С уважением,</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (24, 2, 'pt', 'Customer Invoice Send', '<p>Oi, {invoice_name}</p>\n <p> </p>\n <p>Bem-vindo a {app_name}</p>\n <p> </p>\n <p>Espero que este e-mail encontre você bem! Por favor, consulte o número da fatura anexa {invoice_number} para produto/serviço.</p>\n <p> </p>\n <p>Basta clicar no botão abaixo.</p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Baixe o Invoice</strong> </a></span></p>\n <p> </p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{pay_invoice_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Fatura de pagamento</strong> </a></span></p>\n <p> </p>\n <p>Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p> </p>\n <p>Obrigado,</p>\n <p> </p>\n <p>Considera,</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Invoice Name\": \"invoice_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Download Invoice \": \"invoice_url\",\n \"Pay Invoice\" : \"pay_invoice_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (25, 3, 'ar', 'Payment Reminder', '<p>عزيزي ، { payment_name }</p>\n <p>آمل أن تكون بخير. هذا مجرد تذكير بأن الدفع على الفاتورة { invoice_number } الاجمالي { payment_dueAmount } ، والتي قمنا بارسالها على { payment_date } مستحق اليوم.</p>\n <p>يمكنك دفع مبلغ لحساب البنك المحدد على الفاتورة.</p>\n <p>أنا متأكد أنت مشغول ، لكني أقدر إذا أنت يمكن أن تأخذ a لحظة ونظرة على الفاتورة عندما تحصل على فرصة.</p>\n <p>إذا كان لديك أي سؤال مهما يكن ، يرجى الرد وسأكون سعيدا لتوضيحها.</p>\n <p> </p>\n <p>شكرا </p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (26, 3, 'da', 'Payment Reminder', '<p>Kære, { payment_name }</p>\n <p>Dette er blot en påmindelse om, at betaling på faktura { invoice_number } i alt { payment_dueAmount}, som vi sendte til { payment_date }, er forfalden i dag.</p>\n <p>Du kan foretage betalinger til den bankkonto, der er angivet på fakturaen.</p>\n <p>Jeg er sikker på du har travlt, men jeg ville sætte pris på, hvis du kunne tage et øjeblik og se på fakturaen, når du får en chance.</p>\n <p>Hvis De har nogen spørgsmål, så svar venligst, og jeg vil med glæde tydeliggøre dem.</p>\n <p> </p>\n <p>Tak. </p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (27, 3, 'de', 'Payment Reminder', '<p>Sehr geehrte/r, {payment_name}</p>\n <p>Ich hoffe, Sie sind gut. Dies ist nur eine Erinnerung, dass die Zahlung auf Rechnung {invoice_number} total {payment_dueAmount}, die wir gesendet am {payment_date} ist heute fällig.</p>\n <p>Sie können die Zahlung auf das auf der Rechnung angegebene Bankkonto vornehmen.</p>\n <p>Ich bin sicher, Sie sind beschäftigt, aber ich würde es begrüßen, wenn Sie einen Moment nehmen und über die Rechnung schauen könnten, wenn Sie eine Chance bekommen.</p>\n <p>Wenn Sie irgendwelche Fragen haben, antworten Sie bitte und ich würde mich freuen, sie zu klären.</p>\n <p> </p>\n <p>Danke, </p>\n <p>{company_name}</p>\n <p>{app_url}</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (28, 3, 'en', 'Payment Reminder', '<p>Dear, {payment_name}</p>\n <p>I hope you’re well.This is just a reminder that payment on invoice {invoice_number} total dueAmount {payment_dueAmount} , which we sent on {payment_date} is due today.</p>\n <p>You can make payment to the bank account specified on the invoice.</p>\n <p>I’m sure you’re busy, but I’d appreciate if you could take a moment and look over the invoice when you get a chance.</p>\n <p>If you have any questions whatever, please reply and I’d be happy to clarify them.</p>\n <p> </p>\n <p>Thanks, </p>\n <p>{company_name}</p>\n <p>{app_url}</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (29, 3, 'es', 'Payment Reminder', '<p>Estimado, {payment_name}</p>\n <p>Espero que estés bien. Esto es sólo un recordatorio de que el pago en la factura {invoice_number} total {payment_dueAmount}, que enviamos en {payment_date} se vence hoy.</p>\n <p>Puede realizar el pago a la cuenta bancaria especificada en la factura.</p>\n <p>Estoy seguro de que estás ocupado, pero agradecería si podrías tomar un momento y mirar sobre la factura cuando tienes una oportunidad.</p>\n <p>Si tiene alguna pregunta, por favor responda y me gustaría aclararlas.</p>\n <p> </p>\n <p>Gracias, </p>\n <p>{company_name}</p>\n <p>{app_url}</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (30, 3, 'fr', 'Payment Reminder', '<p>Cher, { payment_name }</p>\n <p>Jespère que vous êtes bien, ce nest quun rappel que le paiement sur facture {invoice_number}total { payment_dueAmount }, que nous avons envoyé le {payment_date} est dû aujourdhui.</p>\n <p>Vous pouvez effectuer le paiement sur le compte bancaire indiqué sur la facture.</p>\n <p>Je suis sûr que vous êtes occupé, mais je vous serais reconnaissant de prendre un moment et de regarder la facture quand vous aurez une chance.</p>\n <p>Si vous avez des questions, veuillez répondre et je serais heureux de les clarifier.</p>\n <p> </p>\n <p>Merci, </p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (31, 3, 'it', 'Payment Reminder', '<p>Caro, {payment_name}</p>\n <p>Spero che tu stia bene, questo è solo un promemoria che il pagamento sulla fattura {invoice_number} totale {payment_dueAmount}, che abbiamo inviato su {payment_date} è dovuto oggi.</p>\n <p>È possibile effettuare il pagamento al conto bancario specificato sulla fattura.</p>\n <p>Sono sicuro che sei impegnato, ma apprezzerei se potessi prenderti un momento e guardare la fattura quando avrai una chance.</p>\n <p>Se avete domande qualunque, vi prego di rispondere e sarei felice di chiarirle.</p>\n <p> </p>\n <p>Grazie, </p>\n <p>{company_name}</p>\n <p>{app_url}</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (32, 3, 'ja', 'Payment Reminder', '<p>ID、 {payment_name}</p>\n <p>これは、 { payment_dueAmount} の合計 {payment_dueAmount } に対する支払いが今日予定されていることを思い出させていただきたいと思います。</p>\n <p>請求書に記載されている銀行口座に対して支払いを行うことができます。</p>\n <p>お忙しいのは確かですが、機会があれば、少し時間をかけてインボイスを見渡すことができればありがたいのですが。</p>\n <p>何か聞きたいことがあるなら、お返事をお願いしますが、喜んでお答えします。</p>\n <p> </p>\n <p>ありがとう。 </p>\n <p>{ company_name}</p>\n <p>{app_url}</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (33, 3, 'nl', 'Payment Reminder', '<p>Geachte, { payment_name }</p>\n <p>Ik hoop dat u goed bent. Dit is gewoon een herinnering dat betaling op factuur { invoice_number } totaal { payment_dueAmount }, die we verzonden op { payment_date } is vandaag verschuldigd.</p>\n <p>U kunt betaling doen aan de bankrekening op de factuur.</p>\n <p>Ik weet zeker dat je het druk hebt, maar ik zou het op prijs stellen als je even over de factuur kon kijken als je een kans krijgt.</p>\n <p>Als u vragen hebt, beantwoord dan uw antwoord en ik wil ze graag verduidelijken.</p>\n <p> </p>\n <p>Bedankt. </p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (34, 3, 'pl', 'Payment Reminder', '<p>Drogi, {payment_name }</p>\n <p>Mam nadzieję, że jesteś dobrze. To jest tylko przypomnienie, że płatność na fakturze {invoice_number } total {payment_dueAmount }, które wysłaliśmy na {payment_date } jest dzisiaj.</p>\n <p>Płatność można dokonać na rachunek bankowy podany na fakturze.</p>\n <p>Jestem pewien, że jesteś zajęty, ale byłbym wdzięczny, gdybyś mógł wziąć chwilę i spojrzeć na fakturę, kiedy masz szansę.</p>\n <p>Jeśli masz jakieś pytania, proszę o odpowiedź, a ja chętnie je wyjaśniam.</p>\n <p> </p>\n <p>Dziękuję, </p>\n <p>{company_name }</p>\n <p>{app_url }</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (35, 3, 'ru', 'Payment Reminder', '<p>Уважаемый, { payment_name }</p>\n <p>Я надеюсь, что вы хорошо. Это просто напоминание о том, что оплата по счету { invoice_number } всего { payment_dueAmount }, которое мы отправили в { payment_date }, сегодня.</p>\n <p>Вы можете произвести платеж на банковский счет, указанный в счете-фактуре.</p>\n <p>Я уверена, что ты занята, но я была бы признательна, если бы ты смог бы поглядеться на счет, когда у тебя появится шанс.</p>\n <p>Если у вас есть вопросы, пожалуйста, ответьте, и я буду рад их прояснить.</p>\n <p> </p>\n <p>Спасибо. </p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (36, 3, 'pt', 'Payment Reminder', '<p>Querido, {payment_name}</p>\n <p>Espero que você esteja bem. Este é apenas um lembrete de que o pagamento na fatura {invoice_number} total {payment_dueAmount}, que enviamos em {payment_date} é devido hoje.</p>\n <p>Você pode fazer o pagamento à conta bancária especificada na fatura.</p>\n <p>Eu tenho certeza que você está ocupado, mas eu agradeceria se você pudesse tirar um momento e olhar sobre a fatura quando tiver uma chance.</p>\n <p>Se você tiver alguma dúvida o que for, por favor, responda e eu ficaria feliz em esclarecê-las.</p>\n <p> </p>\n <p>Obrigado, </p>\n <p>{company_name}</p>\n <p>{app_url}</p>\n <p> </p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Due Amount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (37, 4, 'ar', 'Invoice Payment Create', '<p>مرحبا</p>\n <p>مرحبا بك في { app_name }</p>\n <p>عزيزي { payment_name }</p>\n <p>لقد قمت باستلام المبلغ الخاص بك {payment_amount} لبرنامج { invoice_number } الذي تم تقديمه في التاريخ { payment_date }</p>\n <p>مقدار الاستحقاق { invoice_number } الخاص بك هو {payment_dueAmount}</p>\n <p>ونحن نقدر الدفع الفوري لكم ونتطلع إلى استمرار العمل معكم في المستقبل.</p>\n <p> </p>\n <p>شكرا جزيلا لكم ويوم جيد ! !</p>\n <p> </p>\n <p>Regards,</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (38, 4, 'da', 'Invoice Payment Create', '<p>Hej.</p>\n <p>Velkommen til { app_name }</p>\n <p>Kære { payment_name }</p>\n <p>Vi har modtaget din mængde { payment_amount } betaling for { invoice_number } undert.d. på dato { payment_date }</p>\n <p>Dit { invoice_number } Forfaldsbeløb er { payment_dueAmount }</p>\n <p>Vi sætter pris på din hurtige betaling og ser frem til fortsatte forretninger med dig i fremtiden.</p>\n <p>Mange tak, og ha en god dag!</p>\n <p> </p>\n <p>Med venlig hilsen</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (39, 4, 'de', 'Invoice Payment Create', '<p>Hi,</p>\n <p>Willkommen bei {app_name}</p>\n <p>Sehr geehrter {payment_name}</p>\n <p>Wir haben Ihre Zahlung {payment_amount} für {invoice_number}, die am Datum {payment_date} übergeben wurde, erhalten.</p>\n <p>Ihr {invoice_number} -fälliger Betrag ist {payment_dueAmount}</p>\n <p>Wir freuen uns über Ihre prompte Bezahlung und freuen uns auf das weitere Geschäft mit Ihnen in der Zukunft.</p>\n <p>Vielen Dank und habe einen guten Tag!!</p>\n <p> </p>\n <p>Betrachtet,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (40, 4, 'en', 'Invoice Payment Create', '<p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Hi,</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Welcome to {app_name}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Dear {payment_name}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">We have recieved your amount {payment_amount} payment for {invoice_number} submited on date {payment_date}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Your {invoice_number} Due amount is {payment_dueAmount}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">We appreciate your prompt payment and look forward to continued business with you in the future.</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Thank you very much and have a good day!!</span></span></p>\n <p> </p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Regards,</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">{company_name}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">{app_url}</span></span></p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (41, 4, 'es', 'Invoice Payment Create', '<p>Hola,</p>\n <p>Bienvenido a {app_name}</p>\n <p>Estimado {payment_name}</p>\n <p>Hemos recibido su importe {payment_amount} pago para {invoice_number} submitado en la fecha {payment_date}</p>\n <p>El importe de {invoice_number} Due es {payment_dueAmount}</p>\n <p>Agradecemos su pronto pago y esperamos continuar con sus negocios con usted en el futuro.</p>\n <p>Muchas gracias y que tengan un buen día!!</p>\n <p> </p>\n <p>Considerando,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (42, 4, 'fr', 'Invoice Payment Create', '<p>Salut,</p>\n <p>Bienvenue dans { app_name }</p>\n <p>Cher { payment_name }</p>\n <p>Nous avons reçu votre montant { payment_amount } de paiement pour { invoice_number } soumis le { payment_date }</p>\n <p>Votre {invoice_number} Montant dû est { payment_dueAmount }</p>\n <p>Nous apprécions votre rapidité de paiement et nous attendons avec impatience de poursuivre vos activités avec vous à lavenir.</p>\n <p>Merci beaucoup et avez une bonne journée ! !</p>\n <p> </p>\n <p>Regards,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (43, 4, 'it', 'Invoice Payment Create', '<p>Ciao,</p>\n <p>Benvenuti in {app_name}</p>\n <p>Caro {payment_name}</p>\n <p>Abbiamo ricevuto la tua quantità {payment_amount} pagamento per {invoice_number} subita alla data {payment_date}</p>\n <p>Il tuo {invoice_number} A somma cifra è {payment_dueAmount}</p>\n <p>Apprezziamo il tuo tempestoso pagamento e non vedo lora di continuare a fare affari con te in futuro.</p>\n <p>Grazie mille e buona giornata!!</p>\n <p> </p>\n <p>Riguardo,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (44, 4, 'ja', 'Invoice Payment Create', '<p>こんにちは。</p>\n <p>{app_name} へようこそ</p>\n <p>{ payment_name} に出れます</p>\n <p>{ payment_date} 日付で提出された {請求書番号} の支払金額 } の金額を回収しました。 }</p>\n <p>お客様の {請求書番号} 予定額は {payment_dueAmount} です</p>\n <p>お客様の迅速な支払いを評価し、今後も継続してビジネスを継続することを期待しています。</p>\n <p>ありがとうございます。良い日をお願いします。</p>\n <p> </p>\n <p>よろしく</p>\n <p>{ company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (45, 4, 'nl', 'Invoice Payment Create', '<p>Hallo,</p>\n <p>Welkom bij { app_name }</p>\n <p>Beste { payment_name }</p>\n <p>We hebben uw bedrag ontvangen { payment_amount } betaling voor { invoice_number } ingediend op datum { payment_date }</p>\n <p>Uw { invoice_number } verschuldigde bedrag is { payment_dueAmount }</p>\n <p>Wij waarderen uw snelle betaling en kijken uit naar verdere zaken met u in de toekomst.</p>\n <p>Hartelijk dank en hebben een goede dag!!</p>\n <p> </p>\n <p>Betreft:</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (46, 4, 'pl', 'Invoice Payment Create', '<p>Witam,</p>\n <p>Witamy w aplikacji {app_name }</p>\n <p>Droga {payment_name }</p>\n <p>Odebrano kwotę {payment_amount } płatności za {invoice_number } w dniu {payment_date }, który został zastąpiony przez użytkownika.</p>\n <p>{invoice_number } Kwota należna: {payment_dueAmount }</p>\n <p>Doceniamy Twoją szybką płatność i czekamy na kontynuację działalności gospodarczej z Tobą w przyszłości.</p>\n <p>Dziękuję bardzo i mam dobry dzień!!</p>\n <p> </p>\n <p>W odniesieniu do</p>\n <p>{company_name }</p>\n <p>{app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (47, 4, 'ru', 'Invoice Payment Create', '<p>Привет.</p>\n <p>Вас приветствует { app_name }</p>\n <p>Дорогая { payment_name }</p>\n <p>Мы получили вашу сумму оплаты {payment_amount} для { invoice_number }, подавшей на дату { payment_date }</p>\n <p>Ваша { invoice_number } Должная сумма-{ payment_dueAmount }</p>\n <p>Мы ценим вашу своевременную оплату и надеемся на продолжение бизнеса с вами в будущем.</p>\n <p>Большое спасибо и хорошего дня!!</p>\n <p> </p>\n <p>С уважением,</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (48, 4, 'pt', 'Invoice Payment Create', '<p>Oi,</p>\n <p>Bem-vindo a {app_name}</p>\n <p>Querido {payment_name}</p>\n <p>Nós recibimos sua quantia {payment_amount} pagamento para {invoice_number} requisitado na data {payment_date}</p>\n <p>Sua quantia {invoice_number} Due é {payment_dueAmount}</p>\n <p>Agradecemos o seu pronto pagamento e estamos ansiosos para continuarmos os negócios com você no futuro.</p>\n <p>Muito obrigado e tenha um bom dia!!</p>\n <p> </p>\n <p>Considera,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Invoice Number\": \"invoice_number\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment dueAmount\": \"payment_dueAmount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (49, 5, 'ar', 'Proposal Send', '<p>مرحبا ، { proposal_name }</p>\n <p>أتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى رقم الاقتراح المرفق { proposal_number } للمنتج / الخدمة.</p>\n <p>اضغط ببساطة على الاختيار بأسفل</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">عرض</strong> </a></span></p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لعملك ! !</p>\n <p> </p>\n <p>Regards,</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (50, 5, 'da', 'Proposal Send', '<p>Hej, {proposal_name }</p>\n <p>Håber denne e-mail finder dig godt! Se det vedhæftede forslag nummer { proposal_number } for product/service.</p>\n <p>klik bare på knappen nedenfor</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Forslag</strong> </a></span></p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak for din virksomhed!</p>\n <p> </p>\n <p>Med venlig hilsen</p>\n <p>{ company_name }</p>\n <p>{ app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (51, 5, 'de', 'Proposal Send', '<p>Hi, {proposal_name}</p>\n <p>Hoffe, diese E-Mail findet dich gut! Bitte sehen Sie die angehängte Vorschlagsnummer {proposal_number} für Produkt/Service an.</p>\n <p>Klicken Sie einfach auf den Button unten</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Vorschlag</strong> </a></span></p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Vielen Dank für Ihr Unternehmen!!</p>\n <p> </p>\n <p>Betrachtet,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (52, 5, 'en', 'Proposal Send', '<p>Hi, {proposal_name}</p>\n <p>Hope this email finds you well! Please see attached proposal number {proposal_number} for product/service.</p>\n <p>simply click on the button below</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Proposal</strong> </a></span></p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you for your business!!</p>\n <p> </p>\n <p>Regards,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (53, 5, 'es', 'Proposal Send', '<p>Hi, {proposal_name}</p>\n <p>¡Espero que este email le encuentre bien! Consulte el número de propuesta adjunto {proposal_number} para el producto/servicio.</p>\n <p>simplemente haga clic en el botón de abajo</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Propuesta</strong> </a></span></p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias por su negocio!!</p>\n <p> </p>\n <p>Considerando,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (54, 5, 'fr', 'Proposal Send', '<p>Salut, {proposal_name}</p>\n <p>Jespère que ce courriel vous trouve bien ! Veuillez consulter le numéro de la proposition jointe {proposal_number} pour le produit/service.</p>\n <p>Il suffit de cliquer sur le bouton ci-dessous</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Proposition</strong> </a></span></p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Merci pour votre entreprise ! !</p>\n <p> </p>\n <p>Regards,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (55, 5, 'it', 'Proposal Send', '<p>Ciao, {proposal_name}</p>\n <p>Spero che questa email ti trovi bene! Si prega di consultare il numero di proposta allegato {proposal_number} per il prodotto/servizio.</p>\n <p>semplicemente clicca sul pulsante sottostante</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Proposta</strong> </a></span></p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie per il tuo business!!</p>\n <p> </p>\n <p>Riguardo,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (56, 5, 'ja', 'Proposal Send', '<p>こんにちは、 {proposal_name}</p>\n <p>この E メールでよくご確認ください。 製品 / サービスの添付されたプロポーザル番号 {proposal_number} を参照してください。</p>\n <p>下のボタンをクリックするだけで</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">提案</strong> </a></span></p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>お客様のビジネスに感謝します。</p>\n <p> </p>\n <p>よろしく</p>\n <p>{ company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (57, 5, 'nl', 'Proposal Send', '<p>Hallo, {proposal_name}</p>\n <p>Hoop dat deze e-mail je goed vindt! Zie bijgevoegde nummer {proposal_number} voor product/service.</p>\n <p>gewoon klikken op de knop hieronder</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Voorstel</strong> </a></span></p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u voor uw bedrijf!!</p>\n <p> </p>\n <p>Betreft:</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (58, 5, 'pl', 'Proposal Send', '<p>Witaj, {proposal_name}</p>\n <p>Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Proszę zapoznać się z załączonym numerem wniosku {proposal_number} dla produktu/usługi.</p>\n <p>po prostu kliknij na przycisk poniżej</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Wniosek</strong> </a></span></p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy za prowadzenie działalności!!</p>\n <p> </p>\n <p>W odniesieniu do</p>\n <p>{company_name }</p>\n <p>{app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (59, 5, 'ru', 'Proposal Send', '<p>Здравствуйте, {proposal_name}</p>\n <p>Надеюсь, это электронное письмо найдет вас хорошо! См. вложенное предложение номер {proposal_number} для product/service.</p>\n <p>просто нажмите на кнопку внизу</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Предложение</strong> </a></span></p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо за ваше дело!</p>\n <p> </p>\n <p>С уважением,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (60, 5, 'pt', 'Proposal Send', '<p>Oi, {proposal_name}</p>\n <p>Espero que este e-mail encontre você bem! Por favor, consulte o número da proposta anexada {proposal_number} para produto/serviço.</p>\n <p>basta clicar no botão abaixo</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{proposal_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Proposta</strong> </a></span></p>\n <p>Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p>Obrigado pelo seu negócio!!</p>\n <p> </p>\n <p>Considera,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"proposal Name\": \"proposal_name\",\n \"proposal Number\": \"proposal_number\",\n \"proposal Url\": \"proposal_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (61, 6, 'ar', 'New Helpdesk Ticket', '<p>مرحبا بك<br />الى { app_name }</p>\n <p><strong>البريد الالكتروني : { email } </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>كود بطاقة طلب الخدمة: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">تذكرة مفتوحة</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Thanks,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (62, 6, 'da', 'New Helpdesk Ticket', '<p>Velkommen<br />to {app_name}</p>\n <p><strong>E-mail : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>Ticket ID: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Åbn billet</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Tak,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (63, 6, 'de', 'New Helpdesk Ticket', '<p>Begrüßung<br />to {app_name}</p>\n <p><strong>Email : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>Ticket ID: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Offenes Ticket</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Vielen Dank,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (64, 6, 'en', 'New Helpdesk Ticket', '<p>Welcome<br />to {app_name}</p>\n <p><strong>Email : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>Ticket ID: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Open Ticket</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Thanks,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (65, 6, 'es', 'New Helpdesk Ticket', '<p>Bienvenido<br />to {app_name}</p>\n <p><strong>Correo electrónico : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>ID de ticket: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Entrada abierta</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Gracias,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (66, 6, 'fr', 'New Helpdesk Ticket', '<p>Bienvenue<br />to {app_name}</p>\n <p><strong>Courrier électronique : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>ID de ticket: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Ticket ouvert</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Merci,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (67, 6, 'it', 'New Helpdesk Ticket', '<p>Benvenuto<br />to {app_name}</p>\n <p><strong>Email : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>ID ticket: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Apri un ticket</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Grazie,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (68, 6, 'ja', 'New Helpdesk Ticket', '<p>ようこそ<br />to {app_name}</p>\n <p><strong>E メール: {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>チケット ID: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">オープンチケット</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>ありがと,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (69, 6, 'nl', 'New Helpdesk Ticket', '<p>Welkom<br />to {app_name}</p>\n <p><strong>E-mail : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>Ticket-ID: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Open ticket</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Bedankt,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (70, 6, 'pl', 'New Helpdesk Ticket', '<p>Powitanie<br />to {app_name}</p>\n <p><strong>Adres e-mail : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>Id. zgłoszenia: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Otwarty bilet</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Dziękujemy,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (71, 6, 'ru', 'New Helpdesk Ticket', '<p>Приветствие<br />to {app_name}</p>\n <p><strong>Электронная почта : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>ID паспорта: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Открыть билет</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Спасибо,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (72, 6, 'pt', 'New Helpdesk Ticket', '<p>Bem-vindo<br />to {app_name}</p>\n <p><strong>E-mail : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>ID do chamado: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Bilhete aberto</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Obrigado,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (73, 6, 'tr', 'New Helpdesk Ticket', '<p>Hoş Geldiniz<br />to {app_name}</p>\n <p><strong>Eposta : {email} </strong><strong><br /><strong><strong>\n <p><strong><strong><strong> </strong>Bildirim Formu Tanıtıcısı: {ticket_id}<br />\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Açık bilet</strong> </a></span></p>\n </strong> </a></span></span></p>\n <p>{app_url}</p>\n <p>Teşekkürler,<br />{app_name}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\": \"ticket_name\",\n \"Email\": \"email\",\n \"Ticket Id\" : \"ticket_id\",\n \"Password\": \"password\",\n \"Ticket Url\": \"ticket_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (74, 7, 'ar', 'Helpdesk Ticket Reply', '<p>مرحبا ، مرحبا بك في { app_name }.</p><p> </p><p>{ ticket_name }</p><p>{ ticket_id }</p><p> </p><p>الوصف : { reply_description }</p><p> </p><p>شكرا</p><p>{ app_name }</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (75, 7, 'da', 'Helpdesk Ticket Reply', '<p>Hej, velkommen til { app_name }.</p><p> </p><p>{ ticket_name }</p><p>{ ticket_id }</p><p> </p><p>Beskrivelse: { reply_description }</p><p> </p><p>Tak.</p><p>{ app_name }</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (76, 7, 'de', 'Helpdesk Ticket Reply', '<p>Hallo, Willkommen bei {app_name}.</p><p> </p><p>{ticketname}</p><p>{ticket_id}</p><p> </p><p>Beschreibung: {reply_description}</p><p> </p><p>Danke,</p><p>{Anwendungsname}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (77, 7, 'en', 'Helpdesk Ticket Reply', '<p>Hello, <br />Welcome to {app_name}.</p><p>{ticket_name}</p><p>{ticket_id}</p><p><strong>Description</strong> : {reply_description}</p><p>Thanks,<br />{app_name}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (78, 7, 'es', 'Helpdesk Ticket Reply', '<p>Hola, Bienvenido a {app_name}.</p><p> </p><p>{ticket_name}</p><p>{ticket_id}</p><p> </p><p>Descripción: {reply_description}</p><p> </p><p>Gracias,</p><p>{app_name}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (79, 7, 'fr', 'Helpdesk Ticket Reply', '<p>Hola, Bienvenido a {app_name}.</p><p> </p><p>{ticket_name}</p><p>{ticket_id}</p><p> </p><p>Descripción: {reply_description}</p><p> </p><p>Gracias,</p><p>{app_name}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (80, 7, 'it', 'Helpdesk Ticket Reply', '<p>Ciao, Benvenuti in {app_name}.</p><p> </p><p>{ticket_name}</p><p>{ticket_id}</p><p> </p><p>Descrizione: {reply_description}</p><p> </p><p>Grazie,</p><p>{app_name}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (81, 7, 'ja', 'Helpdesk Ticket Reply', '<p>こんにちは、 {app_name}へようこそ。</p><p> </p><p>{ticket_name}</p><p>{ticket_id}</p><p> </p><p>説明 : {reply_description}</p><p> </p><p>ありがとう。</p><p>{app_name}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (82, 7, 'nl', 'Helpdesk Ticket Reply', '<p>Hallo, Welkom bij { app_name }.</p><p> </p><p>{ ticket_name }</p><p>{ ticket_id }</p><p> </p><p>Beschrijving: { reply_description }</p><p> </p><p>Bedankt.</p><p>{ app_name }</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (83, 7, 'pl', 'Helpdesk Ticket Reply', '<p>Witaj, Witamy w aplikacji {app_name }.</p><p> </p><p>{ticket_name }</p><p>{ticket_id }</p><p> </p><p>Opis: {reply_description }</p><p> </p><p>Dziękuję,</p><p>{app_name }</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (84, 7, 'ru', 'Helpdesk Ticket Reply', '<p>Здравствуйте, Добро пожаловать в { app_name }.</p><p> </p><p>Witaj, Witamy w aplikacji {app_name }.</p><p> </p><p>{ticket_name }</p><p>{ticket_id }</p><p> </p><p>Opis: {reply_description }</p><p> </p><p>Dziękuję,</p><p>{app_name }</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (85, 7, 'pt', 'Helpdesk Ticket Reply', '<p>Olá, Bem-vindo a {app_name}.</p><p> </p><p>{ticket_name}</p><p>{ticket_id}</p><p> </p><p>Descrição: {reply_description}</p><p> </p><p>Obrigado,</p><p>{app_name}</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (86, 7, 'tr', 'Helpdesk Ticket Reply', '<p>Merhaba, <br />{ app_name } olanağına hoş geldiniz.</p><p>{ ticket_name }</p><p>{ ticket_id }</p><p><strong>Açıklama</strong> : { reply_description }</p><p>Teşekkürler,<br />{ uyg_adı }</p>', NULL, '{\n \"App Name\" : \"app_name\",\n \"Company Name\" : \"company_name\",\n \"App Url\": \"app_url\",\n \"Ticket Name\" : \"ticket_name\",\n \"Ticket Id\" : \"ticket_id\",\n \"Ticket Description\" : \"reply_description\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (87, 8, 'ar', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">مرحبا ، { purchase_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">مرحبا بك في { app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">أتمنى أن يجدك هذا البريد الإلكتروني جيدا ! ! برجاء الرجوع الى رقم الفاتورة الملحقة { purchase_number } للحصول على المنتج / الخدمة.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">ببساطة اضغط على الاختيار بأسفل.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">عملية الشراء</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">شكرا لك</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ company_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_url }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (88, 8, 'da', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hej, { purchase_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Velkommen til { app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Håber denne e-mail finder dig godt! Se vedlagte fakturanummer } { purchase_number } for product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klik på knappen nedenfor.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">køb</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Du er velkommen til at række ud, hvis du har nogen spørgsmål.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Tak.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Med venlig hilsen</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ company_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_url }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (89, 8, 'de', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Willkommen bei {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hoffe, diese E-Mail findet dich gut!! Sehen Sie sich die beigefügte Rechnungsnummer {purchase_number} für Produkt/Service an.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klicken Sie einfach auf den Button unten.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Kauf</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Fühlen Sie sich frei, wenn Sie Fragen haben.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Vielen Dank,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betrachtet,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (90, 8, 'en', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Welcome to {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hope this email finds you well!! Please see attached Purchase number {purchase_number} for product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Simply click on the button below.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">purchase</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Feel free to reach out if you have any questions.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Thank You,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (91, 8, 'es', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Bienvenido a {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">¡Espero que este correo te encuentre bien!! Consulte el número de factura adjunto {purchase_number} para el producto/servicio.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Simplemente haga clic en el botón de abajo.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">compra</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Siéntase libre de llegar si usted tiene alguna pregunta.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Gracias,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Considerando,</span></p>\n <p><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (92, 8, 'fr', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Salut, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Bienvenue dans { app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Jespère que ce courriel vous trouve bien ! ! Veuillez consulter le numéro de facture {purchase_number} associé au produit / service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Cliquez simplement sur le bouton ci-dessous.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Achat</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Nhésitez pas à nous contacter si vous avez des questions.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Merci,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (93, 8, 'it', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Ciao, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Benvenuti in {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Spero che questa email ti trovi bene!! Si prega di consultare il numero di fattura allegato {purchase_number} per il prodotto/servizio.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Semplicemente clicca sul pulsante sottostante.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">acquisto</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Sentiti libero di raggiungere se hai domande.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Grazie,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Riguardo,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (94, 8, 'ja', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">こんにちは、 {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name} へようこそ</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">この E メールによりよく検出されます !! 製品 / サービスの添付された請求番号 {purchase_number} を参照してください。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">以下のボタンをクリックしてください。</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">購入</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">質問がある場合は、自由に連絡してください。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">ありがとうございます</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">よろしく</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (95, 8, 'nl', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hallo, { purchase_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Welkom bij { app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hoop dat deze e-mail je goed vindt!! Zie bijgevoegde factuurnummer { purchase_number } voor product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klik gewoon op de knop hieronder.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Aankoop</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Voel je vrij om uit te reiken als je vragen hebt.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dank U,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betreft:</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ company_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_url }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (96, 8, 'pl', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Witaj, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Witamy w aplikacji {app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Mam nadzieję, że ta wiadomość e-mail znajduje Cię dobrze!! Zapoznaj się z załączonym numerem rachunku {purchase_number } dla produktu/usługi.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Wystarczy kliknąć na przycisk poniżej.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">zakup</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Czuj się swobodnie, jeśli masz jakieś pytania.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dziękuję,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">W odniesieniu do</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (97, 8, 'ru', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Привет, { purchase_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Вас приветствует { app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Надеюсь, это письмо найдет вас хорошо! См. прилагаемый номер счета { purchase_number } для product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Просто нажмите на кнопку внизу.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">покупка</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Не стеснитесь, если у вас есть вопросы.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Спасибо.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">С уважением,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ company_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_url }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (98, 8, 'pt', 'Purchase Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Oi, {purchase_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Bem-vindo a {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Espero que este e-mail encontre você bem!! Por favor, consulte o número de faturamento conectado {purchase_number} para produto/serviço.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Basta clicar no botão abaixo.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{purchase_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">compra</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Obrigado,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Considera,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Purchase Name\": \"purchase_name\",\n \"Purchase Number\": \"purchase_number\",\n \"purchase_url\": \"purchase_url\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (99, 9, 'ar', 'Purchase Payment Create', '<p>مرحبا ، { payment_name }</p>\n <p> </p>\n <p>مرحبا بك في { app_name }</p>\n <p> </p>\n <p>نحن نكتب لإبلاغكم بأننا قد أرسلنا مدفوعات (payment_bill) } الخاصة بك.</p>\n <p> </p>\n <p>لقد أرسلنا قيمتك { payment_amount } لأجل { payment_bill } قمت بالاحالة في التاريخ { payment_date } من خلال { payment_method }.</p>\n <p> </p>\n <p>شكرا جزيلا لك وطاب يومك ! !!!</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (100, 9, 'da', 'Purchase Payment Create', '<p>Hej, { payment_name }</p>\n <p> </p>\n <p>Velkommen til { app_name }</p>\n <p> </p>\n <p>Vi skriver for at informere dig om, at vi har sendt din { payment_bill }-betaling.</p>\n <p> </p>\n <p>Vi har sendt dit beløb { payment_amount } betaling for { payment_bill } undertvist på dato { payment_date } via { payment_method }.</p>\n <p> </p>\n <p>Mange tak, og ha en god dag!</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (101, 9, 'de', 'Purchase Payment Create', '<p>Hi, {payment_name}</p>\n <p> </p>\n <p>Willkommen bei {app_name}</p>\n <p> </p>\n <p>Wir schreiben Ihnen mitzuteilen, dass wir Ihre Zahlung von {payment_bill} gesendet haben.</p>\n <p> </p>\n <p>Wir haben Ihre Zahlung {payment_amount} Zahlung für {payment_bill} am Datum {payment_date} über {payment_method} gesendet.</p>\n <p> </p>\n <p>Vielen Dank und haben einen guten Tag! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (102, 9, 'en', 'Purchase Payment Create', '<p>Hi, {payment_name}</p>\n <p>Welcome to {app_name}</p>\n <p>We are writing to inform you that we has sent your {payment_bill} payment.</p>\n <p>We has sent your amount {payment_amount} payment for {payment_bill} submited on date {payment_date} via {payment_method}.</p>\n <p>Thank You very much and have a good day !!!!</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (103, 9, 'es', 'Purchase Payment Create', '<p>Hi, {payment_name}</p>\n <p> </p>\n <p>Bienvenido a {app_name}</p>\n <p> </p>\n <p>Estamos escribiendo para informarle que hemos enviado su pago {payment_bill}.</p>\n <p> </p>\n <p>Hemos enviado su importe {payment_amount} pago para {payment_bill} submitado en la fecha {payment_date} a través de {payment_method}.</p>\n <p> </p>\n <p>Thank You very much and have a good day! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (104, 9, 'fr', 'Purchase Payment Create', '<p>Salut, { payment_name }</p>\n <p> </p>\n <p>Bienvenue dans { app_name }</p>\n <p> </p>\n <p>Nous vous écrivons pour vous informer que nous avons envoyé votre paiement { payment_bill }.</p>\n <p> </p>\n <p>Nous avons envoyé votre paiement { payment_amount } pour { payment_bill } soumis à la date { payment_date } via { payment_method }.</p>\n <p> </p>\n <p>Merci beaucoup et avez un bon jour ! !!!</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (105, 9, 'it', 'Purchase Payment Create', '<p>Ciao, {payment_name}</p>\n <p> </p>\n <p>Benvenuti in {app_name}</p>\n <p> </p>\n <p>Scriviamo per informarti che abbiamo inviato il tuo pagamento {payment_bill}.</p>\n <p> </p>\n <p>Abbiamo inviato la tua quantità {payment_amount} pagamento per {payment_bill} subita alla data {payment_date} tramite {payment_method}.</p>\n <p> </p>\n <p>Grazie mille e buona giornata! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (106, 9, 'ja', 'Purchase Payment Create', '<p>こんにちは、 {payment_name}</p>\n <p> </p>\n <p>{app_name} へようこそ</p>\n <p> </p>\n <p>{payment_bill} の支払いを送信したことをお知らせするために執筆しています。</p>\n <p> </p>\n <p>{payment_date } に提出された {payment_議案} に対する金額 {payment_date} の支払いは、 {payment_method}を介して送信されました。</p>\n <p> </p>\n <p>ありがとうございます。良い日をお願いします。</p>\n <p> </p>\n <p>{ company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (107, 9, 'nl', 'Purchase Payment Create', '<p>Hallo, { payment_name }</p>\n <p> </p>\n <p>Welkom bij { app_name }</p>\n <p> </p>\n <p>Wij schrijven u om u te informeren dat wij uw betaling van { payment_bill } hebben verzonden.</p>\n <p> </p>\n <p>We hebben uw bedrag { payment_amount } betaling voor { payment_bill } verzonden op datum { payment_date } via { payment_method }.</p>\n <p> </p>\n <p>Hartelijk dank en hebben een goede dag! !!!</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (108, 9, 'pl', 'Purchase Payment Create', '<p>Witaj, {payment_name }</p>\n <p> </p>\n <p>Witamy w aplikacji {app_name }</p>\n <p> </p>\n <p>Piszemy, aby poinformować Cię, że wysłaliśmy Twoją płatność {payment_bill }.</p>\n <p> </p>\n <p>Twoja kwota {payment_amount } została wysłana przez użytkownika {payment_bill } w dniu {payment_date } za pomocą metody {payment_method }.</p>\n <p> </p>\n <p>Dziękuję bardzo i mam dobry dzień! !!!</p>\n <p> </p>\n <p>{company_name }</p>\n <p> </p>\n <p>{app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (109, 9, 'ru', 'Purchase Payment Create', '<p>Привет, { payment_name }</p>\n <p> </p>\n <p>Вас приветствует { app_name }</p>\n <p> </p>\n <p>Мы пишем, чтобы сообщить вам, что мы отправили вашу оплату { payment_bill }.</p>\n <p> </p>\n <p>Мы отправили вашу сумму оплаты { payment_amount } для { payment_bill }, подав на дату { payment_date } через { payment_method }.</p>\n <p> </p>\n <p>Большое спасибо и хорошего дня! !!!</p>\n <p> </p>\n <p>{ company_name }</p>\n <p> </p>\n <p>{ app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (110, 9, 'pt', 'Purchase Payment Create', '<p>Oi, {payment_name}</p>\n <p> </p>\n <p>Bem-vindo a {app_name}</p>\n <p> </p>\n <p>Estamos escrevendo para informá-lo que enviamos o seu pagamento {payment_bill}.</p>\n <p> </p>\n <p>Nós enviamos sua quantia {payment_amount} pagamento por {payment_bill} requisitado na data {payment_date} via {payment_method}.</p>\n <p> </p>\n <p>Muito obrigado e tenha um bom dia! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (111, 10, 'ar', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">مرحبا ، {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">مرحبا بك في {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">أتمنى أن يجدك هذا البريد الإلكتروني جيدا ! ! برجاء الرجوع الى رقم الفاتورة الملحقة {bill_number} للحصول على المنتج / الخدمة.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">ببساطة اضغط على الاختيار بأسفل.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">فاتورة</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">شكرا لك</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (112, 10, 'da', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hej, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Velkommen til {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Håber denne e-mail finder dig godt! Se vedlagte fakturanummer } {bill_number} for product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klik på knappen nedenfor.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Regning</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Du er velkommen til at række ud, hvis du har nogen spørgsmål.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Tak.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Med venlig hilsen</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (113, 10, 'de', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Willkommen bei {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hoffe, diese E-Mail findet dich gut!! Sehen Sie sich die beigefügte Rechnungsnummer {bill_number} für Produkt/Service an.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klicken Sie einfach auf den Button unten.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Rechnung</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Fühlen Sie sich frei, wenn Sie Fragen haben.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Vielen Dank,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betrachtet,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (114, 10, 'en', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Welcome to {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hope this email finds you well!! Please see attached bill number {bill_number} for product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Simply click on the button below.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Bill</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Feel free to reach out if you have any questions.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Thank You,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (115, 10, 'es', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Bienvenido a {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">¡Espero que este correo te encuentre bien!! Consulte el número de factura adjunto {bill_number} para el producto/servicio.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Simplemente haga clic en el botón de abajo.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Cuenta</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Siéntase libre de llegar si usted tiene alguna pregunta.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Gracias,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Considerando,</span></p>\n <p><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (116, 10, 'fr', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Salut, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Bienvenue dans {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Jespère que ce courriel vous trouve bien ! ! Veuillez consulter le numéro de facture {bill_number} associé au produit / service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Cliquez simplement sur le bouton ci-dessous.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Facture</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Nhésitez pas à nous contacter si vous avez des questions.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Merci,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (117, 10, 'it', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Ciao, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Benvenuti in {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Spero che questa email ti trovi bene!! Si prega di consultare il numero di fattura allegato {bill_number} per il prodotto/servizio.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Semplicemente clicca sul pulsante sottostante.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Conto</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Sentiti libero di raggiungere se hai domande.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Grazie,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Riguardo,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (118, 10, 'ja', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">こんにちは、 {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name} へようこそ</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">この E メールによりよく検出されます !! 製品 / サービスの添付された請求番号 {bill_number} を参照してください。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">以下のボタンをクリックしてください。</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">明細書</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">質問がある場合は、自由に連絡してください。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">ありがとうございます</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">よろしく</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (119, 10, 'nl', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hallo, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Welkom bij {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hoop dat deze e-mail je goed vindt!! Zie bijgevoegde factuurnummer {bill_number} voor product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klik gewoon op de knop hieronder.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Rekening</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Voel je vrij om uit te reiken als je vragen hebt.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dank U,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betreft:</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (120, 10, 'pl', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Witaj, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Witamy w aplikacji {app_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Mam nadzieję, że ta wiadomość e-mail znajduje Cię dobrze!! Zapoznaj się z załączonym numerem rachunku {bill_number } dla produktu/usługi.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Wystarczy kliknąć na przycisk poniżej.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Rachunek</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Czuj się swobodnie, jeśli masz jakieś pytania.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dziękuję,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">W odniesieniu do</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name }</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (121, 10, 'ru', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Привет, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Вас приветствует {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Надеюсь, это письмо найдет вас хорошо! См. прилагаемый номер счета {bill_number} для product/service.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Просто нажмите на кнопку внизу.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Счет</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Не стеснитесь, если у вас есть вопросы.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Спасибо.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">С уважением,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (122, 10, 'pt', 'Bill Send', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Oi, {bill_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Bem-vindo a {app_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Espero que este e-mail encontre você bem!! Por favor, consulte o número de faturamento conectado {bill_number} para produto/serviço.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Basta clicar no botão abaixo.</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{bill_url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Conta</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Obrigado,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Considera,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{company_name}</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_url}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Bill Name\": \"bill_name\",\n \"Bill Number\": \"bill_number\",\n \"bill_url\": \"bill_url\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (123, 11, 'ar', 'Bill Payment Create', '<p>مرحبا ، { payment_name }</p>\n <p> </p>\n <p>مرحبا بك في {app_name}</p>\n <p> </p>\n <p>نحن نكتب لإبلاغكم بأننا قد أرسلنا مدفوعات (payment_bill) } الخاصة بك.</p>\n <p> </p>\n <p>لقد أرسلنا قيمتك { payment_amount } لأجل { payment_bill } قمت بالاحالة في التاريخ { payment_date } من خلال { payment_method }.</p>\n <p> </p>\n <p>شكرا جزيلا لك وطاب يومك ! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (124, 11, 'da', 'Bill Payment Create', '<p>Hej, { payment_name }</p>\n <p> </p>\n <p>Velkommen til {app_name}</p>\n <p> </p>\n <p>Vi skriver for at informere dig om, at vi har sendt din { payment_bill }-betaling.</p>\n <p> </p>\n <p>Vi har sendt dit beløb { payment_amount } betaling for { payment_bill } undertvist på dato { payment_date } via { payment_method }.</p>\n <p> </p>\n <p>Mange tak, og ha en god dag!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (125, 11, 'de', 'Bill Payment Create', '<p>Hi, {payment_name}</p>\n <p> </p>\n <p>Willkommen bei {app_name}</p>\n <p> </p>\n <p>Wir schreiben Ihnen mitzuteilen, dass wir Ihre Zahlung von {payment_bill} gesendet haben.</p>\n <p> </p>\n <p>Wir haben Ihre Zahlung {payment_amount} Zahlung für {payment_bill} am Datum {payment_date} über {payment_method} gesendet.</p>\n <p> </p>\n <p>Vielen Dank und haben einen guten Tag! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (126, 11, 'en', 'Bill Payment Create', '<p>Hi, {payment_name}</p>\n <p>Welcome to {app_name}</p>\n <p>We are writing to inform you that we has sent your {payment_bill} payment.</p>\n <p>We has sent your amount {payment_amount} payment for {payment_bill} submited on date {payment_date} via {payment_method}.</p>\n <p>Thank You very much and have a good day !!!!</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (127, 11, 'es', 'Bill Payment Create', '<p>Hi, {payment_name}</p>\n <p> </p>\n <p>Bienvenido a {app_name}</p>\n <p> </p>\n <p>Estamos escribiendo para informarle que hemos enviado su pago {payment_bill}.</p>\n <p> </p>\n <p>Hemos enviado su importe {payment_amount} pago para {payment_bill} submitado en la fecha {payment_date} a través de {payment_method}.</p>\n <p> </p>\n <p>Thank You very much and have a good day! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (128, 11, 'fr', 'Bill Payment Create', '<p>Salut, { payment_name }</p>\n <p> </p>\n <p>Bienvenue dans {app_name}</p>\n <p> </p>\n <p>Nous vous écrivons pour vous informer que nous avons envoyé votre paiement { payment_bill }.</p>\n <p> </p>\n <p>Nous avons envoyé votre paiement { payment_amount } pour { payment_bill } soumis à la date { payment_date } via { payment_method }.</p>\n <p> </p>\n <p>Merci beaucoup et avez un bon jour ! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (129, 11, 'it', 'Bill Payment Create', '<p>Ciao, {payment_name}</p>\n <p> </p>\n <p>Benvenuti in {app_name}</p>\n <p> </p>\n <p>Scriviamo per informarti che abbiamo inviato il tuo pagamento {payment_bill}.</p>\n <p> </p>\n <p>Abbiamo inviato la tua quantità {payment_amount} pagamento per {payment_bill} subita alla data {payment_date} tramite {payment_method}.</p>\n <p> </p>\n <p>Grazie mille e buona giornata! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (130, 11, 'ja', 'Bill Payment Create', '<p>こんにちは、 {payment_name}</p>\n <p> </p>\n <p>{app_name} へようこそ</p>\n <p> </p>\n <p>{payment_bill} の支払いを送信したことをお知らせするために執筆しています。</p>\n <p> </p>\n <p>{payment_date } に提出された {payment_議案} に対する金額 {payment_date} の支払いは、 {payment_method}を介して送信されました。</p>\n <p> </p>\n <p>ありがとうございます。良い日をお願いします。</p>\n <p> </p>\n <p>{ company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (131, 11, 'nl', 'Bill Payment Create', '<p>Hallo, { payment_name }</p>\n <p> </p>\n <p>Welkom bij {app_name}</p>\n <p> </p>\n <p>Wij schrijven u om u te informeren dat wij uw betaling van { payment_bill } hebben verzonden.</p>\n <p> </p>\n <p>We hebben uw bedrag { payment_amount } betaling voor { payment_bill } verzonden op datum { payment_date } via { payment_method }.</p>\n <p> </p>\n <p>Hartelijk dank en hebben een goede dag! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (132, 11, 'pl', 'Bill Payment Create', '<p>Witaj, {payment_name }</p>\n <p> </p>\n <p>Witamy w aplikacji {app_name }</p>\n <p> </p>\n <p>Piszemy, aby poinformować Cię, że wysłaliśmy Twoją płatność {payment_bill }.</p>\n <p> </p>\n <p>Twoja kwota {payment_amount } została wysłana przez użytkownika {payment_bill } w dniu {payment_date } za pomocą metody {payment_method }.</p>\n <p> </p>\n <p>Dziękuję bardzo i mam dobry dzień! !!!</p>\n <p> </p>\n <p>{company_name }</p>\n <p> </p>\n <p>{app_url }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (133, 11, 'ru', 'Bill Payment Create', '<p>Привет, { payment_name }</p>\n <p> </p>\n <p>Вас приветствует {app_name}</p>\n <p> </p>\n <p>Мы пишем, чтобы сообщить вам, что мы отправили вашу оплату { payment_bill }.</p>\n <p> </p>\n <p>Мы отправили вашу сумму оплаты { payment_amount } для { payment_bill }, подав на дату { payment_date } через { payment_method }.</p>\n <p> </p>\n <p>Большое спасибо и хорошего дня! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (134, 11, 'pt', 'Bill Payment Create', '<p>Oi, {payment_name}</p>\n <p> </p>\n <p>Bem-vindo a {app_name}</p>\n <p> </p>\n <p>Estamos escrevendo para informá-lo que enviamos o seu pagamento {payment_bill}.</p>\n <p> </p>\n <p>Nós enviamos sua quantia {payment_amount} pagamento por {payment_bill} requisitado na data {payment_date} via {payment_method}.</p>\n <p> </p>\n <p>Muito obrigado e tenha um bom dia! !!!</p>\n <p> </p>\n <p>{company_name}</p>\n <p> </p>\n <p>{app_url}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Payment Name\": \"payment_name\",\n \"Payment Bill\": \"payment_bill\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\",\n \"Payment Method\": \"payment_method\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (135, 12, 'ar', 'Revenue Payment Create', '<p>مرحبا</p>\n <p>مرحبا بك في {app_name}</p>\n <p>عزيزي {payment_name}</p>\n <p>لقد قمت باستلام المبلغ الخاص بك {payment_amount} لبرنامج {revenue_type} الذي تم تقديمه في التاريخ {payment_date}</p>\n <p>ونحن نقدر الدفع الفوري لكم ونتطلع إلى استمرار العمل معكم في المستقبل.</p>\n <p> </p>\n <p>شكرا جزيلا لكم ويوم جيد ! !</p>\n <p> </p>\n <p>Regards,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (136, 12, 'da', 'Revenue Payment Create', '<p>Hej.</p>\n <p>Velkommen til {app_name </p>\n <p>Kære {payment_name}</p>\n <p>Vi har modtaget din mængde {payment_amount} betaling for {revenue_type} undert.d. på dato {payment_date}</p>\n <p>Vi sætter pris på din hurtige betaling og ser frem til fortsatte forretninger med dig i fremtiden.</p>\n <p>Mange tak, og ha en god dag!</p>\n <p> </p>\n <p>Med venlig hilsen</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (137, 12, 'de', 'Revenue Payment Create', '<p>Hi,</p>\n <p>Willkommen bei {app_name}</p>\n <p>Sehr geehrter {payment_name}</p>\n <p>Wir haben Ihre Zahlung {payment_amount} für {revenue_type}, die am Datum {payment_date} übergeben wurde, erhalten.</p>\n <p>Wir freuen uns über Ihre prompte Bezahlung und freuen uns auf das weitere Geschäft mit Ihnen in der Zukunft.</p>\n <p>Vielen Dank und habe einen guten Tag!!</p>\n <p> </p>\n <p>Betrachtet,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (138, 12, 'en', 'Revenue Payment Create', '<p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Hi,</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Welcome to {app_name}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Dear {payment_name}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">We have recieved your amount {payment_amount} payment for {revenue_type} submited on date {payment_date}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">We appreciate your prompt payment and look forward to continued business with you in the future.</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Thank you very much and have a good day!!</span></span></p>\n <p> </p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">Regards,</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">{company_name}</span></span></p>\n <p><span style=\"color: #1d1c1d; font-family: Slack-Lato, Slack-Fractions, appleLogo, sans-serif;\"><span style=\"font-size: 15px; font-variant-ligatures: common-ligatures;\">{app_url}</span></span></p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (139, 12, 'es', 'Revenue Payment Create', '<p>Hola,</p>\n <p>Bienvenido a {app_name}</p>\n <p>Estimado {payment_name}</p>\n <p>Hemos recibido su importe {payment_amount} pago para {revenue_type} submitado en la fecha {payment_date}</p>\n <p>Agradecemos su pronto pago y esperamos continuar con sus negocios con usted en el futuro.</p>\n <p>Muchas gracias y que tengan un buen día!!</p>\n <p> </p>\n <p>Considerando,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (140, 12, 'fr', 'Revenue Payment Create', '<p>Salut,</p>\n <p>Bienvenue dans {app_name}</p>\n <p>Cher {payment_name}</p>\n <p>Nous avons reçu votre montant {payment_amount} de paiement pour {revenue_type} soumis le {payment_date}</p>\n <p>Nous apprécions votre rapidité de paiement et nous attendons avec impatience de poursuivre vos activités avec vous à lavenir.</p>\n <p>Merci beaucoup et avez une bonne journée ! !</p>\n <p> </p>\n <p>Regards,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (141, 12, 'it', 'Revenue Payment Create', '<p>Ciao,</p>\n <p>Benvenuti in {app_name}</p>\n <p>Caro {payment_name}</p>\n <p>Abbiamo ricevuto la tua quantità {payment_amount} pagamento per {revenue_type} subita alla data {payment_date}</p>\n <p>Apprezziamo il tuo tempestoso pagamento e non vedo lora di continuare a fare affari con te in futuro.</p>\n <p>Grazie mille e buona giornata!!</p>\n <p> </p>\n <p>Riguardo,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (142, 12, 'ja', 'Revenue Payment Create', '<p>こんにちは。</p>\n <p>{app_name} へようこそ</p>\n <p>{ payment_name} に出れます</p>\n <p>{ payment_date} 日付で提出された {revenue_type} の金額を回収しました。{payment_date}</p>\n <p>お客様の迅速な支払いを評価し、今後も継続してビジネスを継続することを期待しています。</p>\n <p>ありがとうございます。良い日をお願いします。</p>\n <p> </p>\n <p>よろしく</p>\n <p>{ company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (143, 12, 'nl', 'Revenue Payment Create', '<p>Hallo,</p>\n <p>Welkom bij {app_name}</p>\n <p>Beste {payment_name}</p>\n <p>We hebben uw bedrag ontvangen {payment_amount} betaling voor {revenue_type} ingediend op datum {payment_date}</p>\n <p>Wij waarderen uw snelle betaling en kijken uit naar verdere zaken met u in de toekomst.</p>\n <p>Hartelijk dank en hebben een goede dag!!</p>\n <p> </p>\n <p>Betreft:</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (144, 12, 'pl', 'Revenue Payment Create', '<p>Witam,</p>\n <p>Witamy w aplikacji {app_name }</p>\n <p>Droga {payment_name }</p>\n <p>Odebrano kwotę {payment_amount } płatności za {revenue_type } w dniu {payment_date }, który został zastąpiony przez użytkownika.</p>\n <p>Doceniamy Twoją szybką płatność i czekamy na kontynuację działalności gospodarczej z Tobą w przyszłości.</p>\n <p>Dziękuję bardzo i mam dobry dzień!!</p>\n <p> </p>\n <p>W odniesieniu do</p>\n <p>{company_name }</p>\n <p>{app_url }</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (145, 12, 'ru', 'Revenue Payment Create', '<p>Привет.</p>\n <p>Вас приветствует {app_name}</p>\n <p>Дорогая {payment_name}</p>\n <p>Мы получили вашу сумму оплаты {payment_amount} для {revenue_type}, подавшей на дату {payment_date}</p>\n <p>Мы ценим вашу своевременную оплату и надеемся на продолжение бизнеса с вами в будущем.</p>\n <p>Большое спасибо и хорошего дня!!</p>\n <p> </p>\n <p>С уважением,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (146, 12, 'pt', 'Revenue Payment Create', '<p>Oi,</p>\n <p>Bem-vindo a {app_name}</p>\n <p>Querido {payment_name}</p>\n <p>Nós recibimos sua quantia {payment_amount} pagamento para {revenue_type} requisitado na data {payment_date}</p>\n <p>Agradecemos o seu pronto pagamento e estamos ansiosos para continuarmos os negócios com você no futuro.</p>\n <p>Muito obrigado e tenha um bom dia!!</p>\n <p> </p>\n <p>Considera,</p>\n <p>{company_name}</p>\n <p>{app_url}</p>', NULL, '{\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"App Url\": \"app_url\",\n \"Payment Name\": \"payment_name\",\n \"Revenue Type\": \"revenue_type\",\n \"Payment Amount\": \"payment_amount\",\n \"Payment Date\": \"payment_date\"\n }', '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (147, 13, 'ar', 'Leave Status', '<p style=\"text-align: left;\">Subject : -HR ادارة / شركة لارسال رسالة الموافقة الى { leave_status } اجازة أو ترك.</p>\n <p style=\"text-align: left;\">عزيزي { leave_status_name } ،</p>\n <p style=\"text-align: left;\">لدي { leave_status } طلب الخروج الخاص بك الى { leave_reason } من { leave_start_date } الى { leave_end_date }.</p>\n <p style=\"text-align: left;\">{ total_leave_days } أيام لدي { leave_status } طلب الخروج الخاص بك ل ـ { leave_reason }.</p>\n <p style=\"text-align: left;\">ونحن نطلب منكم أن تكملوا كل أعمالكم المعلقة أو أي قضية مهمة أخرى حتى لا تواجه الشركة أي خسارة أو مشكلة أثناء غيابكم. نحن نقدر لك مصداقيتك لإبلاغنا بوقت كاف مقدما</p>\n <p style=\"text-align: left;\">إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p style=\"text-align: left;\">شكرا لك</p>\n <p style=\"text-align: left;\">Regards,</p>\n <p style=\"text-align: left;\">إدارة الموارد البشرية ،</p>\n <p style=\"text-align: left;\">{ app_name }</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (148, 13, 'da', 'Leave Status', '<p>Emne:-HR-afdelingen / Kompagniet for at sende godkendelsesbrev til { leave_status } en ferie eller orlov.</p>\n <p>Kære { leave_status_name },</p>\n <p>Jeg har { leave_status } din orlov-anmodning for { leave_reason } fra { leave_start_date } til { leave_end_date }.</p>\n <p>{ total_leave_days } dage Jeg har { leave_status } din anmodning om { leave_reason } for { leave_reason }.</p>\n <p>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</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (149, 13, 'de', 'Leave Status', '<p>Betreff: -Personalabteilung/Firma, um den Genehmigungsschreiben an {leave_status} einen Urlaub oder Urlaub zu schicken.</p>\n <p>Sehr geehrter {leave_status_name},</p>\n <p>Ich habe {leave_status} Ihre Urlaubsanforderung für {leave_reason} von {leave_start_date} bis {leave_end_date}.</p>\n <p>{total_leave_days} Tage Ich habe {leave_status} Ihre Urlaubs-Anfrage für {leave_reason}.</p>\n <p>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</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (150, 13, 'en', 'Leave Status', '<p><strong>Subject:-HR department/Company to send approval letter to {leave_status} a vacation or leave.</strong></p>\n <p><strong>Dear {leave_status_name},</strong></p>\n <p>I have {leave_status} your leave request for {leave_reason} from {leave_start_date} to {leave_end_date}.</p>\n <p>{total_leave_days} days I have {leave_status} your leave request for {leave_reason}.</p>\n <p>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</p>\n <p> </p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><strong>{app_name}</strong></p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (151, 13, 'es', 'Leave Status', '<p>Asunto: -Departamento de RR.HH./Empresa para enviar la carta de aprobación a {leave_status} unas vacaciones o permisos.</p>\n <p>Estimado {leave_status_name},</p>\n <p>Tengo {leave_status} la solicitud de licencia para {leave_reason} de {leave_start_date} a {leave_end_date}.</p>\n <p>{total_leave_days} días tengo {leave_status} la solicitud de licencia para {leave_reason}.</p>\n <p>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</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (152, 13, 'fr', 'Leave Status', '<p>Objet: -HR department / Company to send approval letter to { leave_status } a vacances or leave.</p>\n <p>Cher { leave_status_name },</p>\n <p>Jai { leave_statut } votre demande de congé pour { leave_reason } de { leave_start_date } à { leave_date_fin }.</p>\n <p>{ total_leave_days } jours I have { leave_status } your leave request for { leave_reason }.</p>\n <p>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</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (153, 13, 'it', 'Leave Status', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di approvazione a {leave_status} una vacanza o un congedo.</p>\n <p>Caro {leave_status_name},</p>\n <p>Ho {leave_status} la tua richiesta di permesso per {leave_reason} da {leave_start_date} a {leave_end_date}.</p>\n <p>{total_leave_days} giorni I ho {leave_status} la tua richiesta di permesso per {leave_reason}.</p>\n <p>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</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (154, 13, 'ja', 'Leave Status', '<p>件名: 承認レターを { leave_status} に送信するには、 -HR 部門/会社が休暇または休暇を入力します。</p>\n <p>{leave_status_name} を終了します。</p>\n <p>{ leave_reason } の { leave_start_date} から {leave_end_date}までの { leave_status} の終了要求を { leave_status} しています。</p>\n <p>{total_leave_days} 日に { leave_reason}{ leave_status} に対するあなたの休暇要求があります。</p>\n <p>お客様は、お客様の不在中に損失や問題が発生しないように、保留中のすべての作業またはその他の重要な問題を完了するよう要求します。 私たちは、前もってお知らせすることに感謝しています。</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (155, 13, 'nl', 'Leave Status', '<p>Betreft: -HR-afdeling/Bedrijf voor het verzenden van een goedkeuringsbrief aan { leave_status } een vakantie of verlof.</p>\n <p>Geachte { leave_status_name },</p>\n <p>Ik heb { leave_status } uw verzoek om verlof voor { leave_reason } van { leave_start_date } tot { leave_end_date }.</p>\n <p>{ total_leave_days } dagen Ik heb { leave_status } uw verzoek om verlof voor { leave_reason }.</p>\n <p>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.</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (156, 13, 'pl', 'Leave Status', '<p>Temat: -Dział kadr/Firma wysyłająca list zatwierdzający do {leave_status } wakacji lub urlopów.</p>\n <p>Drogi {leave_status_name },</p>\n <p>Mam {leave_status } żądanie pozostania dla {leave_reason } od {leave_start_date } do {leave_end_date }.</p>\n <p>{total_leave_days } dni Mam {leave_status } Twoje żądanie opuszczenia dla {leave_reason }.</p>\n <p>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</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (157, 13, 'ru', 'Leave Status', '<p>Тема: -HR отдел/Компания отправить письмо с утверждением на { leave_status } отпуск или отпуск.</p>\n <p>Уважаемый { leave_status_name },</p>\n <p>У меня { leave_status } ваш запрос на отпуск для { leave_reason } из { leave_start_date } в { leave_end_date }.</p>\n <p>{ total_leave_days } дней { leave_status } ваш запрос на отпуск для { leave_reason }.</p>\n <p>Мы просим вас завершить все ваши ожидающие работы или любой другой важный вопрос, чтобы компания не сталкивалась с потерей или проблемой во время вашего отсутствия. Мы ценим вашу задумчивость, чтобы заблаговременно информировать нас о</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (158, 13, 'pt', 'Leave Status', '<p style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de aprovação para {leave_status} férias ou licença.</p>\n <p style=\"font-size: 14.4px;\">Querido {leave_status_name},</p>\n <p style=\"font-size: 14.4px;\">Eu tenho {leave_status} sua solicitação de licença para {leave_reason} de {leave_start_date} para {leave_end_date}.</p>\n <p style=\"font-size: 14.4px;\">{total_leave_days} dias eu tenho {leave_status} o seu pedido de licença para {leave_reason}.</p>\n <p style=\"font-size: 14.4px;\">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</p>\n <p style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p style=\"font-size: 14.4px;\">Obrigado</p>\n <p style=\"font-size: 14.4px;\">Considera,</p>\n <p style=\"font-size: 14.4px;\">Departamento de RH,</p>\n <p style=\"font-size: 14.4px;\">{app_name}</p>', NULL, '{\"App Name\": \"app_name\",\"App Url\": \"app_url\",\"Leave Status Name\": \"leave_status_name\",\"Leave Status\": \"leave_status\",\"Leave Reason\": \"leave_reason\",\"Leave Start Date\": \"leave_start_date\",\"Leave End Date\": \"leave_end_date\",\"Total Leave Days\": \"total_leave_days\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (159, 14, 'ar', 'New Award', '<p>Subject :-إدارة الموارد البشرية / الشركة المعنية بإرسال خطاب تحكيم للاعتراف بموظف</p>\n <p>مرحبا { award_name },</p>\n <p>ويسرني كثيرا أن أرشحها { award_name }</p>\n <p>وإنني مقتنع بأن (هي / هي) هي أفضل موظفة للحصول على الجائزة. وقد أدركت أنها شخصية موجهة نحو تحقيق الأهداف ، وتتسم بالكفاءة والفعالية في التقيد بالمواعيد. إنها دائما على استعداد لمشاركة معرفتها بالتفاصيل</p>\n <p>وبالإضافة إلى ذلك ، قامت (هي / هي) أحيانا بحل النزاعات والحالات الصعبة خلال ساعات العمل. (هي / هي) حصلت على بعض الجوائز من المنظمة غير الحكومية داخل البلد ؛ وكان ذلك بسبب المشاركة في أنشطة خيرية لمساعدة المحتاجين.</p>\n <p>وأعتقد أن هذه الصفات والصفات يجب أن تكون موضع تقدير. ولذلك ، فإن (هي / هي) تستحق أن تمنحها الجائزة بالتالي.</p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p>Regards,</p>\n <p>إدارة الموارد البشرية ،</p>\n <p>{ app_name }</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (160, 14, 'da', 'New Award', '<p>Om: HR-afdelingen / Kompagniet for at sende prisuddeling for at kunne genkende en medarbejder</p>\n <p>Hej { award_name },</p>\n <p>Jeg er meget glad for at nominere {award_name }</p>\n <p>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.</p>\n <p>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.</p>\n <p>Jeg mener, at disse kvaliteter og egenskaber skal værdsætte. Derfor fortjener denne pris, at hun nominerer hende.</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (161, 14, 'de', 'New Award', '<p>Betrifft: -Personalabteilung/Firma zum Versenden von Prämienschreiben, um einen Mitarbeiter zu erkennen</p>\n <p>Hi {award_name},</p>\n <p>Ich freue mich sehr, {award_name} zu nominieren.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Ich glaube, diese Eigenschaften und Eigenschaften müssen gewürdigt werden. Daher verdient (he/she) die Auszeichnung, die sie deshalb nominiert.</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (162, 14, 'en', 'New Award', '<p ><b>Subject:-HR department/Company to send award letter to recognize an employee</b></p>\n <p ><b>Hi {award_name},</b></p>\n <p >I am much pleased to nominate {award_name} </p>\n <p >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.</p>\n <p>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.</p>\n <p>I believe these qualities and characteristics need to be appreciated. Therefore, (he/she) deserves the award hence nominating her.</p>\n <p>Feel free to reach out if you have any questions.</p>\n <p><b>Thank you</b></p>\n <p><b>Regards,</b></p>\n <p><b>HR Department,</b></p>\n <p><b>{app_name}</b></p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (163, 14, 'es', 'New Award', '<p>Asunto: -Departamento de RRHH/Empresa para enviar carta de premios para reconocer a un empleado</p>\n <p>Hi {award_name},</p>\n <p>Estoy muy satisfecho de nominar {award_name}</p>\n <p>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.</p>\n <p>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.</p>\n <p>Creo que estas cualidades y características deben ser apreciadas. Por lo tanto, (h/ella) merece el premio por lo tanto nominarla.</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (164, 14, 'fr', 'New Award', '<p>Objet: -Ministère des RH / Société denvoi dune lettre dattribution pour reconnaître un employé</p>\n <p>Hi { award_name },</p>\n <p>Je suis très heureux de nommer { award_name }</p>\n <p>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.</p>\n <p>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.</p>\n <p>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é.</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (165, 14, 'it', 'New Award', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di premiazione per riconoscere un dipendente</p>\n <p>Ciao {award_name},</p>\n <p>Sono molto lieto di nominare {award_name}</p>\n <p>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.</p>\n <p>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.</p>\n <p>Credo che queste qualità e caratteristiche debbano essere apprezzate. Pertanto, (he/lei) merita il premio da qui la nomina.</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (166, 14, 'ja', 'New Award', '<p>件名: 従業員を認識するための表彰書を送信するための、人事部門/ 会社</p>\n <p>やあ {award_name }</p>\n <p>{award_name }をノミネートしたいと考えています。</p>\n <p>私は ( 彼女が ) 賞のための最高の従業員だと満足している。 私は彼女が、自分が目標指向の人間であり、効率的で、非常に時間厳守であることに気付きました。 彼女はいつも詳細についての知識を共有する準備ができている。</p>\n <p>また、時には労働時間内に紛争や困難な状況を解決することがある。 ( 彼女は ) 国内の非政府組織からいくつかの賞を受賞している。このことは、慈善活動に参加して、貧窮者を助けるためのものだった。</p>\n <p>これらの特性と特徴を評価する必要があると思います。 そのため、 ( 相続人は ) 賞に値するので彼女を指名することになる。</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (167, 14, 'nl', 'New Award', '<p>Betreft: -HR-afdeling/Bedrijf om een gunningsbrief te sturen om een werknemer te herkennen</p>\n <p>Hallo { award_name },</p>\n <p>Ik ben erg blij om { award_name } te nomineren</p>\n <p>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.</p>\n <p>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.</p>\n <p>Ik ben van mening dat deze kwaliteiten en eigenschappen moeten worden gewaardeerd. Daarom, (he/she) verdient de award dus nomineren haar.</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (168, 14, 'pl', 'New Award', '<p>Temat:-Dział HR/Firma do wysyłania listów wyróżnienia do rozpoznania pracownika</p>\n <p>Witaj {award_name },</p>\n <p>Jestem bardzo zadowolony z nominacji {award_name }</p>\n <p>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.</p>\n <p>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.</p>\n <p>Uważam, że te cechy i cechy muszą być docenione. Dlatego też, (he/she) zasługuje na nagrodę, stąd nominowanie jej.</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (169, 14, 'ru', 'New Award', '<p>Тема: -HR отдел/Компания отправить награда письмо о признании сотрудника</p>\n <p>Здравствуйте, { award_name },</p>\n <p>Мне очень приятно номинировать { award_name }</p>\n <p>Я удовлетворена тем, что (х/она) является лучшим работником премии. Я понял, что она ориентированная на цель человек, эффективная и очень пунктуальная. Она всегда готова поделиться своими знаниями о деталях.</p>\n <p>Кроме того, время от времени решались конфликты и сложные ситуации в рабочее время. (она) получила некоторые награды от неправительственной организации в стране; это было связано с тем, что они приняли участие в благотворительной деятельности, чтобы помочь нуждающимся.</p>\n <p>Я считаю, что эти качества и характеристики заслуживают высокой оценки. Таким образом, она заслуживает того, чтобы наградить ее таким образом.</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (170, 14, 'pt', 'New Award', '<p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de premiação para reconhecer um funcionário</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Oi {award_name},</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Estou muito satisfeito em nomear {award_name}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Eu acredito que essas qualidades e características precisam ser apreciadas. Por isso, (he/she) merece o prêmio daí nomeando-a.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Obrigado</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Considera,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Departamento de RH,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{app_name}</span></p>', NULL, '{\n \"Award Name\": \"award_name\",\n \"Award Date\": \"award_date\",\n \"Award Type\": \"award_type\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (171, 15, 'ar', 'Employee Transfer', '<p>Subject : -HR ادارة / شركة لارسال خطاب نقل الى موظف من مكان الى آخر.</p>\n <p>عزيزي { transfer_name },</p>\n <p>وفقا لتوجيهات الادارة ، يتم نقل الخدمات الخاصة بك w.e.f. { transfer_date }.</p>\n <p>مكان الادخال الجديد الخاص بك هو { transfer_department } قسم من فرع { transfer_branch } وتاريخ التحويل { transfer_date }.</p>\n <p>{ transfer_description }.</p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p>Regards,</p>\n <p>إدارة الموارد البشرية ،</p>\n <p>{ app_name }</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (172, 15, 'da', 'Employee Transfer', '<p>Emne:-HR-afdelingen / kompagniet om at sende overførsels brev til en medarbejder fra den ene lokalitet til den anden.</p>\n <p>Kære { transfer_name },</p>\n <p>Som Styring af direktiver overføres dine serviceydelser w.e.f. { transfer_date }.</p>\n <p>Dit nye sted for postering er { transfer_departement } afdeling af { transfer_branch } gren og dato for overførsel { transfer_date }.</p>\n <p>{ transfer_description }.</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (173, 15, 'de', 'Employee Transfer', '<p>Betreff: -Personalabteilung/Unternehmen, um einen Überweisungsschreiben an einen Mitarbeiter von einem Standort an einen anderen zu senden.</p>\n <p>Sehr geehrter {transfer_name},</p>\n <p>Wie pro Management-Direktiven werden Ihre Dienste über w.e.f. {transfer_date} übertragen.</p>\n <p>Ihr neuer Ort der Entsendung ist {transfer_department} Abteilung von {transfer_branch} Niederlassung und Datum der Übertragung {transfer_date}.</p>\n <p>{transfer_description}.</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (174, 15, 'en', 'Employee Transfer', '<p ><b>Subject:-HR department/Company to send transfer letter to be issued to an employee from one location to another.</b></p>\n <p ><b>Dear {transfer_name},</b></p>\n <p >As per Management directives, your services are being transferred w.e.f.{transfer_date}. </p>\n <p >Your new place of posting is {transfer_department} department of {transfer_branch} branch and date of transfer {transfer_date}. </p>\n {transfer_description}.\n <p>Feel free to reach out if you have any questions.</p>\n <p><b>Thank you</b></p>\n <p><b>Regards,</b></p>\n <p><b>HR Department,</b></p>\n <p><b>{app_name}</b></p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (175, 15, 'es', 'Employee Transfer', '<p>Asunto: -Departamento de RR.HH./Empresa para enviar carta de transferencia a un empleado de un lugar a otro.</p>\n <p>Estimado {transfer_name},</p>\n <p>Según las directivas de gestión, los servicios se transfieren w.e.f. {transfer_date}.</p>\n <p>El nuevo lugar de publicación es el departamento {transfer_department} de la rama {transfer_branch} y la fecha de transferencia {transfer_date}.</p>\n <p>{transfer_description}.</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (176, 15, 'fr', 'Employee Transfer', '<p>Objet: -Ministère des RH / Société denvoi dune lettre de transfert à un employé dun endroit à un autre.</p>\n <p>Cher { transfer_name },</p>\n <p>Selon les directives de gestion, vos services sont transférés dans w.e.f. { transfer_date }.</p>\n <p>Votre nouveau lieu daffectation est le département { transfer_department } de la branche { transfer_branch } et la date de transfert { transfer_date }.</p>\n <p>{ description_transfert }.</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (177, 15, 'it', 'Employee Transfer', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di trasferimento da rilasciare a un dipendente da una località allaltra.</p>\n <p>Caro {transfer_name},</p>\n <p>Come per le direttive di Management, i tuoi servizi vengono trasferiti w.e.f. {transfer_date}.</p>\n <p>Il tuo nuovo luogo di distacco è {transfer_department} dipartimento di {transfer_branch} ramo e data di trasferimento {transfer_date}.</p>\n <p>{transfer_description}.</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (178, 15, 'ja', 'Employee Transfer', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di trasferimento da rilasciare a un dipendente da una località allaltra.</p>\n <p>Caro {transfer_name},</p>\n <p>Come per le direttive di Management, i tuoi servizi vengono trasferiti w.e.f. {transfer_date}.</p>\n <p>Il tuo nuovo luogo di distacco è {transfer_department} dipartimento di {transfer_branch} ramo e data di trasferimento {transfer_date}.</p>\n <p>{transfer_description}.</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (179, 15, 'nl', 'Employee Transfer', '<p>Betreft: -HR-afdeling/Bedrijf voor verzending van overdrachtsbrief aan een werknemer van de ene plaats naar de andere.</p>\n <p>Geachte { transfer_name },</p>\n <p>Als per beheerinstructie worden uw services overgebracht w.e.f. { transfer_date }.</p>\n <p>Uw nieuwe plaats van post is { transfer_department } van de afdeling { transfer_branch } en datum van overdracht { transfer_date }.</p>\n <p>{ transfer_description }.</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (180, 15, 'pl', 'Employee Transfer', '<p>Temat:-Dział HR/Firma do wysyłania listu przelewowego, który ma być wydany pracownikowi z jednego miejsca do drugiego.</p>\n <p>Droga {transfer_name },</p>\n <p>Zgodnie z dyrektywami zarządzania, Twoje usługi są przesyłane w.e.f. {transfer_date }.</p>\n <p>Twoje nowe miejsce delegowania to {transfer_department } dział {transfer_branch } gałąź i data transferu {transfer_date }.</p>\n <p>{transfer_description }.</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (181, 15, 'ru', 'Employee Transfer', '<p>Тема: -HR отдел/Компания для отправки трансферного письма сотруднику из одного места в другое.</p>\n <p>Уважаемый { transfer_name },</p>\n <p>В соответствии с директивами управления ваши службы передаются .ef. { transfer_date }.</p>\n <p>Новое место разноски: { transfer_department} подразделение { transfer_branch } и дата передачи { transfer_date }.</p>\n <p>{ transfer_description }.</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (182, 15, 'pt', 'Employee Transfer', '<p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de transferência para ser emitida para um funcionário de um local para outro.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Querido {transfer_name},</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Conforme diretivas de Gerenciamento, seus serviços estão sendo transferidos w.e.f. {transfer_date}.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">O seu novo local de postagem é {transfer_departamento} departamento de {transfer_branch} ramo e data de transferência {transfer_date}.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{transfer_description}.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Obrigado</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Considera,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Departamento de RH,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{app_name}</span></p>', NULL, '{\n \"Transfer Name\": \"transfer_name\",\n \"Transfer Date\": \"transfer_date\",\n \"Transfer Branch\": \"transfer_branch\",\n \"Transfer Department\": \"transfer_department\",\n \"Transfer Description\": \"transfer_description\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (183, 16, 'ar', 'Employee Resignation', '<p>Subject :-قسم الموارد البشرية / الشركة لإرسال خطاب استقالته.</p>\n <p>عزيزي { assign_user } ،</p>\n <p>إنه لمن دواعي الأسف الشديد أن أعترف رسميا باستلام إشعار استقالتك في { notice_date } الى { resignation_date } هو اليوم الأخير لعملك.</p>\n <p>لقد كان من دواعي سروري العمل معكم ، وبالنيابة عن الفريق ، أود أن أتمنى لكم أفضل جدا في جميع مساعيكم في المستقبل. ومن خلال هذه الرسالة ، يرجى العثور على حزمة معلومات تتضمن معلومات مفصلة عن عملية الاستقالة.</p>\n <p>شكرا لكم مرة أخرى على موقفكم الإيجابي والعمل الجاد كل هذه السنوات.</p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p>Regards,</p>\n <p>إدارة الموارد البشرية ،</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (184, 16, 'da', 'Employee Resignation', '<p>Om: HR-afdelingen / Kompagniet, for at sende en opsigelse.</p>\n <p>Kære { assign_user },</p>\n <p>Det er med stor beklagelse, at jeg formelt anerkender modtagelsen af din opsigelsesmeddelelse på { notice_date } til { resignation_date } er din sidste arbejdsdag</p>\n <p>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.</p>\n <p>Endnu en gang tak for Deres positive holdning og hårde arbejde i alle disse år.</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (185, 16, 'de', 'Employee Resignation', '<p>Betreff: -Personalabteilung/Firma, um Rückmeldungsschreiben zu senden.</p>\n <p>Sehr geehrter {assign_user},</p>\n <p>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.</p>\n <p>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.</p>\n <p>Vielen Dank noch einmal für Ihre positive Einstellung und harte Arbeit all die Jahre.</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (186, 16, 'en', 'Employee Resignation', '<p ><b>Subject:-HR department/Company to send resignation letter .</b></p>\n <p ><b>Dear {assign_user},</b></p>\n <p >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. </p>\n <p >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. </p>\n <p>Thank you again for your positive attitude and hard work all these years.</p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><b>Regards,</b></p>\n <p><b>HR Department,</b></p>\n <p><b>{app_name}</b></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (187, 16, 'es', 'Employee Resignation', '<p>Asunto: -Departamento de RRHH/Empresa para enviar carta de renuncia.</p>\n <p>Estimado {assign_user},</p>\n <p>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.</p>\n <p>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.</p>\n <p>Gracias de nuevo por su actitud positiva y trabajo duro todos estos años.</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (188, 16, 'fr', 'Employee Resignation', '<p>Objet: -Département RH / Société denvoi dune lettre de démission.</p>\n <p>Cher { assign_user },</p>\n <p>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.</p>\n <p>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.</p>\n <p>Je vous remercie encore de votre attitude positive et de votre travail acharne durant toutes ces années.</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (189, 16, 'it', 'Employee Resignation', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di dimissioni.</p>\n <p>Caro {assign_user},</p>\n <p>È 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.</p>\n <p>È 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.</p>\n <p>Grazie ancora per il vostro atteggiamento positivo e duro lavoro in tutti questi anni.</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (190, 16, 'ja', 'Employee Resignation', '<p>件名:-HR 部門/企業は辞表を送信します。</p>\n <p>{assign_user} の認証を解除します。</p>\n <p>{ notice_date} に対するあなたの辞任通知を { resignation_date} に正式に受理することを正式に確認することは、非常に残念です。</p>\n <p>あなたと一緒に仕事をしていて、チームのために、あなたの将来の努力において、あなたのことを最高のものにしたいと思っています。 このレターには、辞任プロセスに関する詳細な情報が記載されている情報パケットをご覧ください。</p>\n <p>これらの長年の前向きな姿勢と努力を重ねて感謝します。</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (191, 16, 'nl', 'Employee Resignation', '<p>Betreft: -HR-afdeling/Bedrijf om ontslagbrief te sturen.</p>\n <p>Geachte { assign_user },</p>\n <p>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.</p>\n <p>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.</p>\n <p>Nogmaals bedankt voor uw positieve houding en hard werken al die jaren.</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (192, 16, 'pl', 'Employee Resignation', '<p>Temat: -Dział HR/Firma do wysyłania listu rezygnacyjnego.</p>\n <p>Drogi użytkownika {assign_user },</p>\n <p>Z wielkim żalem, że oficjalnie potwierdzam otrzymanie powiadomienia o rezygnacji w dniu {notice_date } to {resignation_date } to twój ostatni dzień pracy.</p>\n <p>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.</p>\n <p>Jeszcze raz dziękuję za pozytywne nastawienie i ciężką pracę przez te wszystkie lata.</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (193, 16, 'ru', 'Employee Resignation', '<p>Тема: -HR отдел/Компания отправить письмо об отставке.</p>\n <p>Уважаемый пользователь { assign_user },</p>\n <p>С большим сожалением я официально подтверждаю получение вашего уведомления об отставке { notice_date } в { resignation_date }-это ваш последний день работы.</p>\n <p>С Вами было приятно работать, и от имени команды я хотел бы по# желать вам самого лучшего во всех ваших будущих начинаниях. В этом письме Вы можете найти информационный пакет с подробной информацией об отставке.</p>\n <p>Еще раз спасибо за ваше позитивное отношение и трудолюбие все эти годы.</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (194, 16, 'pt', 'Employee Resignation', '<p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de demissão.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Querido {assign_user},</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">É 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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Obrigado novamente por sua atitude positiva e trabalho duro todos esses anos.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Obrigado</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Considera,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Departamento de RH,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee Name\": \"assign_user\",\n \"Last Working Date\": \"resignation_date\",\n \"Resignation Date\": \"notice_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (195, 17, 'ar', 'Employee Trip', '<p>Subject : -HR ادارة / شركة لارسال رسالة رحلة.</p>\n <p>عزيزي { employee_trip_name },</p>\n <p>قمة الصباح إليك ! أكتب إلى مكتب إدارتكم بطلب متواضع للسفر من أجل زيارة إلى الخارج عن قصد.</p>\n <p>وسيكون هذا المنتدى هو المنتدى الرئيسي لأعمال المناخ في العام ، وقد كان محظوظا بما فيه الكفاية لكي يرشح لتمثيل شركتنا والمنطقة خلال الحلقة الدراسية.</p>\n <p>إن عضويتي التي دامت ثلاث سنوات كجزء من المجموعة والمساهمات التي قدمتها إلى الشركة ، ونتيجة لذلك ، كانت مفيدة من الناحية التكافلية. وفي هذا الصدد ، فإنني أطلب منكم بصفتي الرئيس المباشر لي أن يسمح لي بالحضور.</p>\n <p>مزيد من التفاصيل عن الرحلة : </p>\n <p>مدة الرحلة : { start_date } الى { end_date }</p>\n <p>الغرض من الزيارة : { purpose_of_visit }</p>\n <p>مكان الزيارة : { place_of_visit }</p>\n <p>الوصف : { trip_description }</p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p>Regards,</p>\n <p>إدارة الموارد البشرية ،</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (196, 17, 'da', 'Employee Trip', '<p>Om: HR-afdelingen / Kompagniet, der skal sende udflugten.</p>\n <p>Kære { employee_trip_name },</p>\n <p>Godmorgen til dig! Jeg skriver til dit kontor med en ydmyg anmodning om at rejse for en { purpose_of_visit } i udlandet.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Flere oplysninger om turen:</p>\n <p>Trip Duration: { start_date } til { end_date }</p>\n <p>Formålet med Besøg: { purpose_of_visit }</p>\n <p>Plads af besøg: { place_of_visit }</p>\n <p>Beskrivelse: { trip_description }</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (197, 17, 'de', 'Employee Trip', '<p>Betreff: -Personalabteilung/Firma, um Reisebrief zu schicken.</p>\n <p>Sehr geehrter {employee_trip_name},</p>\n <p>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.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Mehr Details zu Reise:</p>\n <p>Dauer der Fahrt: {start_date} bis {end_date}</p>\n <p>Zweck des Besuchs: {purpose_of_visit}</p>\n <p>Ort des Besuchs: {place_of_visit}</p>\n <p>Beschreibung: {trip_description}</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (198, 17, 'en', 'Employee Trip', '<p><strong>Subject:-HR department/Company to send trip letter .</strong></p>\n <p><strong>Dear {employee_trip_name},</strong></p>\n <p>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.</p>\n <p>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.</p>\n <p>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.</p>\n <p>More detail about trip:{start_date} to {end_date}</p>\n <p>Trip Duration:{start_date} to {end_date}</p>\n <p>Purpose of Visit:{purpose_of_visit}</p>\n <p>Place of Visit:{place_of_visit}</p>\n <p>Description:{trip_description}</p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><strong>{app_name}</strong></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (199, 17, 'es', 'Employee Trip', '<p>Asunto: -Departamento de RRHH/Empresa para enviar carta de viaje.</p>\n <p>Estimado {employee_trip_name},</p>\n <p>¡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.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Más detalles sobre el viaje: </p>\n <p>Duración del viaje: {start_date} a {end_date}</p>\n <p>Finalidad de la visita: {purpose_of_visit}</p>\n <p>Lugar de visita: {place_of_visit}</p>\n <p>Descripción: {trip_description}</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (200, 17, 'fr', 'Employee Trip', '<p>Objet: -Service des RH / Compagnie pour envoyer une lettre de voyage.</p>\n <p>Cher { employee_trip_name },</p>\n <p>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.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Plus de détails sur le voyage:</p>\n <p>Durée du voyage: { start_date } à { end_date }</p>\n <p>Objet de la visite: { purpose_of_visit}</p>\n <p>Lieu de visite: { place_of_visit }</p>\n <p>Description: { trip_description }</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (201, 17, 'it', 'Employee Trip', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di viaggio.</p>\n <p>Caro {employee_trip_name},</p>\n <p>In cima al mattino a te! Scrivo al tuo ufficio dipartimento con umile richiesta di viaggio per un {purpose_of_visit} allestero.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Più dettagli sul viaggio:</p>\n <p>Trip Duration: {start_date} a {end_date}</p>\n <p>Finalità di Visita: {purpose_of_visit}</p>\n <p>Luogo di Visita: {place_of_visit}</p>\n <p>Descrizione: {trip_description}</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (202, 17, 'ja', 'Employee Trip', '<p>件名:-HR 部門/会社は出張レターを送信します。</p>\n <p>{ employee_trip_name} に出庫します。</p>\n <p>朝のトップだ ! 海外で {purpose_of_visit} をお願いしたいという謙虚な要求をもって、私はあなたの部署に手紙を書いています。</p>\n <p>これは、今年の主要な気候ビジネス・フォーラムとなり、セミナーの開催中に当社と地域を代表する候補になるほど幸運にも恵まれています。</p>\n <p>私が会社に対して行った 3 年間のメンバーシップは、その結果として、共生的に有益なものでした。 その点では、私は、私が出席することを許可することを、私の即座の上司として</p>\n <p>トリップについての詳細 :</p>\n <p>トリップ期間:{start_date} を {end_date} に設定します</p>\n <p>アクセスの目的 :{purpose_of_visit}</p>\n <p>訪問の場所 :{place_of_visit}</p>\n <p>説明:{trip_description}</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (203, 17, 'nl', 'Employee Trip', '<p>Betreft: -HR-afdeling/Bedrijf om reisbrief te sturen.</p>\n <p>Geachte { employee_trip_name },</p>\n <p>Top van de ochtend aan u! Ik schrijf uw afdelingsbureau met een bescheiden verzoek om een { purpose_of_visit } in het buitenland te bezoeken.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Meer details over reis:</p>\n <p>Duur van reis: { start_date } tot { end_date }</p>\n <p>Doel van bezoek: { purpose_of_visit }</p>\n <p>Plaats van bezoek: { place_of_visit }</p>\n <p>Beschrijving: { trip_description }</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u we</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (204, 17, 'pl', 'Employee Trip', '<p>Temat:-Dział HR/Firma do wysyłania listu podróży.</p>\n <p>Szanowny {employee_trip_name },</p>\n <p>Od samego rana do Ciebie! Piszę do twojego biura, z pokornym prośbą o wyjazd na {purpose_of_visit } za granicą.</p>\n <p>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.</p>\n <p>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.</p>\n <p>Więcej szczegółów na temat wyjazdu:</p>\n <p>Czas trwania rejsu: {start_date } do {end_date }</p>\n <p>Cel wizyty: {purpose_of_visit }</p>\n <p>Miejsce wizyty: {place_of_visit }</p>\n <p>Opis: {trip_description }</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (205, 17, 'ru', 'Employee Trip', '<p>Тема: -HR отдел/Компания для отправки письма на поездку.</p>\n <p>Уважаемый { employee_trip_name },</p>\n <p>С утра до тебя! Я пишу в ваш отдел с смиренным запросом на поездку за границу.</p>\n <p>Это был бы ведущий климатический бизнес-форум года и по везло, что в ходе семинара он будет представлять нашу компанию и регион.</p>\n <p>Мое трехлетнее членство в составе группы и взносы, которые я внес в компанию, в результате, были симбиотически выгодны. В этой связи я прошу вас как моего непосредственного начальника разрешить мне присутствовать.</p>\n <p>Подробнее о поездке:</p>\n <p>Длительность поездки: { start_date } в { end_date }</p>\n <p>Цель посещения: { purpose_of_visit }</p>\n <p>Место посещения: { place_of_visit }</p>\n <p>Описание: { trip_description }</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (206, 17, 'pt', 'Employee Trip', '<p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de viagem.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Querido {employee_trip_name},</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">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.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Mais detalhes sobre viagem:</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Trip Duração: {start_date} a {end_date}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Objetivo da Visita: {purpose_of_visit}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Local de Visita: {place_of_visit}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Descrição: {trip_description}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Obrigado</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Considera,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Departamento de RH,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_trip_name\",\n \"Purpose of Trip\": \"purpose_of_visit\",\n \"Start Date\": \"start_date\",\n \"End Date\": \"end_date\",\n \"End Date\": \"end_date\",\n \"Place\": \"place_of_visit\",\n \"Description\": \"trip_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (207, 18, 'ar', 'Employee Promotion', '<p>Subject : -HR القسم / الشركة لارسال رسالة تهنئة الى العمل للتهنئة بالعمل.</p>\n <p>عزيزي { employee_promotion_name },</p>\n <p>تهاني على ترقيتك الى { promotion_designation } { promotion_title } الفعال { promotion_date }.</p>\n <p>وسنواصل توقع تحقيق الاتساق وتحقيق نتائج عظيمة منكم في دوركم الجديد. ونأمل أن تكون قدوة للموظفين الآخرين في المنظمة.</p>\n <p>ونتمنى لكم التوفيق في أداءكم في المستقبل ، وتهانينا !</p>\n <p>ومرة أخرى ، تهانئي على الموقف الجديد.</p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p>Regards,</p>\n <p>إدارة الموارد البشرية ،</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (208, 18, 'da', 'Employee Promotion', '<p>Om: HR-afdelingen / Virksomheden om at sende en lykønskning til jobfremstød.</p>\n <p>Kære { employee_promotion_name },</p>\n <p>Tillykke med din forfremmelse til { promotion_designation } { promotion_title } effektiv { promotion_date }.</p>\n <p>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.</p>\n <p>Vi ønsker Dem held og lykke med Deres fremtidige optræden, og tillykke!</p>\n <p>Endnu en gang tillykke med den nye holdning.</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (209, 18, 'de', 'Employee Promotion', '<p>Betrifft: -Personalabteilung/Unternehmen, um einen Glückwunschschreiben zu senden.</p>\n <p>Sehr geehrter {employee_promotion_name},</p>\n <p>Herzlichen Glückwunsch zu Ihrer Werbeaktion an {promotion_designation} {promotion_title} wirksam {promotion_date}.</p>\n <p>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.</p>\n <p>Wir wünschen Ihnen viel Glück für Ihre zukünftige Leistung, und gratulieren!</p>\n <p>Nochmals herzlichen Glückwunsch zu der neuen Position.</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (210, 18, 'en', 'Employee Promotion', '<p> </p>\n <p><strong>Subject:-HR department/Company to send job promotion congratulation letter.</strong></p>\n <p><strong>Dear {employee_promotion_name},</strong></p>\n <p>Congratulations on your promotion to {promotion_designation} {promotion_title} effective {promotion_date}.</p>\n <p>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.</p>\n <p>We wish you luck for your future performance, and congratulations!.</p>\n <p>Again, congratulations on the new position.</p>\n <p> </p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><strong>{app_name}</strong></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (211, 18, 'es', 'Employee Promotion', '<p>Asunto: -Departamento de RRHH/Empresa para enviar carta de felicitación de promoción de empleo.</p>\n <p>Estimado {employee_promotion_name},</p>\n <p>Felicidades por su promoción a {promotion_designation} {promotion_title} efectiva {promotion_date}.</p>\n <p>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.</p>\n <p>Le deseamos suerte para su futuro rendimiento, y felicitaciones!.</p>\n <p>Una vez más, felicidades por la nueva posición.</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (212, 18, 'fr', 'Employee Promotion', '<p>Objet: -Département RH / Société denvoi dune lettre de félicitations pour la promotion de lemploi.</p>\n <p>Cher { employee_promotion_name },</p>\n <p>Félicitations pour votre promotion à { promotion_désignation } { promotion_title } effective { promotion_date }.</p>\n <p>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.</p>\n <p>Nous vous souhaitons bonne chance pour vos performances futures et félicitations !</p>\n <p>Encore une fois, félicitations pour le nouveau poste.</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (213, 18, 'it', 'Employee Promotion', '<p>Oggetto: - Dipartimento HR / Società per inviare la lettera di congratulazioni alla promozione del lavoro.</p>\n <p>Caro {employee_promotion_name},</p>\n <p>Complimenti per la tua promozione a {promotion_designation} {promotion_title} efficace {promotion_date}.</p>\n <p>Continueremo ad aspettarci coerenza e grandi risultati da te nel tuo nuovo ruolo. Ci auguriamo di impostare un esempio per gli altri dipendenti dellorganizzazione.</p>\n <p>Ti auguriamo fortuna per le tue prestazioni future, e complimenti!.</p>\n <p>Ancora, complimenti per la nuova posizione.</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (214, 18, 'ja', 'Employee Promotion', '<p>件名:-HR 部門/企業は、求人広告の祝賀状を送信します。</p>\n <p>{ employee_promotion_name} に出庫します。</p>\n <p>{promotion_designation } { promotion_title} {promotion_date} 販促に対するお祝いのお祝いがあります。</p>\n <p>今後とも、お客様の新しい役割において一貫性と大きな成果を期待します。 組織の他の従業員の例を設定したいと考えています。</p>\n <p>あなたの未来のパフォーマンスをお祈りします。おめでとうございます。</p>\n <p>また、新しい地位について祝意を表する。</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (215, 18, 'nl', 'Employee Promotion', '<p>Betreft: -HR-afdeling/Bedrijf voor het versturen van de aanbevelingsbrief voor taakpromotie.</p>\n <p>Geachte { employee_promotion_name },</p>\n <p>Gefeliciteerd met uw promotie voor { promotion_designation } { promotion_title } effective { promotion_date }.</p>\n <p>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.</p>\n <p>Wij wensen u geluk voor uw toekomstige prestaties, en gefeliciteerd!.</p>\n <p>Nogmaals, gefeliciteerd met de nieuwe positie.</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (216, 18, 'pl', 'Employee Promotion', '<p>Temat: -Dział kadr/Firma w celu wysłania listu gratulacyjnego dla promocji zatrudnienia.</p>\n <p>Szanowny {employee_promotion_name },</p>\n <p>Gratulacje dla awansowania do {promotion_designation } {promotion_title } efektywnej {promotion_date }.</p>\n <p>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.</p>\n <p>Życzymy powodzenia dla przyszłych wyników, gratulujemy!.</p>\n <p>Jeszcze raz gratulacje na nowej pozycji.</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (217, 18, 'ru', 'Employee Promotion', '<p>Тема: -HR отдел/Компания для отправки письма с поздравлением.</p>\n <p>Уважаемый { employee_promotion_name },</p>\n <p>Поздравляем вас с продвижением в { promotion_designation } { promotion_title } эффективная { promotion_date }.</p>\n <p>Мы будем и впредь ожидать от вас соответствия и больших результатов в вашей новой роли. Мы надеемся, что вы станете примером для других сотрудников организации.</p>\n <p>Желаем вам удачи и поздравлений!</p>\n <p>Еще раз поздравляю с новой позицией.</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (218, 18, 'pt', 'Employee Promotion', '<p style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de felicitação de promoção de emprego.</p>\n <p style=\"font-size: 14.4px;\">Querido {employee_promotion_name},</p>\n <p style=\"font-size: 14.4px;\">Parabéns pela sua promoção para {promotion_designation} {promotion_title} efetivo {promotion_date}.</p>\n <p style=\"font-size: 14.4px;\">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.</p>\n <p style=\"font-size: 14.4px;\">Desejamos sorte para o seu desempenho futuro, e parabéns!.</p>\n <p style=\"font-size: 14.4px;\">Novamente, parabéns pela nova posição.</p>\n <p style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p style=\"font-size: 14.4px;\">Obrigado</p>\n <p style=\"font-size: 14.4px;\">Considera,</p>\n <p style=\"font-size: 14.4px;\">Departamento de RH,</p>\n <p style=\"font-size: 14.4px;\">{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_promotion_name\",\n \"Designation\": \"promotion_designation\",\n \"Promotion Title\": \"promotion_title\",\n \"Promotion Date\": \"promotion_date\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (219, 19, 'ar', 'Employee Complaints', '<p>Subject :-قسم الموارد البشرية / الشركة لإرسال رسالة شكوى.</p>\n <p>عزيزي { employee_complaints_name },</p>\n <p>وأود أن أبلغ عن صراعا بينكم وبين الشخص الآخر. فقد وقعت عدة حوادث خلال الأيام القليلة الماضية ، وأشعر أن الوقت قد حان لتقديم شكوى رسمية ضده / لها.</p>\n <p>إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</p>\n <p>شكرا لك</p>\n <p>Regards,</p>\n <p>إدارة الموارد البشرية ،</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (220, 19, 'da', 'Employee Complaints', '<p>Om: HR-departementet / Kompagniet for at sende klager.</p>\n <p>Kære { employee_complaints_name },</p>\n <p>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.</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (221, 19, 'de', 'Employee Complaints', '<p>Betrifft: -Personalabteilung/Unternehmen zum Senden von Beschwerden.</p>\n <p>Sehr geehrter {employee_complaints_name},</p>\n <p>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.</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (222, 19, 'en', 'Employee Complaints', '<p><strong>Subject:-HR department/Company to send complaints letter.</strong></p>\n <p><strong>Dear {employee_complaints_name},</strong></p>\n <p>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.</p>\n <p> </p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><strong>{app_name}</strong></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (223, 19, 'es', 'Employee Complaints', '<p>Asunto: -Departamento de RRHH/Empresa para enviar carta de quejas.</p>\n <p>Estimado {employee_complaints_name},</p>\n <p>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.</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (224, 19, 'fr', 'Employee Complaints', '<p>Objet: -Service des ressources humaines / Compagnie pour envoyer une lettre de plainte.</p>\n <p>Cher { employee_complaints_name },</p>\n <p>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.</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (225, 19, 'it', 'Employee Complaints', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di reclamo.</p>\n <p>Caro {employee_complaints_name},</p>\n <p>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.</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (226, 19, 'ja', 'Employee Complaints', '<p>件名:-HR 部門/会社は、クレーム・レターを送信します。</p>\n <p>{ employee_complaints_name} の Dear </p>\n <p>あなたと他の人との間の葛藤を報告したいと思いますこの数日間でいくつかの事件が発生しています彼女に対する正式な申し立てをする時だと感じています</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (227, 19, 'nl', 'Employee Complaints', '<p>Betreft: -HR-afdeling/Bedrijf voor het verzenden van klachtenbrief.</p>\n <p>Geachte { employee_complaints_name},</p>\n <p>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.</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (228, 19, 'pl', 'Employee Complaints', '<p>Temat:-Dział HR/Firma do wysyłania listu reklamowego.</p>\n <p>Szanowna {employee_complaints_name },</p>\n <p>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.</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (229, 19, 'ru', 'Employee Complaints', '<p>Тема: -HR отдел/Компания отправить письмо с жалобами.</p>\n <p>Уважаемый { employee_complaints_name }</p>\n <p>Я хотел бы сообщить о конфликте между вами и другим человеком. За последние несколько дней произошло несколько инцидентов, и я считаю, что пришло время сообщить о своей официальной жалобе.</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (230, 19, 'pt', 'Employee Complaints', '<p>Assunto:-Departamento de RH / Empresa para enviar carta de reclamações.</p>\n <p>Querido {employee_complaints_name},</p>\n <p>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.</p>\n <p>Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p>Obrigado</p>\n <p>Considera,</p>\n <p>Departamento de RH,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_complaints_name\",\n \"description\": \"complaints_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (231, 20, 'ar', 'Employee Warning', '<p style=\"text-align: left;\"><span style=\"font-size: 12pt;\"><span style=\"color: #222222;\"><span style=\"white-space: pre-wrap;\">Subject : -HR ادارة / شركة لارسال رسالة تحذير. عزيزي { employe_warning_name }, { warning_subject } { warning_description } إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة. شكرا لك Regards, إدارة الموارد البشرية ، { app_name }</span></span></span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (232, 20, 'da', 'Employee Warning', '<p>Om: HR-afdelingen / kompagniet for at sende advarselsbrev.</p>\n <p>Kære { employee_warning_name },</p>\n <p>{ warning_subject }</p>\n <p>{ warning_description }</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (233, 20, 'de', 'Employee Warning', '<p>Betreff: -Personalabteilung/Unternehmen zum Senden von Warnschreiben.</p>\n <p>Sehr geehrter {employee_warning_name},</p>\n <p>{warning_subject}</p>\n <p>{warning_description}</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (234, 20, 'en', 'Employee Warning', '<p><strong>Subject:-HR department/Company to send warning letter.</strong></p>\n <p><strong>Dear {employee_warning_name},</strong></p>\n <p>{warning_subject}</p>\n <p>{warning_description}</p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><strong>{app_name}</strong></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (235, 20, 'es', 'Employee Warning', '<p>Asunto: -Departamento de RR.HH./Empresa para enviar carta de advertencia.</p>\n <p>Estimado {employee_warning_name},</p>\n <p>{warning_subject}</p>\n <p>{warning_description}</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (236, 20, 'fr', 'Employee Warning', '<p>Objet: -HR department / Company to send warning letter.</p>\n <p>Cher { employee_warning_name },</p>\n <p>{ warning_subject }</p>\n <p>{ warning_description }</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (237, 20, 'it', 'Employee Warning', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di avvertimento.</p>\n <p>Caro {employee_warning_name},</p>\n <p>{warning_subject}</p>\n <p>{warning_description}</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (238, 20, 'ja', 'Employee Warning', '<p><span style=\"font-size: 12pt;\"><span style=\"color: #222222;\"><span style=\"white-space: pre-wrap;\">件名:-HR 部門/企業は警告レターを送信します。 { employee_warning_name} を出庫します。 {warning_subject} {warning_description} 質問がある場合は、自由に連絡してください。 ありがとう よろしく HR 部門 {app_name}</span></span></span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (239, 20, 'nl', 'Employee Warning', '<p>Betreft: -HR-afdeling/bedrijf om een waarschuwingsbrief te sturen.</p>\n <p>Geachte { employee_warning_name },</p>\n <p>{ warning_subject }</p>\n <p>{ warning_description }</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (240, 20, 'pl', 'Employee Warning', '<p>Temat: -Dział HR/Firma do wysyłania listu ostrzegawczego.</p>\n <p>Szanowny {employee_warning_name },</p>\n <p>{warning_subject }</p>\n <p>{warning_description }</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (241, 20, 'ru', 'Employee Warning', '<p>Тема: -HR отдел/Компания для отправки предупреждающего письма.</p>\n <p>Уважаемый { employee_warning_name },</p>\n <p>{ warning_subject }</p>\n <p>{ warning_description }</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (242, 20, 'pt', 'Employee Warning', '<p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de advertência.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Querido {employee_warning_name},</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{warning_subject}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{warning_description}</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Obrigado</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Considera,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">Departamento de RH,</span></p>\n <p style=\"font-size: 14.4px;\"><span style=\"font-size: 14.4px;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Employee\": \"employee_warning_name\",\n \"Subject\": \"warning_subject\",\n \"Description\": \"warning_description\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (243, 21, 'ar', 'Employee Termination', '<p style=\"text-align: left;\"><span style=\"font-size: 12pt;\"><span style=\"color: #222222;\"><span style=\"white-space: pre-wrap;\"><span style=\"font-size: 12pt; white-space: pre-wrap;\">Subject :-ادارة / شركة HR لارسال رسالة انهاء. عزيزي { </span><span style=\"white-space: pre-wrap;\">employee_termination_name</span><span style=\"font-size: 12pt; white-space: pre-wrap;\"> } ، هذه الرسالة مكتوبة لإعلامك بأن عملك مع شركتنا قد تم إنهاؤه مزيد من التفاصيل عن الانهاء : تاريخ الاشعار : { </span><span style=\"white-space: pre-wrap;\">notice_date</span><span style=\"font-size: 12pt; white-space: pre-wrap;\"> } تاريخ الانهاء : { </span><span style=\"white-space: pre-wrap;\">termination_date</span><span style=\"font-size: 12pt; white-space: pre-wrap;\"> } نوع الانهاء : { termination_type } إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة. شكرا لك Regards, إدارة الموارد البشرية ، { app_name }</span></span></span></span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (244, 21, 'da', 'Employee Termination', '<p>Emne:-HR-afdelingen / Virksomheden om at sende afslutningstskrivelse.</p>\n <p>Kære { employee_termination_name },</p>\n <p>Dette brev er skrevet for at meddele dig, at dit arbejde med vores virksomhed er afsluttet.</p>\n <p>Flere oplysninger om ophævelse:</p>\n <p>Adviseringsdato: { notifice_date }</p>\n <p>Opsigelsesdato: { termination_date }</p>\n <p>Opsigelsestype: { termination_type }</p>\n <p>Du er velkommen til at række ud, hvis du har nogen spørgsmål.</p>\n <p>Tak.</p>\n <p>Med venlig hilsen</p>\n <p>HR-afdelingen,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (245, 21, 'de', 'Employee Termination', '<p>Betreff: -Personalabteilung/Firma zum Versenden von Kündigungsschreiben.</p>\n <p>Sehr geehrter {employee_termination_name},</p>\n <p>Dieser Brief wird Ihnen schriftlich mitgeteilt, dass Ihre Beschäftigung mit unserem Unternehmen beendet ist.</p>\n <p>Weitere Details zur Kündigung:</p>\n <p>Kündigungsdatum: {notice_date}</p>\n <p>Beendigungsdatum: {termination_date}</p>\n <p>Abbruchstyp: {termination_type}</p>\n <p>Fühlen Sie sich frei, wenn Sie Fragen haben.</p>\n <p>Danke.</p>\n <p>Betrachtet,</p>\n <p>Personalabteilung,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (246, 21, 'en', 'Employee Termination', '<p><strong>Subject:-HR department/Company to send termination letter.</strong></p>\n <p><strong>Dear {employee_termination_name},</strong></p>\n <p>This letter is written to notify you that your employment with our company is terminated.</p>\n <p>More detail about termination:</p>\n <p>Notice Date :{notice_date}</p>\n <p>Termination Date:{termination_date}</p>\n <p>Termination Type:{termination_type}</p>\n <p> </p>\n <p>Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><strong>{app_name}</strong></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (247, 21, 'es', 'Employee Termination', '<p>Asunto: -Departamento de RRHH/Empresa para enviar carta de rescisión.</p>\n <p>Estimado {employee_termination_name},</p>\n <p>Esta carta está escrita para notificarle que su empleo con nuestra empresa ha terminado.</p>\n <p>Más detalles sobre la terminación:</p>\n <p>Fecha de aviso: {notice_date}</p>\n <p>Fecha de terminación: {termination_date}</p>\n <p>Tipo de terminación: {termination_type}</p>\n <p>Siéntase libre de llegar si usted tiene alguna pregunta.</p>\n <p>¡Gracias!</p>\n <p>Considerando,</p>\n <p>Departamento de Recursos Humanos,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (248, 21, 'fr', 'Employee Termination', '<p>Objet: -HR department / Company to send termination letter.</p>\n <p>Cher { employee_termination_name },</p>\n <p>Cette lettre est rédigée pour vous aviser que votre emploi auprès de notre entreprise prend fin.</p>\n <p>Plus de détails sur larrêt:</p>\n <p>Date de lavis: { notice_date }</p>\n <p>Date de fin: { termination_date}</p>\n <p>Type de terminaison: { termination_type }</p>\n <p>Nhésitez pas à nous contacter si vous avez des questions.</p>\n <p>Je vous remercie</p>\n <p>Regards,</p>\n <p>Département des RH,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (249, 21, 'it', 'Employee Termination', '<p>Oggetto: - Dipartimento HR / Società per inviare lettera di terminazione.</p>\n <p>Caro {employee_termination_name},</p>\n <p>Questa lettera è scritta per comunicarti che la tua occupazione con la nostra azienda è terminata.</p>\n <p>Più dettagli sulla cessazione:</p>\n <p>Data avviso: {notice_data}</p>\n <p>Data di chiusura: {termination_date}</p>\n <p>Tipo di terminazione: {termination_type}</p>\n <p>Sentiti libero di raggiungere se hai domande.</p>\n <p>Grazie</p>\n <p>Riguardo,</p>\n <p>Dipartimento HR,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (250, 21, 'ja', 'Employee Termination', '<p>件名:-HR 部門/企業は終了文字を送信します。</p>\n <p>{ employee_termination_name} を終了します。</p>\n <p>この手紙は、当社の雇用が終了していることをあなたに通知するために書かれています。</p>\n <p>終了についての詳細 :</p>\n <p>通知日 :{notice_date}</p>\n <p>終了日:{termination_date}</p>\n <p>終了タイプ:{termination_type}</p>\n <p>質問がある場合は、自由に連絡してください。</p>\n <p>ありがとう</p>\n <p>よろしく</p>\n <p>HR 部門</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (251, 21, 'nl', 'Employee Termination', '<p>Betreft: -HR-afdeling/Bedrijf voor verzending van afgiftebrief.</p>\n <p>Geachte { employee_termination_name },</p>\n <p>Deze brief is geschreven om u te melden dat uw werk met ons bedrijf wordt beëindigd.</p>\n <p>Meer details over beëindiging:</p>\n <p>Datum kennisgeving: { notice_date }</p>\n <p>Beëindigingsdatum: { termination_date }</p>\n <p>Beëindigingstype: { termination_type }</p>\n <p>Voel je vrij om uit te reiken als je vragen hebt.</p>\n <p>Dank u wel</p>\n <p>Betreft:</p>\n <p>HR-afdeling,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (252, 21, 'pl', 'Employee Termination', '<p>Temat: -Dział kadr/Firma do wysyłania listu zakańczego.</p>\n <p>Droga {employee_termination_name },</p>\n <p>Ten list jest napisany, aby poinformować Cię, że Twoje zatrudnienie z naszą firmą zostaje zakończone.</p>\n <p>Więcej szczegółów na temat zakończenia pracy:</p>\n <p>Data ogłoszenia: {notice_date }</p>\n <p>Data zakończenia: {termination_date }</p>\n <p>Typ zakończenia: {termination_type }</p>\n <p>Czuj się swobodnie, jeśli masz jakieś pytania.</p>\n <p>Dziękujemy</p>\n <p>W odniesieniu do</p>\n <p>Dział HR,</p>\n <p>{app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (253, 21, 'ru', 'Employee Termination', '<p>Тема: -HR отдел/Компания отправить письмо о прекращении.</p>\n <p>Уважаемый { employee_termination_name },</p>\n <p>Это письмо написано, чтобы уведомить вас о том, что ваше трудоустройство с нашей компанией прекратилось.</p>\n <p>Более подробная информация о завершении:</p>\n <p>Дата уведомления: { notice_date }</p>\n <p>Дата завершения: { termination_date }</p>\n <p>Тип завершения: { termination_type }</p>\n <p>Не стеснитесь, если у вас есть вопросы.</p>\n <p>Спасибо.</p>\n <p>С уважением,</p>\n <p>Отдел кадров,</p>\n <p>{ app_name }</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (254, 21, 'pt', 'Employee Termination', '<p style=\"font-size: 14.4px;\">Assunto:-Departamento de RH / Empresa para enviar carta de rescisão.</p>\n <p style=\"font-size: 14.4px;\">Querido {employee_termination_name},</p>\n <p style=\"font-size: 14.4px;\">Esta carta é escrita para notificá-lo de que seu emprego com a nossa empresa está finalizado.</p>\n <p style=\"font-size: 14.4px;\">Mais detalhes sobre a finalização:</p>\n <p style=\"font-size: 14.4px;\">Data de Aviso: {notice_date}</p>\n <p style=\"font-size: 14.4px;\">Data de Finalização: {termination_date}</p>\n <p style=\"font-size: 14.4px;\">Tipo de Rescisão: {termination_type}</p>\n <p style=\"font-size: 14.4px;\">Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p style=\"font-size: 14.4px;\">Obrigado</p>\n <p style=\"font-size: 14.4px;\">Considera,</p>\n <p style=\"font-size: 14.4px;\">Departamento de RH,</p>\n <p style=\"font-size: 14.4px;\">{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"employee_termination_name\",\n \"Notice Date\": \"notice_date\",\n \"Termination Date\": \"termination_date\",\n \"Termination Type\": \"termination_type\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (255, 22, 'ar', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Subject :-إدارة الموارد البشرية / الشركة المعنية بإرسال المدفوعات عن طريق البريد الإلكتروني في وقت تأكيد الدفع.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">مرحبا {name} ،</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">أتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى الدفع المتصل الى { salary_month }.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">اضغط ببساطة على الاختيار بأسفل</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">كشوف المرتبات</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">شكرا لك</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">إدارة الموارد البشرية ،</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_name }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (256, 22, 'da', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Om: HR-departementet / Kompagniet til at sende lønsedler via e-mail på tidspunktet for bekræftelsen af lønsedlerne</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hej {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Håber denne e-mail finder dig godt! Se vedhæftet payseddel for { salary_month }.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">klik bare på knappen nedenfor</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Lønseddel</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Du er velkommen til at række ud, hvis du har nogen spørgsmål.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Tak.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Med venlig hilsen</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">HR-afdelingen,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_name }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (257, 22, 'de', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betrifft: -Personalabteilung/Firma, um Payslips per E-Mail zum Zeitpunkt der Bestätigung des Auszahlungsscheins zu senden</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hoffe, diese E-Mail findet dich gut! Bitte sehen Sie den angehängten payslip für {salary_month}.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Klicken Sie einfach auf den Button unten</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Payslip</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Fühlen Sie sich frei, wenn Sie Fragen haben.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Danke.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betrachtet,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Personalabteilung,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (258, 22, 'en', 'New Payroll', '<p><strong>Subjec</strong>t:-HR department/Company to send payslips by email at time of confirmation of payslip</p>\n <p>Hi {name},</p>\n <p>Hope this email finds you well! Please see attached payslip for {salary_month}.</p>\n <p style=\"text-align: center;\" align=\"center\"><strong>simply click on the button below </strong></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Payslip</strong> </a></span></p>\n <p style=\"text-align: left;\" align=\"center\">Feel free to reach out if you have any questions.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>HR Department,</strong></p>\n <p><span style=\"color: #000000; font-family: \"Open Sans\", sans-serif; font-size: 14px; background-color: #ffffff;\">{<strong>app_name</strong>}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (259, 22, 'es', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Asunto: -Departamento de RRHH/Empresa para enviar nóminas por correo electrónico en el momento de la confirmación del pago</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hi {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">¡Espero que este email le encuentre bien! Consulte la ficha de pago adjunta para {salary_month}.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">simplemente haga clic en el botón de abajo</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Payslip</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Siéntase libre de llegar si usted tiene alguna pregunta.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">¡Gracias!</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Considerando,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Departamento de Recursos Humanos,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (260, 22, 'fr', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Objet: -Ressources humaines / Entreprise pour envoyer des feuillets de paie par courriel au moment de la confirmation du paiement</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Salut {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Jespère que ce courriel vous trouve bien ! Veuillez consulter le bordereau de paie ci-joint pour {salary_month}.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Il suffit de cliquer sur le bouton ci-dessous</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Feuillet de paiement</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Nhésitez pas à nous contacter si vous avez des questions.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Je vous remercie</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Regards,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Département des RH,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (261, 22, 'it', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Oggetto: - Dipartimento HR / Società per inviare busta paga via email al momento della conferma della busta paga</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Ciao {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Spero che questa email ti trovi bene! Si prega di consultare la busta paga per {salary_month}.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">semplicemente clicca sul pulsante sottostante</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Busta paga</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Sentiti libero di raggiungere se hai domande.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Grazie</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Riguardo,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dipartimento HR,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (262, 22, 'ja', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">件名:-HR 部門/企業は、給与明細書の確認時に電子メールで支払いを送信します。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">こんにちは {name}、</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">この E メールでよくご確認ください。 {salary_month}の添付された payslip を参照してください。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">下のボタンをクリックするだけで</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">給与明細書</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">質問がある場合は、自由に連絡してください。</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">ありがとう</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">よろしく</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">HR 部門</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name}</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (263, 22, 'nl', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betreft: -HR-afdeling/Bedrijf om te betalen payslips per e-mail op het moment van bevestiging van de payslip</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hallo {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Hoop dat deze e-mail je goed vindt! Zie bijgevoegde payslip voor { salary_month }.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">gewoon klikken op de knop hieronder</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Loonstrook</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Voel je vrij om uit te reiken als je vragen hebt.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dank u wel</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Betreft:</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">HR-afdeling,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_name }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (264, 22, 'pl', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Temat:-Dział HR/Firma do wysyłania payslipów drogą mailową w czasie potwierdzania payslipa</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Witaj {name },</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Patrz załączony payslip dla {salary_month }.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">po prostu kliknij na przycisk poniżej</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Payslip</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Czuj się swobodnie, jeśli masz jakieś pytania.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dziękujemy</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">W odniesieniu do</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Dział HR,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{app_name }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (265, 22, 'ru', 'New Payroll', '<p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Тема: -HR отдел/Компания для отправки паузу по электронной почте во время подтверждения паузли</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Привет {name},</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Надеюсь, это электронное письмо найдет вас хорошо! См. вложенный раздел для { salary_month }.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">просто нажмите на кнопку внизу</span></p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Паушлип</strong> </a></span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Не стеснитесь, если у вас есть вопросы.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Спасибо.</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">С уважением,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">Отдел кадров,</span></p>\n <p style=\"line-height: 28px; font-family: Nunito,;\"><span style=\"font-family: sans-serif;\">{ app_name }</span></p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (266, 22, 'pt', 'New Payroll', '<p>Assunto:-Departamento de RH / Empresa para enviar payslips por e-mail no momento da confirmação do payslip</p>\n <p>Oi {name},</p>\n <p>Espero que este e-mail encontre você bem! Por favor, consulte o payslip anexado por {salary_month}.</p>\n <p>basta clicar no botão abaixo</p>\n <p style=\"text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><a style=\"background: #6676ef; color: #ffffff; font-family: \"Open Sans\", Helvetica, Arial, sans-serif; font-weight: normal; line-height: 120%; margin: 0px; text-decoration: none; text-transform: none;\" href=\"{url}\" target=\"_blank\" rel=\"noopener\"> <strong style=\"color: white; font-weight: bold; text: white;\">Payslip</strong> </a></span></p>\n <p>Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.</p>\n <p>Obrigado</p>\n <p>Considera,</p>\n <p>Departamento de RH,</p>\n <p>{app_name}</p>', NULL, '{\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name\": \"company_name\",\n \"Employee\": \"name\",\n \"Employee Email\": \"payslip_email\",\n \"Salary Month\": \"salary_month\",\n \"URL\": \"url\"\n }', '2024-08-11 08:22:58', '2024-08-11 08:22:58'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (267, 23, 'ar', 'Employee Leave Received', '<p><strong>موضوع</strong>:- {employee_name} ترك الطلب المستلم</p>\n <p>عزيزي {company_name},</p>\n <p>أود أن أبلغكم أنني قدمت طلب إجازة من {leave_start_date} ل {leave_end_date}.</p>\n <p>شكرًا لك</p>\n <p><strong>يعتبر,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (268, 23, 'da', 'Employee Leave Received', '<p><strong>Emne</strong>:- {employee_name} Efterlad ansøgning modtaget</p>\n <p>Kære {company_name},</p>\n <p>Jeg vil gerne meddele, at jeg har indsendt orlovsanmodning fra {leave_start_date} til {leave_end_date}.</p>\n <p>tak skal du have</p>\n <p><strong>Med venlig hilsen,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (269, 23, 'de', 'Employee Leave Received', '<p><strong>Thema</strong>:- {employee_name} Antrag eingegangen lassen</p>\n <p>Liebling {company_name},</p>\n <p>Ich möchte Ihnen mitteilen, dass ich einen Urlaubsantrag gestellt habe {leave_start_date} Zu {leave_end_date}.</p>\n <p>Danke</p>\n <p><strong>Grüße,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (270, 23, 'en', 'Employee Leave Received', '<p><strong>Subject</strong>:- {employee_name} Leave Application Received</p>\n <p>Dear {company_name},</p>\n <p>I would like to inform you that I have submitted leave request from {leave_start_date} to {leave_end_date}.</p>\n <p>Thank you</p>\n <p><strong>Regards,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (271, 23, 'es', 'Employee Leave Received', '<p><strong>Sujeto</strong>:- {employee_name} Dejar solicitud recibida</p>\n <p>Estimado {company_name},</p>\n <p>Me gustaría informarles que he enviado una solicitud de permiso de {leave_start_date} a {leave_end_date}.</p>\n <p>Gracias</p>\n <p><strong>Saludos,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (272, 23, 'fr', 'Employee Leave Received', '<p><strong>Sujet</strong>:- {employee_name} Demande de congé reçue</p>\n <p>Cher {company_name},</p>\n <p>Je tiens à vous informer que jai soumis une demande de congé de {leave_start_date} à {leave_end_date}.</p>\n <p>Merci</p>\n <p><strong>Salutations,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (273, 23, 'it', 'Employee Leave Received', '<p><strong>Soggetto</strong>:- {employee_name} Lascia la domanda ricevuta</p>\n <p>Caro {company_name},</p>\n <p>Vorrei informarvi che ho presentato richiesta di ferie da {leave_start_date} A {leave_end_date}.</p>\n <p>Grazie</p>\n <p><strong>Saluti,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (274, 23, 'ja', 'Employee Leave Received', '<p><strong>主題</strong>:- {employee_name} 申請書を受領したままにする</p>\n <p>親愛なる {company_name},</p>\n <p>から休暇申請を提出しましたのでお知らせいたします。 {leave_start_date} に {leave_end_date}.</p>\n <p>ありがとう</p>\n <p><strong>よろしく,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (275, 23, 'nl', 'Employee Leave Received', '<p><strong>Onderwerp</strong>:- {employee_name} Laat de aanvraag ontvangen achter</p>\n <p>Beste {company_name},</p>\n <p>Hierbij wil ik u laten weten dat ik een verlofaanvraag heb ingediend bij {leave_start_date} naar {leave_end_date}.</p>\n <p>Bedankt</p>\n <p><strong>Groeten,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (276, 23, 'pl', 'Employee Leave Received', '<p><strong>Temat</strong>:- {employee_name} Zostaw otrzymany wniosek</p>\n <p>Droga {company_name},</p>\n <p>Uprzejmie informuję, że złożyłem wniosek urlopowy z dn {leave_start_date} Do {leave_end_date}.</p>\n <p>Dziękuję</p>\n <p><strong>Pozdrowienia,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (277, 23, 'ru', 'Employee Leave Received', '<p><strong>Предмет</strong>:- {employee_name} Оставить заявку полученной</p>\n <p>Дорогой {company_name},</p>\n <p>Я хотел бы сообщить вам, что я подал заявление на отпуск от {leave_start_date} к {leave_end_date}.</p>\n <p>Спасибо</p>\n <p><strong>С уважением,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (278, 23, 'pt', 'Employee Leave Received', '<p><strong>Assunto</strong>:- {employee_name} Deixar inscrição recebida</p>\n <p>Querido {company_name},</p>\n <p>Gostaria de informar que enviei pedido de licença de {leave_start_date} para {leave_end_date}.</p>\n <p>Obrigado</p>\n <p><strong>Cumprimentos,</strong></p>\n <p><strong>{employee_name}</strong></p>', NULL, '{ \"App Url\": \"app_url\", \"App Name\": \"app_name\", \"Company Name\": \"company_name\", \"Employee Name\": \"employee_name\", \"Leave Start Date\": \"leave_start_date\", \"Leave End Date\": \"leave_end_date\"}', '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (279, 24, 'ar', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">مرحبا،</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">تم تعيين صفقة جديدة لك.</span></p><p><span style=\"font-family: sans-serif;\"><b>اسم الصفقة</b> : {deal_name}<br><b>خط أنابيب الصفقة</b> : {deal_pipeline}<br><b>مرحلة الصفقة</b> : {deal_stage}<br><b>حالة الصفقة</b> : {deal_status}<br><b>سعر الصفقة</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (280, 24, 'da', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Hej,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal er blevet tildelt til dig.</span></p><p><span style=\"font-family: sans-serif;\"><b>Deal Navn</b> : {deal_name}<br><b>Deal Pipeline</b> : {deal_pipeline}<br><b>Deal Fase</b> : {deal_stage}<br><b>Deal status</b> : {deal_status}<br><b>Deal pris</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (281, 24, 'de', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal wurde Ihnen zugewiesen.</span></p><p><span style=\"font-family: sans-serif;\"><b>Geschäftsname</b> : {deal_name}<br><b>Deal Pipeline</b> : {deal_pipeline}<br><b>Deal Stage</b> : {deal_stage}<br><b>Deal Status</b> : {deal_status}<br><b>Ausgehandelter Preis</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (282, 24, 'en', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal has been Assign to you.</span></p><p><span style=\"font-family: sans-serif;\"><b>Deal Name</b> : {deal_name}<br><b>Deal Pipeline</b> : {deal_pipeline}<br><b>Deal Stage</b> : {deal_stage}<br><b>Deal Status</b> : {deal_status}<br><b>Deal Price</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (283, 24, 'es', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Hola,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal ha sido asignado a usted.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nombre del trato</b> : {deal_name}<br><b>Tubería de reparto</b> : {deal_pipeline}<br><b>Etapa de reparto</b> : {deal_stage}<br><b>Estado del acuerdo</b> : {deal_status}<br><b>Precio de oferta</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (284, 24, 'fr', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Bonjour,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Le New Deal vous a été attribué.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nom de l`accord</b> : {deal_name}<br><b>Pipeline de transactions</b> : {deal_pipeline}<br><b>Étape de l`opération</b> : {deal_stage}<br><b>Statut de l`accord</b> : {deal_status}<br><b>Prix de l offre</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (285, 24, 'it', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Ciao,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal è stato assegnato a te.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nome dell`affare</b> : {deal_name}<br><b>Pipeline di offerte</b> : {deal_pipeline}<br><b>Stage Deal</b> : {deal_stage}<br><b>Stato dell`affare</b> : {deal_status}<br><b>Prezzo dell`offerta</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (286, 24, 'ja', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">こんにちは、</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">新しい取引が割り当てられました。</span></p><p><span style=\"font-family: sans-serif;\"><b>取引名</b> : {deal_name}<br><b>取引パイプライン</b> : {deal_pipeline}<br><b>取引ステージ</b> : {deal_stage}<br><b>取引状況</b> : {deal_status}<br><b>取引価格</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (287, 24, 'nl', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal is aan u toegewezen.</span></p><p><span style=\"font-family: sans-serif;\"><b>Dealnaam</b> : {deal_name}<br><b>Deal Pipeline</b> : {deal_pipeline}<br><b>Deal Stage</b> : {deal_stage}<br><b>Dealstatus</b> : {deal_status}<br><b>Deal prijs</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (288, 24, 'pl', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Witaj,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Nowa oferta została Ci przypisana.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nazwa oferty</b> : {deal_name}<br><b>Deal Pipeline</b> : {deal_pipeline}<br><b>Etap transakcji</b> : {deal_stage}<br><b>Status oferty</b> : {deal_status}<br><b>Cena oferty</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (289, 24, 'ru', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Привет,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Новый курс был назначен вам.</span></p><p><span style=\"font-family: sans-serif;\"><b>Название сделки</b> : {deal_name}<br><b>Трубопровод сделки</b> : {deal_pipeline}<br><b>Этап сделки</b> : {deal_stage}<br><b>Статус сделки</b> : {deal_status}<br><b>Цена сделки</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (290, 24, 'pt', 'New Deal Assign', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Deal has been Assign to you.</span></p><p><span style=\"font-family: sans-serif;\"><b>Deal Name</b> : {deal_name}<br><b>Deal Pipeline</b> : {deal_pipeline}<br><b>Deal Stage</b> : {deal_stage}<br><b>Deal Status</b> : {deal_status}<br><b>Deal Price</b> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (291, 25, 'ar', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">مرحبا،</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">تم نقل صفقة من {deal_old_stage} إلى {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">اسم الصفقة</span> : {deal_name}<br><span style=\"font-weight: bolder;\">خط أنابيب الصفقة</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">مرحلة الصفقة</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">حالة الصفقة</span> : {deal_status}<br><span style=\"font-weight: bolder;\">سعر الصفقة</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (292, 25, 'da', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Hej,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">En aftale er flyttet fra {deal_old_stage} til {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Deal Navn</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Deal Pipeline</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Deal Fase</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Deal status</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Deal pris</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (293, 25, 'de', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Ein Deal wurde verschoben {deal_old_stage} zu {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Geschäftsname</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Deal Pipeline</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Deal Stage</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Deal Status</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Ausgehandelter Preis</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (294, 25, 'en', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">A Deal has been move from {deal_old_stage} to {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Deal Name</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Deal Pipeline</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Deal Stage</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Deal Status</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Deal Price</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (295, 25, 'es', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Hola,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Se ha movido un acuerdo de {deal_old_stage} a {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Nombre del trato</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Tubería de reparto</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Etapa de reparto</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Estado del acuerdo</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Precio de oferta</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (296, 25, 'fr', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Bonjour,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Un accord a été déplacé de {deal_old_stage} à {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Nom de l`accord</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Pipeline de transactions</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Étape de l`opération</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Statut de l`accord</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Prix de l`offre</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (297, 25, 'it', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Ciao,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Un affare è stato spostato da {deal_old_stage} per {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Nome dell`affare</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Pipeline di offerte</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Stage Deal</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Stato dell`affare</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Prezzo dell`offerta</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (298, 25, 'ja', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">こんにちは、</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">取引は {deal_old_stage} に {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">取引名</span> : {deal_name}<br><span style=\"font-weight: bolder;\">取引パイプライン</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">取引ステージ</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">取引状況</span> : {deal_status}<br><span style=\"font-weight: bolder;\">取引価格</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (299, 25, 'nl', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Een deal is verplaatst van {deal_old_stage} naar {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Dealnaam</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Deal Pipeline</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Deal Stage</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Dealstatus</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Deal prijs</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (300, 25, 'pl', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Witaj,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Umowa została przeniesiona {deal_old_stage} do {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Nazwa oferty</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Deal Pipeline</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Etap transakcji</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Status oferty</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Cena oferty</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (301, 25, 'ru', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Привет,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Сделка была перемещена из {deal_old_stage} в {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Название сделки</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Трубопровод сделки</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Этап сделки</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Статус сделки</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Цена сделки</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (302, 25, 'pt', 'Deal has been Moved', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">A Deal has been move from {deal_old_stage} to {deal_new_stage}.</span></p><p><span style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder;\">Deal Name</span> : {deal_name}<br><span style=\"font-weight: bolder;\">Deal Pipeline</span> : {deal_pipeline}<br><span style=\"font-weight: bolder;\">Deal Stage</span> : {deal_stage}<br><span style=\"font-weight: bolder;\">Deal Status</span> : {deal_status}<br><span style=\"font-weight: bolder;\">Deal Price</span> : {deal_price}</span></p>', NULL, '{\n \"Deal Name\": \"deal_name\",\n \"Deal Pipeline\": \"deal_pipeline\",\n \"Deal Stage\": \"deal_stage\",\n \"Deal Status\": \"deal_status\",\n \"Deal Price\": \"deal_price\",\n \"Deal Old Stage\": \"deal_old_stage\",\n \"Deal New Stage\": \"deal_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (303, 26, 'ar', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">مرحبا،</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">تم تعيين مهمة جديدة لك.</span></p><p><span style=\"font-family: sans-serif;\"><b>اسم المهمة</b> : {task_name}<br><b>أولوية المهمة</b> : {task_priority}<br><b>حالة المهمة</b> : {task_status}<br><b>صفقة المهمة</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (304, 26, 'da', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Hej,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Ny opgave er blevet tildelt til dig.</span></p><p><span style=\"font-family: sans-serif;\"><b>Opgavens navn</b> : {task_name}<br><b>Opgaveprioritet</b> : {task_priority}<br><b>Opgavestatus</b> : {task_status}<br><b>Opgave</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (305, 26, 'de', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Neue Aufgabe wurde Ihnen zugewiesen.</span></p><p><span style=\"font-family: sans-serif;\"><b>Aufgabennname</b> : {task_name}<br><b>Aufgabenpriorität</b> : {task_priority}<br><b>Aufgabenstatus</b> : {task_status}<br><b>Task Deal</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (306, 26, 'en', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Task has been Assign to you.</span></p><p><span style=\"font-family: sans-serif;\"><b>Task Name</b> : {task_name}<br><b>Task Priority</b> : {task_priority}<br><b>Task Status</b> : {task_status}<br><b>Task Deal</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (307, 26, 'es', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Hola,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Nueva tarea ha sido asignada a usted.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nombre de la tarea</b> : {task_name}<br><b>Prioridad de tarea</b> : {task_priority}<br><b>Estado de la tarea</b> : {task_status}<br><b>Reparto de tarea</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (308, 26, 'fr', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Bonjour,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Une nouvelle tâche vous a été assignée.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nom de la tâche</b> : {task_name}<br><b>Priorité des tâches</b> : {task_priority}<br><b>Statut de la tâche</b> : {task_status}<br><b>Deal Task</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (309, 26, 'it', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Ciao,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">La nuova attività è stata assegnata a te.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nome dell`attività</b> : {task_name}<br><b>Priorità dell`attività</b> : {task_priority}<br><b>Stato dell`attività</b> : {task_status}<br><b>Affare</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (310, 26, 'ja', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">こんにちは、</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">新しいタスクが割り当てられました。</span></p><p><span style=\"font-family: sans-serif;\"><b>タスク名</b> : {task_name}<br><b>タスクの優先度</b> : {task_priority}<br><b>タスクのステータス</b> : {task_status}<br><b>タスク取引</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (311, 26, 'nl', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Nieuwe taak is aan u toegewezen.</span></p><p><span style=\"font-family: sans-serif;\"><b>Opdrachtnaam</b> : {task_name}<br><b>Taakprioriteit</b> : {task_priority}<br><b>Taakstatus</b> : {task_status}<br><b>Task Deal</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (312, 26, 'pl', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Witaj,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Nowe zadanie zostało Ci przypisane.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nazwa zadania</b> : {task_name}<br><b>Priorytet zadania</b> : {task_priority}<br><b>Status zadania</b> : {task_status}<br><b>Zadanie Deal</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (313, 26, 'ru', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Привет,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Новая задача была назначена вам.</span></p><p><span style=\"font-family: sans-serif;\"><b>Название задачи</b> : {task_name}<br><b>Приоритет задачи</b> : {task_priority}<br><b>Состояние задачи</b> : {task_status}<br><b>Задача</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (314, 26, 'pt', 'New Task Assign', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Task has been Assign to you.</span></p><p><span style=\"font-family: sans-serif;\"><b>Task Name</b> : {task_name}<br><b>Task Priority</b> : {task_priority}<br><b>Task Status</b> : {task_status}<br><b>Task Deal</b> : {deal_name}</span></p>', NULL, '{\n \"Task Name\": \"task_name\",\n \"Task Priority\": \"task_priority\",\n \"Task Status\": \"task_status\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (315, 27, 'ar', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">مرحبا،</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">تم تعيين عميل جديد لك.</span></p><p><span style=\"font-family: sans-serif;\"><b>اسم العميل المحتمل</b> : {lead_name}<br><b>البريد الإلكتروني الرئيسي</b> : {lead_email}<br><b>خط أنابيب الرصاص</b> : {lead_pipeline}<br><b>مرحلة الرصاص</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (316, 27, 'da', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Hej,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Ny bly er blevet tildelt dig.</span></p><p><span style=\"font-family: sans-serif;\"><b>Blynavn</b> : {lead_name}<br><b>Lead-e-mail</b> : {lead_email}<br><b>Blyrørledning</b> : {lead_pipeline}<br><b>Lead scenen</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (317, 27, 'de', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Neuer Lead wurde Ihnen zugewiesen.</span></p><p><span style=\"font-family: sans-serif;\"><b>Lead Name</b> : {lead_name}<br><b>Lead-E-Mail</b> : {lead_email}<br><b>Lead Pipeline</b> : {lead_pipeline}<br><b>Lead Stage</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (318, 27, 'en', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Lead has been Assign to you.</span></p><p><span style=\"font-family: sans-serif;\"><b>Lead Name</b> : {lead_name}<br><b>Lead Email</b> : {lead_email}<br><b>Lead Pipeline</b> : {lead_pipeline}<br><b>Lead Stage</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (319, 27, 'es', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Hola,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Se le ha asignado un nuevo plomo.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nombre principal</b> : {lead_name}<br><b>Correo electrónico principal</b> : {lead_email}<br><b>Tubería de plomo</b> : {lead_pipeline}<br><b>Etapa de plomo</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (320, 27, 'fr', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Bonjour,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Un nouveau prospect vous a été attribué.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nom du responsable</b> : {lead_name}<br><b>Courriel principal</b> : {lead_email}<br><b>Pipeline de plomb</b> : {lead_pipeline}<br><b>Étape principale</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (321, 27, 'it', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Ciao,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Lead è stato assegnato a te.</span></p><p><span style=\"font-family: sans-serif;\"><b>Nome del lead</b> : {lead_name}<br><b>Lead Email</b> : {lead_email}<br><b>Conduttura di piombo</b> : {lead_pipeline}<br><b>Lead Stage</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (322, 27, 'ja', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">こんにちは、</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">新しいリードが割り当てられました。</span></p><p><span style=\"font-family: sans-serif;\"><b>リード名</b> : {lead_name}<br><b>リードメール</b> : {lead_email}<br><b>リードパイプライン</b> : {lead_pipeline}<br><b>リードステージ</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (323, 27, 'nl', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Nieuwe lead is aan u toegewezen.</span></p><p><span style=\"font-family: sans-serif;\"><b>Lead naam</b> : {lead_name}<br><b>E-mail leiden</b> : {lead_email}<br><b>Lead Pipeline</b> : {lead_pipeline}<br><b>Hoofdfase</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (324, 27, 'pl', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Witaj,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Nowy potencjalny klient został do ciebie przypisany.</span></p><p><span style=\"font-family: sans-serif;\"><b>Imię i nazwisko</b> : {lead_name}<br><b>Główny adres e-mail</b> : {lead_email}<br><b>Ołów rurociągu</b> : {lead_pipeline}<br><b>Etap prowadzący</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (325, 27, 'ru', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Привет,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Новый Лид был назначен вам.</span></p><p><span style=\"font-family: sans-serif;\"><b>Имя лидера</b> : {lead_name}<br><b>Ведущий Email</b> : {lead_email}<br><b>Ведущий трубопровод</b> : {lead_pipeline}<br><b>Ведущий этап</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (326, 27, 'pt', 'New Lead Assign', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">New Lead has been Assign to you.</span></p><p><span style=\"font-family: sans-serif;\"><b>Lead Name</b> : {lead_name}<br><b>Lead Email</b> : {lead_email}<br><b>Lead Pipeline</b> : {lead_pipeline}<br><b>Lead Stage</b> : {lead_stage}</span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (327, 28, 'ar', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">مرحبا،</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">تم نقل العميل المحتمل من {lead_old_stage} إلى {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">اسم العميل المحتمل</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">البريد الإلكتروني الرئيسي</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">خط أنابيب الرصاص</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">مرحلة الرصاص</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (328, 28, 'da', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Hej,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">En leder er flyttet fra {lead_old_stage} til {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Blynavn</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead-e-mail</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Blyrørledning</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead scenen</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (329, 28, 'de', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Ein Lead wurde verschoben von {lead_old_stage} zu {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Name</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead-E-Mail</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Pipeline</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Stage</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (330, 28, 'en', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">A Lead has been move from {lead_old_stage} to {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Name</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Email</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Pipeline</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Stage</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (331, 28, 'es', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Hola,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Un plomo ha sido movido de {lead_old_stage} a {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Nombre principal</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Correo electrónico principal</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Tubería de plomo</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Etapa de plomo</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (332, 28, 'fr', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Bonjour,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Un lead a été déplacé de {lead_old_stage} à {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Nom du responsable</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Courriel principal</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Pipeline de plomb</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Étape principale</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (333, 28, 'it', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Ciao,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">È stato spostato un lead {lead_old_stage} per {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Nome del lead</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Email</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Conduttura di piombo</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Stage</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (334, 28, 'ja', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">こんにちは、</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">リードが移動しました {lead_old_stage} に {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">リード名</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">リードメール</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">リードパイプライン</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">リードステージ</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (335, 28, 'nl', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Hallo,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Er is een lead verplaatst van {lead_old_stage} naar {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead naam</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">E-mail leiden</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Pipeline</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Hoofdfase</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (336, 28, 'pl', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Witaj,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Prowadzenie zostało przeniesione {lead_old_stage} do {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Imię i nazwisko</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Główny adres e-mail</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Ołów rurociągu</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Etap prowadzący</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (337, 28, 'ru', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Привет,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">Свинец был двигаться от {lead_old_stage} в {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Имя лидера</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Ведущий Email</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Ведущий трубопровод</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Ведущий этап</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (338, 28, 'pt', 'Lead has been Moved', '<p><span style=\"font-family: sans-serif;\">Hello,</span><br style=\"font-family: sans-serif;\"><span style=\"font-family: sans-serif;\">A Lead has been move from {lead_old_stage} to {lead_new_stage}.</span></p><p><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Name</span><span style=\"font-family: sans-serif;\"> : {lead_name}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Email</span><span style=\"font-family: sans-serif;\"> : {lead_email}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Pipeline</span><span style=\"font-family: sans-serif;\"> : {lead_pipeline}</span><br style=\"font-family: sans-serif;\"><span style=\"font-weight: bolder; font-family: sans-serif;\">Lead Stage</span><span style=\"font-family: sans-serif;\"> : {lead_stage}</span><span style=\"font-family: sans-serif;\"><br></span></p>', NULL, '{\n \"Lead Name\": \"lead_name\",\n \"Lead Email\": \"lead_email\",\n \"Lead Pipeline\": \"lead_pipeline\",\n \"Lead Stage\": \"lead_stage\",\n \"Lead Old Stage\": \"lead_old_stage\",\n \"Lead New Stage\": \"lead_new_stage\",\n \"App Url\": \"app_url\",\n \"App Name\": \"app_name\",\n \"Company Name \":\"company_name\",\n \"Email\" : \"email\",\n \"Password\" : \"password\"\n }', '2024-08-11 08:23:06', '2024-08-11 08:23:06'); -- -------------------------------------------------------- -- -- Table structure for table `employees` -- CREATE TABLE `employees` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `dob` date DEFAULT NULL, `gender` varchar(255) NOT NULL, `phone` varchar(255) DEFAULT NULL, `address` longtext NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) DEFAULT NULL, `employee_id` varchar(255) NOT NULL, `branch_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `designation_id` int(11) NOT NULL, `company_doj` varchar(255) DEFAULT NULL, `documents` varchar(255) DEFAULT NULL, `account_holder_name` varchar(255) DEFAULT NULL, `account_number` varchar(255) DEFAULT NULL, `bank_name` varchar(255) DEFAULT NULL, `bank_identifier_code` varchar(255) DEFAULT NULL, `branch_location` varchar(255) DEFAULT NULL, `tax_payer_id` varchar(255) DEFAULT NULL, `salary_type` int(11) DEFAULT NULL, `account_type` int(11) DEFAULT NULL, `passport_country` varchar(255) DEFAULT NULL, `passport` varchar(255) DEFAULT NULL, `location_type` varchar(255) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `state` varchar(255) DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `zipcode` varchar(255) DEFAULT NULL, `hours_per_day` double(30,2) DEFAULT NULL, `annual_salary` int(11) DEFAULT NULL, `days_per_week` int(11) DEFAULT NULL, `fixed_salary` int(11) DEFAULT NULL, `hours_per_month` double(30,2) DEFAULT NULL, `rate_per_day` int(11) DEFAULT NULL, `days_per_month` int(11) DEFAULT NULL, `rate_per_hour` int(11) DEFAULT NULL, `payment_requires_work_advice` varchar(255) NOT NULL DEFAULT 'off', `salary` int(11) DEFAULT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `employee_documents` -- CREATE TABLE `employee_documents` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `document_id` int(11) NOT NULL, `document_value` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `events` -- CREATE TABLE `events` ( `id` bigint(20) UNSIGNED NOT NULL, `branch_id` int(11) NOT NULL, `department_id` longtext NOT NULL, `employee_id` longtext NOT NULL, `title` varchar(255) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `color` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `created_by` int(11) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `event_employees` -- CREATE TABLE `event_employees` ( `id` bigint(20) UNSIGNED NOT NULL, `event_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `experience_certificates` -- CREATE TABLE `experience_certificates` ( `id` bigint(20) UNSIGNED NOT NULL, `lang` varchar(255) NOT NULL, `content` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `experience_certificates` -- INSERT INTO `experience_certificates` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'ar', '<h3 style=\"text-align: center;\">بريد إلكتروني تجربة</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>إلي من يهمه الامر</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>مدة الخدمة {duration} في {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>الادوار والمسؤوليات</p>\n\n\n\n <p>وصف موجز لمسار عمل الموظف وبيان إيجابي من المدير أو المشرف.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (2, 'da', '<h3 style=\"text-align: center;\">Erfaringsbrev</h3>\n\n <p>{app_name}</p>\n\n <p>TIL HVEM DET MÅTTE VEDRØRE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tjenesteperiode {duration} i {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Roller og ansvar</p>\n\n\n\n <p>Kort beskrivelse af medarbejderens ansættelsesforløb og positiv udtalelse fra leder eller arbejdsleder.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (3, 'de', '<h3 style=\"text-align: center;\">Erfahrungsbrief</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>WEN ES ANGEHT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Dienstzeit {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen und Verantwortlichkeiten</p>\n\n\n\n <p>Kurze Beschreibung des beruflichen Werdegangs des Mitarbeiters und eine positive Stellungnahme des Vorgesetzten oder Vorgesetzten.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (4, 'en', '<p lang=\"en-IN\" style=\"margin-bottom: 0cm; direction: ltr; line-height: 2; text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><strong>Experience Letter</strong></span></p>\n <p>{app_name}</p>\n <p>TO WHOM IT MAY CONCERN</p>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>Tenure of Service {duration} in {app_name}.</p>\n <p>{designation}</p>\n <p>{payroll}</p>\n <p>Roles and Responsibilities</p>\n <p>Brief description of the employee’s course of employment and a positive statement from the manager or supervisor.</p>\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (5, 'es', '<h3 style=\"text-align: center;\">Carta de experiencia</h3>\n\n\n <p>{app_name}</p>\n\n <p>A QUIEN LE INTERESE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Duración del servicio {duration} en {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Funciones y responsabilidades</p>\n\n\n\n <p>Breve descripción del curso de empleo del empleado y una declaración positiva del gerente o supervisor.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (6, 'fr', '<h3 style=\"text-align: center;\">Lettre dexpérience</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>À QUI DE DROIT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durée du service {duration} dans {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rôles et responsabilités</p>\n\n\n\n <p>Brève description de lévolution de lemploi de lemployé et une déclaration positive du gestionnaire ou du superviseur.</p>\n\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (7, 'id', '<h3 style=\"text-align: center;\">Surat Pengalaman</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>UNTUK PERHATIAN</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Jangka Waktu Layanan {duration} di {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Peran dan Tanggung Jawab</p>\n\n\n\n <p>Deskripsi singkat tentang pekerjaan karyawan dan pernyataan positif dari manajer atau supervisor.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (8, 'it', '<h3 style=\"text-align: center;\">Lettera di esperienza</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>PER CHI È COINVOLTO</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durata del servizio {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Ruoli e responsabilità</p>\n\n\n\n <p>Breve descrizione del percorso lavorativo del dipendente e dichiarazione positiva del manager o supervisore.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (9, 'ja', '\n <h3 style=\"text-align: center;\">体験談</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ご担当者様</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{app_name} のサービス {duration} の保有期間。</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>役割と責任</p>\n\n\n\n <p>従業員の雇用コースの簡単な説明と、マネージャーまたはスーパーバイザーからの肯定的な声明。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (10, 'nl', '<h3 style=\"text-align: center;\">Ervaringsbrief</h3>\n\n\n <p>{app_name}</p>\n\n <p>VOOR WIE HET AANGAAT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Diensttijd {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen en verantwoordelijkheden</p>\n\n\n\n <p>Korte omschrijving van het dienstverband van de medewerker en een positieve verklaring van de leidinggevende of leidinggevende.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (11, 'pl', '<h3 style=\"text-align: center;\">Doświadczenie List</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>DO TYCH KTÓRYCH MOŻE TO DOTYCZYĆ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Okres świadczenia usług {duration} w aplikacji {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Role i obowiązki</p>\n\n\n\n <p>Krótki opis przebiegu zatrudnienia pracownika oraz pozytywna opinia kierownika lub przełożonego.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (12, 'pt', '<h3 style=\"text-align: center;\">Carta de Experiência</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>A QUEM POSSA INTERESSAR</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tempo de serviço {duration} em {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Papéis e responsabilidades</p>\n\n <p>Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.</p>\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (13, 'ru', '<h3 style=\"text-align: center;\">Письмо об опыте</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ДЛЯ ПРЕДЪЯВЛЕНИЯ ПО МЕСТУ ТРЕБОВАНИЯ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Срок службы {duration} в {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Роли и обязанности</p>\n\n\n\n <p>Краткое описание трудового стажа работника и положительное заключение руководителя или руководителя.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (14, 'ar', '<h3 style=\"text-align: center;\">بريد إلكتروني تجربة</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>إلي من يهمه الامر</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>مدة الخدمة {duration} في {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>الادوار والمسؤوليات</p>\n\n\n\n <p>وصف موجز لمسار عمل الموظف وبيان إيجابي من المدير أو المشرف.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (15, 'da', '<h3 style=\"text-align: center;\">Erfaringsbrev</h3>\n\n <p>{app_name}</p>\n\n <p>TIL HVEM DET MÅTTE VEDRØRE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tjenesteperiode {duration} i {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Roller og ansvar</p>\n\n\n\n <p>Kort beskrivelse af medarbejderens ansættelsesforløb og positiv udtalelse fra leder eller arbejdsleder.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (16, 'de', '<h3 style=\"text-align: center;\">Erfahrungsbrief</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>WEN ES ANGEHT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Dienstzeit {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen und Verantwortlichkeiten</p>\n\n\n\n <p>Kurze Beschreibung des beruflichen Werdegangs des Mitarbeiters und eine positive Stellungnahme des Vorgesetzten oder Vorgesetzten.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (17, 'en', '<p lang=\"en-IN\" style=\"margin-bottom: 0cm; direction: ltr; line-height: 2; text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><strong>Experience Letter</strong></span></p>\n <p>{app_name}</p>\n <p>TO WHOM IT MAY CONCERN</p>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>Tenure of Service {duration} in {app_name}.</p>\n <p>{designation}</p>\n <p>{payroll}</p>\n <p>Roles and Responsibilities</p>\n <p>Brief description of the employee’s course of employment and a positive statement from the manager or supervisor.</p>\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (18, 'es', '<h3 style=\"text-align: center;\">Carta de experiencia</h3>\n\n\n <p>{app_name}</p>\n\n <p>A QUIEN LE INTERESE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Duración del servicio {duration} en {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Funciones y responsabilidades</p>\n\n\n\n <p>Breve descripción del curso de empleo del empleado y una declaración positiva del gerente o supervisor.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (19, 'fr', '<h3 style=\"text-align: center;\">Lettre dexpérience</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>À QUI DE DROIT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durée du service {duration} dans {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rôles et responsabilités</p>\n\n\n\n <p>Brève description de lévolution de lemploi de lemployé et une déclaration positive du gestionnaire ou du superviseur.</p>\n\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (20, 'id', '<h3 style=\"text-align: center;\">Surat Pengalaman</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>UNTUK PERHATIAN</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Jangka Waktu Layanan {duration} di {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Peran dan Tanggung Jawab</p>\n\n\n\n <p>Deskripsi singkat tentang pekerjaan karyawan dan pernyataan positif dari manajer atau supervisor.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (21, 'it', '<h3 style=\"text-align: center;\">Lettera di esperienza</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>PER CHI È COINVOLTO</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durata del servizio {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Ruoli e responsabilità</p>\n\n\n\n <p>Breve descrizione del percorso lavorativo del dipendente e dichiarazione positiva del manager o supervisore.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (22, 'ja', '\n <h3 style=\"text-align: center;\">体験談</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ご担当者様</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{app_name} のサービス {duration} の保有期間。</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>役割と責任</p>\n\n\n\n <p>従業員の雇用コースの簡単な説明と、マネージャーまたはスーパーバイザーからの肯定的な声明。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (23, 'nl', '<h3 style=\"text-align: center;\">Ervaringsbrief</h3>\n\n\n <p>{app_name}</p>\n\n <p>VOOR WIE HET AANGAAT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Diensttijd {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen en verantwoordelijkheden</p>\n\n\n\n <p>Korte omschrijving van het dienstverband van de medewerker en een positieve verklaring van de leidinggevende of leidinggevende.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (24, 'pl', '<h3 style=\"text-align: center;\">Doświadczenie List</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>DO TYCH KTÓRYCH MOŻE TO DOTYCZYĆ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Okres świadczenia usług {duration} w aplikacji {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Role i obowiązki</p>\n\n\n\n <p>Krótki opis przebiegu zatrudnienia pracownika oraz pozytywna opinia kierownika lub przełożonego.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (25, 'pt', '<h3 style=\"text-align: center;\">Carta de Experiência</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>A QUEM POSSA INTERESSAR</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tempo de serviço {duration} em {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Papéis e responsabilidades</p>\n\n <p>Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.</p>\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (26, 'ru', '<h3 style=\"text-align: center;\">Письмо об опыте</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ДЛЯ ПРЕДЪЯВЛЕНИЯ ПО МЕСТУ ТРЕБОВАНИЯ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Срок службы {duration} в {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Роли и обязанности</p>\n\n\n\n <p>Краткое описание трудового стажа работника и положительное заключение руководителя или руководителя.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (27, 'ar', '<h3 style=\"text-align: center;\">بريد إلكتروني تجربة</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>إلي من يهمه الامر</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>مدة الخدمة {duration} في {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>الادوار والمسؤوليات</p>\n\n\n\n <p>وصف موجز لمسار عمل الموظف وبيان إيجابي من المدير أو المشرف.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (28, 'da', '<h3 style=\"text-align: center;\">Erfaringsbrev</h3>\n\n <p>{app_name}</p>\n\n <p>TIL HVEM DET MÅTTE VEDRØRE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tjenesteperiode {duration} i {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Roller og ansvar</p>\n\n\n\n <p>Kort beskrivelse af medarbejderens ansættelsesforløb og positiv udtalelse fra leder eller arbejdsleder.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (29, 'de', '<h3 style=\"text-align: center;\">Erfahrungsbrief</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>WEN ES ANGEHT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Dienstzeit {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen und Verantwortlichkeiten</p>\n\n\n\n <p>Kurze Beschreibung des beruflichen Werdegangs des Mitarbeiters und eine positive Stellungnahme des Vorgesetzten oder Vorgesetzten.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (30, 'en', '<p lang=\"en-IN\" style=\"margin-bottom: 0cm; direction: ltr; line-height: 2; text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><strong>Experience Letter</strong></span></p>\n <p>{app_name}</p>\n <p>TO WHOM IT MAY CONCERN</p>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>Tenure of Service {duration} in {app_name}.</p>\n <p>{designation}</p>\n <p>{payroll}</p>\n <p>Roles and Responsibilities</p>\n <p>Brief description of the employee’s course of employment and a positive statement from the manager or supervisor.</p>\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (31, 'es', '<h3 style=\"text-align: center;\">Carta de experiencia</h3>\n\n\n <p>{app_name}</p>\n\n <p>A QUIEN LE INTERESE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Duración del servicio {duration} en {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Funciones y responsabilidades</p>\n\n\n\n <p>Breve descripción del curso de empleo del empleado y una declaración positiva del gerente o supervisor.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (32, 'fr', '<h3 style=\"text-align: center;\">Lettre dexpérience</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>À QUI DE DROIT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durée du service {duration} dans {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rôles et responsabilités</p>\n\n\n\n <p>Brève description de lévolution de lemploi de lemployé et une déclaration positive du gestionnaire ou du superviseur.</p>\n\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (33, 'id', '<h3 style=\"text-align: center;\">Surat Pengalaman</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>UNTUK PERHATIAN</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Jangka Waktu Layanan {duration} di {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Peran dan Tanggung Jawab</p>\n\n\n\n <p>Deskripsi singkat tentang pekerjaan karyawan dan pernyataan positif dari manajer atau supervisor.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (34, 'it', '<h3 style=\"text-align: center;\">Lettera di esperienza</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>PER CHI È COINVOLTO</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durata del servizio {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Ruoli e responsabilità</p>\n\n\n\n <p>Breve descrizione del percorso lavorativo del dipendente e dichiarazione positiva del manager o supervisore.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (35, 'ja', '\n <h3 style=\"text-align: center;\">体験談</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ご担当者様</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{app_name} のサービス {duration} の保有期間。</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>役割と責任</p>\n\n\n\n <p>従業員の雇用コースの簡単な説明と、マネージャーまたはスーパーバイザーからの肯定的な声明。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (36, 'nl', '<h3 style=\"text-align: center;\">Ervaringsbrief</h3>\n\n\n <p>{app_name}</p>\n\n <p>VOOR WIE HET AANGAAT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Diensttijd {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen en verantwoordelijkheden</p>\n\n\n\n <p>Korte omschrijving van het dienstverband van de medewerker en een positieve verklaring van de leidinggevende of leidinggevende.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (37, 'pl', '<h3 style=\"text-align: center;\">Doświadczenie List</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>DO TYCH KTÓRYCH MOŻE TO DOTYCZYĆ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Okres świadczenia usług {duration} w aplikacji {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Role i obowiązki</p>\n\n\n\n <p>Krótki opis przebiegu zatrudnienia pracownika oraz pozytywna opinia kierownika lub przełożonego.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (38, 'pt', '<h3 style=\"text-align: center;\">Carta de Experiência</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>A QUEM POSSA INTERESSAR</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tempo de serviço {duration} em {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Papéis e responsabilidades</p>\n\n <p>Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.</p>\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (39, 'ru', '<h3 style=\"text-align: center;\">Письмо об опыте</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ДЛЯ ПРЕДЪЯВЛЕНИЯ ПО МЕСТУ ТРЕБОВАНИЯ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Срок службы {duration} в {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Роли и обязанности</p>\n\n\n\n <p>Краткое описание трудового стажа работника и положительное заключение руководителя или руководителя.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (40, 'ar', '<h3 style=\"text-align: center;\">بريد إلكتروني تجربة</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>إلي من يهمه الامر</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>مدة الخدمة {duration} في {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>الادوار والمسؤوليات</p>\n\n\n\n <p>وصف موجز لمسار عمل الموظف وبيان إيجابي من المدير أو المشرف.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (41, 'da', '<h3 style=\"text-align: center;\">Erfaringsbrev</h3>\n\n <p>{app_name}</p>\n\n <p>TIL HVEM DET MÅTTE VEDRØRE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tjenesteperiode {duration} i {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Roller og ansvar</p>\n\n\n\n <p>Kort beskrivelse af medarbejderens ansættelsesforløb og positiv udtalelse fra leder eller arbejdsleder.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (42, 'de', '<h3 style=\"text-align: center;\">Erfahrungsbrief</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>WEN ES ANGEHT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Dienstzeit {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen und Verantwortlichkeiten</p>\n\n\n\n <p>Kurze Beschreibung des beruflichen Werdegangs des Mitarbeiters und eine positive Stellungnahme des Vorgesetzten oder Vorgesetzten.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (43, 'en', '<p lang=\"en-IN\" style=\"margin-bottom: 0cm; direction: ltr; line-height: 2; text-align: center;\" align=\"center\"><span style=\"font-size: 18pt;\"><strong>Experience Letter</strong></span></p>\n <p>{app_name}</p>\n <p>TO WHOM IT MAY CONCERN</p>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>Tenure of Service {duration} in {app_name}.</p>\n <p>{designation}</p>\n <p>{payroll}</p>\n <p>Roles and Responsibilities</p>\n <p>Brief description of the employee’s course of employment and a positive statement from the manager or supervisor.</p>\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (44, 'es', '<h3 style=\"text-align: center;\">Carta de experiencia</h3>\n\n\n <p>{app_name}</p>\n\n <p>A QUIEN LE INTERESE</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Duración del servicio {duration} en {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Funciones y responsabilidades</p>\n\n\n\n <p>Breve descripción del curso de empleo del empleado y una declaración positiva del gerente o supervisor.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (45, 'fr', '<h3 style=\"text-align: center;\">Lettre dexpérience</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>À QUI DE DROIT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durée du service {duration} dans {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rôles et responsabilités</p>\n\n\n\n <p>Brève description de lévolution de lemploi de lemployé et une déclaration positive du gestionnaire ou du superviseur.</p>\n\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (46, 'id', '<h3 style=\"text-align: center;\">Surat Pengalaman</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>UNTUK PERHATIAN</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Jangka Waktu Layanan {duration} di {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Peran dan Tanggung Jawab</p>\n\n\n\n <p>Deskripsi singkat tentang pekerjaan karyawan dan pernyataan positif dari manajer atau supervisor.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (47, 'it', '<h3 style=\"text-align: center;\">Lettera di esperienza</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>PER CHI È COINVOLTO</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Durata del servizio {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Ruoli e responsabilità</p>\n\n\n\n <p>Breve descrizione del percorso lavorativo del dipendente e dichiarazione positiva del manager o supervisore.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (48, 'ja', '\n <h3 style=\"text-align: center;\">体験談</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ご担当者様</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{app_name} のサービス {duration} の保有期間。</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>役割と責任</p>\n\n\n\n <p>従業員の雇用コースの簡単な説明と、マネージャーまたはスーパーバイザーからの肯定的な声明。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (49, 'nl', '<h3 style=\"text-align: center;\">Ervaringsbrief</h3>\n\n\n <p>{app_name}</p>\n\n <p>VOOR WIE HET AANGAAT</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Diensttijd {duration} in {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Rollen en verantwoordelijkheden</p>\n\n\n\n <p>Korte omschrijving van het dienstverband van de medewerker en een positieve verklaring van de leidinggevende of leidinggevende.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (50, 'pl', '<h3 style=\"text-align: center;\">Doświadczenie List</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>DO TYCH KTÓRYCH MOŻE TO DOTYCZYĆ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Okres świadczenia usług {duration} w aplikacji {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Role i obowiązki</p>\n\n\n\n <p>Krótki opis przebiegu zatrudnienia pracownika oraz pozytywna opinia kierownika lub przełożonego.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (51, 'pt', '<h3 style=\"text-align: center;\">Carta de Experiência</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>A QUEM POSSA INTERESSAR</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Tempo de serviço {duration} em {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Papéis e responsabilidades</p>\n\n <p>Breve descrição do curso de emprego do funcionário e uma declaração positiva do gerente ou supervisor.</p>\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (52, 'ru', '<h3 style=\"text-align: center;\">Письмо об опыте</h3>\n\n\n\n <p>{app_name}</p>\n\n <p>ДЛЯ ПРЕДЪЯВЛЕНИЯ ПО МЕСТУ ТРЕБОВАНИЯ</p>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>Срок службы {duration} в {app_name}.</p>\n\n <p>{designation}</p>\n\n <p>{payroll}</p>\n\n <p>Роли и обязанности</p>\n\n\n\n <p>Краткое описание трудового стажа работника и положительное заключение руководителя или руководителя.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) NOT NULL, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `helpdesk_conversions` -- CREATE TABLE `helpdesk_conversions` ( `id` bigint(20) UNSIGNED NOT NULL, `ticket_id` int(11) NOT NULL, `description` text NOT NULL, `attachments` text NOT NULL, `sender` text NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `helpdesk_tickets` -- CREATE TABLE `helpdesk_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `ticket_id` varchar(100) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `category` int(11) DEFAULT NULL, `subject` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `attachments` longtext NOT NULL, `user_id` varchar(255) NOT NULL, `note` longtext DEFAULT NULL, `workspace` 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `helpdesk_ticket_categories` -- CREATE TABLE `helpdesk_ticket_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `holidays` -- CREATE TABLE `holidays` ( `id` bigint(20) UNSIGNED NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `occasion` text NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoices` -- CREATE TABLE `invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `account_type` varchar(255) NOT NULL DEFAULT 'Accounting', `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `issue_date` date NOT NULL, `due_date` date NOT NULL, `send_date` date DEFAULT NULL, `category_id` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `invoice_module` varchar(255) DEFAULT NULL, `invoice_template` varchar(255) DEFAULT NULL, `shipping_display` int(11) NOT NULL DEFAULT 1, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `invoices` -- INSERT INTO `invoices` (`id`, `invoice_id`, `user_id`, `account_type`, `customer_id`, `issue_date`, `due_date`, `send_date`, `category_id`, `status`, `invoice_module`, `invoice_template`, `shipping_display`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (6, 6, 10, 'Account', 5, '2024-10-10', '2024-10-10', NULL, 9, 0, 'account', 'template1', 1, 2, 6, '2024-10-10 14:41:34', '2024-10-10 14:41:34'), (7, 7, 8, 'Account', 4, '2024-10-10', '2024-10-10', NULL, 9, 0, 'account', 'template1', 1, 2, 6, '2024-10-10 14:43:20', '2024-10-10 14:43:20'), (8, 8, 8, 'Account', 4, '2024-10-10', '2024-10-10', NULL, 9, 0, 'account', 'template1', 1, 2, 6, '2024-10-10 14:45:21', '2024-10-10 14:45:21'), (9, 9, 8, 'Account', 4, '2024-10-10', '2024-10-10', NULL, 9, 0, 'account', NULL, 1, 2, 6, '2024-10-10 14:53:20', '2024-10-10 14:53:20'), (10, 10, 10, 'Account', 5, '2024-10-10', '2024-10-10', NULL, 9, 0, 'account', 'template1', 1, 2, 6, '2024-10-10 14:56:43', '2024-10-10 14:56:43'), (12, 12, 10, 'Account', 5, '2024-10-13', '2024-10-13', NULL, 9, 0, 'account', NULL, 1, 2, 6, '2024-10-13 08:01:29', '2024-10-13 08:01:29'); -- -------------------------------------------------------- -- -- Table structure for table `invoice_attechments` -- CREATE TABLE `invoice_attechments` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice_id` varchar(255) NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `file_size` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoice_payments` -- CREATE TABLE `invoice_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice_id` int(11) NOT NULL, `date` date NOT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `account_id` int(11) DEFAULT NULL, `payment_method` int(11) NOT NULL, `reference` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `order_id` varchar(255) DEFAULT NULL, `currency` varchar(255) DEFAULT NULL, `txn_id` varchar(255) DEFAULT NULL, `payment_type` varchar(255) NOT NULL DEFAULT 'Manually', `receipt` varchar(255) DEFAULT NULL, `add_receipt` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoice_products` -- CREATE TABLE `invoice_products` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice_id` int(11) NOT NULL, `product_type` varchar(255) DEFAULT NULL, `product_id` int(11) NOT NULL, `quantity` int(11) NOT NULL, `tax` varchar(255) DEFAULT NULL, `discount` double(8,2) NOT NULL DEFAULT 0.00, `description` longtext DEFAULT NULL, `price` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_name` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `invoice_products` -- INSERT INTO `invoice_products` (`id`, `invoice_id`, `product_type`, `product_id`, `quantity`, `tax`, `discount`, `description`, `price`, `created_at`, `updated_at`, `product_name`) VALUES (6, 6, 'product', 8, 165, '3', 0.00, '', 120.00, '2024-10-10 14:41:34', '2024-10-10 14:41:34', NULL), (7, 7, 'product', 5, 170, '3', 0.00, '', 33.00, '2024-10-10 14:43:20', '2024-10-10 14:43:20', NULL), (8, 8, 'product', 5, 47, '3', 0.00, '', 33.00, '2024-10-10 14:45:21', '2024-10-10 14:45:21', NULL), (9, 9, 'product', 9, 6, '3', 0.00, '', 35.00, '2024-10-10 14:53:20', '2024-10-10 14:53:20', NULL), (10, 10, 'product', 10, 8, '3', 0.00, '', 34.00, '2024-10-10 14:56:43', '2024-10-10 14:56:43', NULL), (12, 12, 'product', 4, 160, '3', 0.00, '', 35.00, '2024-10-13 08:01:29', '2024-10-13 08:02:05', NULL); -- -------------------------------------------------------- -- -- Table structure for table `ip_restricts` -- CREATE TABLE `ip_restricts` ( `id` bigint(20) UNSIGNED NOT NULL, `ip` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `joining_letters` -- CREATE TABLE `joining_letters` ( `id` bigint(20) UNSIGNED NOT NULL, `lang` varchar(100) NOT NULL, `content` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `joining_letters` -- INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'ar', '<h2 style=\"text-align: center;\"><strong>خطاب الانضمام</strong></h2>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>الموضوع: موعد لوظيفة {designation}</p>\n <p>عزيزي {employee_name} ،</p>\n <p>يسعدنا أن نقدم لك منصب {designation} مع {app_name} \"الشركة\" وفقًا للشروط التالية و</p>\n <p>الظروف:</p>\n <p>1. بدء العمل</p>\n <p>سيصبح عملك ساريًا اعتبارًا من {start_date}</p>\n <p>2. المسمى الوظيفي</p>\n <p>سيكون المسمى الوظيفي الخاص بك هو {designation}.</p>\n <p>3. الراتب</p>\n <p>سيكون راتبك والمزايا الأخرى على النحو المبين في الجدول 1 ، طيه.</p>\n <p>4. مكان الإرسال</p>\n <p>سيتم إرسالك إلى {branch}. ومع ذلك ، قد يُطلب منك العمل في أي مكان عمل تمتلكه الشركة ، أو</p>\n <p>قد تحصل لاحقًا.</p>\n <p>5. ساعات العمل</p>\n <p>أيام العمل العادية هي من الاثنين إلى الجمعة. سيُطلب منك العمل لساعات حسب الضرورة لـ</p>\n <p>أداء واجباتك على النحو الصحيح تجاه الشركة. ساعات العمل العادية من {start_time} إلى {end_time} وأنت</p>\n <p>من المتوقع أن يعمل ما لا يقل عن {total_hours} ساعة كل أسبوع ، وإذا لزم الأمر لساعات إضافية اعتمادًا على</p>\n <p>المسؤوليات.</p>\n <p>6. الإجازة / العطل</p>\n <p>6.1 يحق لك الحصول على إجازة غير رسمية مدتها 12 يومًا.</p>\n <p>6.2 يحق لك الحصول على إجازة مرضية مدفوعة الأجر لمدة 12 يوم عمل.</p>\n <p>6.3 تخطر الشركة بقائمة الإجازات المعلنة في بداية كل عام.</p>\n <p>7. طبيعة الواجبات</p>\n <p>ستقوم بأداء أفضل ما لديك من واجبات متأصلة في منصبك ومهام إضافية مثل الشركة</p>\n <p>قد يدعوك لأداء ، من وقت لآخر. واجباتك المحددة منصوص عليها في الجدول الثاني بهذه الرسالة.</p>\n <p>8. ممتلكات الشركة</p>\n <p>ستحافظ دائمًا على ممتلكات الشركة في حالة جيدة ، والتي قد يتم تكليفك بها للاستخدام الرسمي خلال فترة عملها</p>\n <p>عملك ، ويجب أن تعيد جميع هذه الممتلكات إلى الشركة قبل التخلي عن الرسوم الخاصة بك ، وإلا فإن التكلفة</p>\n <p>نفس الشيء سوف تسترده منك الشركة.</p>\n <p>9. الاقتراض / قبول الهدايا</p>\n <p>لن تقترض أو تقبل أي أموال أو هدية أو مكافأة أو تعويض مقابل مكاسبك الشخصية من أو تضع نفسك بأي طريقة أخرى</p>\n <p>بموجب التزام مالي تجاه أي شخص / عميل قد تكون لديك تعاملات رسمية معه.</p>\n <p>10. الإنهاء</p>\n <p>10.1 يمكن للشركة إنهاء موعدك ، دون أي سبب ، من خلال إعطائك ما لا يقل عن [إشعار] قبل أشهر</p>\n <p>إشعار خطي أو راتب بدلاً منه. لغرض هذا البند ، يقصد بالراتب المرتب الأساسي.</p>\n <p>10.2 إنهاء عملك مع الشركة ، دون أي سبب ، من خلال تقديم ما لا يقل عن إشعار الموظف</p>\n <p>أشهر الإخطار أو الراتب عن الفترة غير المحفوظة ، المتبقية بعد تعديل الإجازات المعلقة ، كما في التاريخ.</p>\n <p>10.3 تحتفظ الشركة بالحق في إنهاء عملك بإيجاز دون أي فترة إشعار أو مدفوعات إنهاء</p>\n <p>إذا كان لديه سبب معقول للاعتقاد بأنك مذنب بسوء السلوك أو الإهمال ، أو ارتكبت أي خرق جوهري لـ</p>\n <p>العقد ، أو تسبب في أي خسارة للشركة.</p>\n <p>10. 4 عند إنهاء عملك لأي سبب من الأسباب ، ستعيد إلى الشركة جميع ممتلكاتك ؛ المستندات و</p>\n <p>الأوراق الأصلية ونسخها ، بما في ذلك أي عينات ، وأدبيات ، وعقود ، وسجلات ، وقوائم ، ورسومات ، ومخططات ،</p>\n <p>الرسائل والملاحظات والبيانات وما شابه ذلك ؛ والمعلومات السرية التي بحوزتك أو تحت سيطرتك والمتعلقة بك</p>\n <p>التوظيف أو الشؤون التجارية للعملاء.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11.2 يجب عليك دائمًا الحفاظ على أعلى درجة من السرية والحفاظ على سرية السجلات والوثائق وغيرها</p>\n <p>المعلومات السرية المتعلقة بأعمال الشركة والتي قد تكون معروفة لك أو مخولة لك بأي وسيلة</p>\n <p>ولن تستخدم هذه السجلات والمستندات والمعلومات إلا بالطريقة المصرح بها حسب الأصول لصالح الشركة. إلى عن على</p>\n <p>أغراض هذا البند \"المعلومات السرية\" تعني المعلومات المتعلقة بأعمال الشركة وعملائها</p>\n <p>التي لا تتوفر لعامة الناس والتي قد تتعلمها أثناء عملك. هذا يشمل،</p>\n <p>على سبيل المثال لا الحصر ، المعلومات المتعلقة بالمنظمة وقوائم العملاء وسياسات التوظيف والموظفين والمعلومات</p>\n <p>حول منتجات الشركة وعملياتها بما في ذلك الأفكار والمفاهيم والإسقاطات والتكنولوجيا والكتيبات والرسم والتصاميم ،</p>\n <p>المواصفات وجميع الأوراق والسير الذاتية والسجلات والمستندات الأخرى التي تحتوي على هذه المعلومات السرية.</p>\n <p>11.3 لن تقوم في أي وقت بإزالة أي معلومات سرية من المكتب دون إذن.</p>\n\n <p>11.4 واجبك في الحماية وعدم الإفشاء</p>\n\n <p>تظل المعلومات السرية سارية بعد انتهاء أو إنهاء هذه الاتفاقية و / أو عملك مع الشركة.</p>\n\n <p>11.5 سوف يجعلك خرق شروط هذا البند عرضة للفصل بإجراءات موجزة بموجب الفقرة أعلاه بالإضافة إلى أي</p>\n\n <p>أي تعويض آخر قد يكون للشركة ضدك في القانون.</p>\n\n <p>12. الإخطارات</p>\n\n <p>يجوز لك إرسال إخطارات إلى الشركة على عنوان مكتبها المسجل. يمكن أن ترسل لك الشركة إشعارات على</p>\n\n <p>العنوان الذي أشرت إليه في السجلات الرسمية.</p>\n\n\n\n <p>13. تطبيق سياسة الشركة</p>\n\n <p>يحق للشركة تقديم إعلانات السياسة من وقت لآخر فيما يتعلق بمسائل مثل استحقاق الإجازة والأمومة</p>\n\n <p>الإجازة ، ومزايا الموظفين ، وساعات العمل ، وسياسات النقل ، وما إلى ذلك ، ويمكن تغييرها من وقت لآخر وفقًا لتقديرها الخاص.</p>\n\n <p>جميع قرارات سياسة الشركة هذه ملزمة لك ويجب أن تلغي هذه الاتفاقية إلى هذا الحد.</p>\n\n\n\n <p>14. القانون الحاكم / الاختصاص القضائي</p>\n\n <p>يخضع عملك في الشركة لقوانين الدولة. تخضع جميع النزاعات للاختصاص القضائي للمحكمة العليا</p>\n\n <p>غوجارات فقط.</p>\n\n\n\n <p>15. قبول عرضنا</p>\n\n <p>يرجى تأكيد قبولك لعقد العمل هذا من خلال التوقيع وإعادة النسخة المكررة.</p>\n\n\n\n <p>نرحب بكم ونتطلع إلى تلقي موافقتكم والعمل معكم.</p>\n\n\n\n <p>تفضلوا بقبول فائق الاحترام،</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (2, 'da', '<h3 style=\"text-align: center;\"><strong>Tilslutningsbrev</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Emne: Udnævnelse til stillingen som {designation}</p>\n\n\n\n\n\n\n\n <p>Kære {employee_name}</p>\n\n\n\n <p>Vi er glade for at kunne tilbyde dig stillingen som {designation} hos {app_name} \"Virksomheden\" på følgende vilkår og</p>\n\n <p>betingelser:</p>\n\n\n <p>1. Påbegyndelse af ansættelse</p>\n\n <p>Din ansættelse træder i kraft fra {start_date}</p>\n\n\n\n <p>2. Jobtitel</p>\n\n\n <p>Din jobtitel vil være {designation}.</p>\n\n\n\n <p>3. Løn</p>\n\n <p>Din løn og andre goder vil være som angivet i skema 1, hertil.</p>\n\n\n\n <p>4. Udstationeringssted</p>\n\n <p>Du vil blive slået op på {branch}. Du kan dog blive bedt om at arbejde på ethvert forretningssted, som virksomheden har, eller</p>\n\n <p>senere kan erhverve.</p>\n\n\n <p>5. Arbejdstimer</p>\n\n <p>De normale arbejdsdage er mandag til fredag. Du vil blive forpligtet til at arbejde i de timer, som er nødvendige for</p>\n\n <p>behørig varetagelse af dine pligter over for virksomheden. Den normale arbejdstid er fra {start_time} til {end_time}, og det er du</p>\n\n <p>forventes at arbejde ikke mindre end {total_hours} timer hver uge, og om nødvendigt yderligere timer afhængigt af din</p>\n\n <p>ansvar.</p>\n\n\n\n <p>6. Orlov/Ferie</p>\n\n <p>6.1 Du har ret til tilfældig ferie på 12 dage.</p>\n\n <p>6.2 Du har ret til 12 arbejdsdages sygefravær med løn.</p>\n\n <p>6.3 Virksomheden skal meddele en liste over erklærede helligdage i begyndelsen af hvert år.</p>\n\n\n\n <p>7. Arbejdsopgavernes art</p>\n\n <p>Du vil efter bedste evne udføre alle de opgaver, der er iboende i din stilling og sådanne yderligere opgaver som virksomheden</p>\n\n <p>kan opfordre dig til at optræde, fra tid til anden. Dine specifikke pligter er beskrevet i skema II hertil.</p>\n\n\n <p>8. Firmaejendom</p>\n\n <p>Du vil altid vedligeholde virksomhedens ejendom i god stand, som kan blive overdraget til dig til officiel brug i løbet af</p>\n\n <p>din ansættelse, og skal returnere al sådan ejendom til virksomheden, før du opgiver din afgift, i modsat fald vil omkostningerne</p>\n\n <p>af samme vil blive inddrevet fra dig af virksomheden.</p>\n\n\n\n <p>9. Lån/modtagelse af gaver</p>\n\n <p>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</p>\n\n <p>under en økonomisk forpligtelse over for enhver person/kunde, som du måtte have officielle forbindelser med.</p>\n\n <p>10. Opsigelse</p>\n\n <p>10.1 Din ansættelse kan opsiges af virksomheden uden nogen grund ved at give dig mindst [varsel] måneder før</p>\n\n <p>skriftligt varsel eller løn i stedet herfor. Ved løn forstås i denne paragraf grundløn.</p>\n\n <p>10.2 Du kan opsige dit ansættelsesforhold i virksomheden uden nogen grund ved at give mindst [Medarbejdermeddelelse]</p>\n\n <p>måneders forudgående varsel eller løn for den ikke-opsparede periode, tilbage efter regulering af afventende orlov, som på dato.</p>\n\n <p>10.3 Virksomheden forbeholder sig retten til at opsige dit ansættelsesforhold midlertidigt uden opsigelsesfrist eller opsigelsesbetaling</p>\n\n <p>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å</p>\n\n <p>kontrakt, eller forårsaget tab for virksomheden.</p>\n\n <p>10. 4 Ved ophør af din ansættelse uanset årsag, vil du returnere al ejendom til virksomheden; dokumenter, og</p>\n\n <p>papir, både originale og kopier heraf, inklusive prøver, litteratur, kontrakter, optegnelser, lister, tegninger, tegninger,</p>\n\n <p>breve, notater, data og lignende; og fortrolige oplysninger, i din besiddelse eller under din kontrol vedrørende din</p>\n\n <p>ansættelse eller til kunders forretningsforhold.</p>\n <p>11. Fortrolige oplysninger</p>\n\n <p>11. 1 Under din ansættelse i virksomheden vil du bruge al din tid, opmærksomhed og dygtighed efter bedste evne til</p>\n\n <p>sin virksomhed. Du må ikke, direkte eller indirekte, engagere eller associere dig med, være forbundet med, bekymret, ansat eller</p>\n\n <p>tid eller forfølge et hvilket som helst studieforløb uden forudgående tilladelse fra virksomheden. involveret i anden virksomhed eller</p>\n\n <p>aktiviteter eller enhver anden stilling eller arbejde på deltid eller forfølge ethvert studieforløb uden forudgående tilladelse fra</p>\n\n <p>Selskab.</p>\n <p>11.2 Du skal altid opretholde den højeste grad af fortrolighed og opbevare optegnelser, dokumenter og andre fortrolige oplysninger.</p>\n\n <p>Fortrolige oplysninger vedrørende virksomhedens virksomhed, som kan være kendt af dig eller betroet dig på nogen måde</p>\n\n <p>og du vil kun bruge sådanne optegnelser, dokumenter og oplysninger på en behørigt autoriseret måde i virksomhedens interesse. Til</p>\n\n <p>formålene med denne paragraf \"Fortrolige oplysninger\" betyder oplysninger om virksomhedens og dets kunders forretning</p>\n\n <p>som ikke er tilgængelig for offentligheden, og som du kan lære i løbet af din ansættelse. Dette inkluderer,</p>\n\n <p>men er ikke begrænset til information vedrørende organisationen, dens kundelister, ansættelsespolitikker, personale og information</p>\n\n <p>om virksomhedens produkter, processer, herunder ideer, koncepter, projektioner, teknologi, manualer, tegning, design,</p>\n\n <p>specifikationer og alle papirer, CVer, optegnelser og andre dokumenter, der indeholder sådanne fortrolige oplysninger.</p>\n\n <p>11.3 Du vil på intet tidspunkt fjerne fortrolige oplysninger fra kontoret uden tilladelse.</p>\n\n <p>11.4 Din pligt til at beskytte og ikke oplyse</p>\n\n <p>e Fortrolige oplysninger vil overleve udløbet eller opsigelsen af denne aftale og/eller din ansættelse hos virksomheden.</p>\n\n <p>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.</p>\n\n <p>andre retsmidler, som virksomheden måtte have mod dig i henhold til loven.</p>\n <p>12. Meddelelser</p>\n\n <p>Meddelelser kan gives af dig til virksomheden på dets registrerede kontoradresse. Meddelelser kan gives af virksomheden til dig på</p>\n\n <p>den adresse, du har angivet i de officielle optegnelser.</p>\n\n\n\n <p>13. Anvendelse af virksomhedens politik</p>\n\n <p>Virksomheden er berettiget til fra tid til anden at afgive politiske erklæringer vedrørende sager som ret til orlov, barsel</p>\n\n <p>orlov, ansattes ydelser, arbejdstider, overførselspolitikker osv., og kan ændre det samme fra tid til anden efter eget skøn.</p>\n\n <p>Alle sådanne politiske beslutninger fra virksomheden er bindende for dig og tilsidesætter denne aftale i det omfang.</p>\n\n\n\n <p>14. Gældende lov/Jurisdiktion</p>\n\n <p>Din ansættelse hos virksomheden er underlagt landets love. Alle tvister er underlagt High Courts jurisdiktion</p>\n\n <p>Kun Gujarat.</p>\n\n\n\n <p>15. Accept af vores tilbud</p>\n\n <p>Bekræft venligst din accept af denne ansættelseskontrakt ved at underskrive og returnere kopien.</p>\n\n\n\n <p>Vi byder dig velkommen og ser frem til at modtage din accept og til at arbejde sammen med dig.</p>\n\n\n\n <p>Venlig hilsen,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (3, 'de', '<h3 style=\"text-align: center;\"><strong>Beitrittsbrief</strong></h3>\n\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n\n <p>Betreff: Ernennung für die Stelle von {designation}</p>\n\n\n\n\n\n\n\n <p>Sehr geehrter {employee_name},</p>\n\n\n\n <p>Wir freuen uns, Ihnen die Position von {designation} bei {app_name} dem „Unternehmen“ zu den folgenden Bedingungen anbieten zu können</p>\n\n <p>Bedingungen:</p>\n\n\n <p>1. Aufnahme des Arbeitsverhältnisses</p>\n\n <p>Ihre Anstellung gilt ab dem {start_date}</p>\n\n\n <p>2. Berufsbezeichnung</p>\n\n <p>Ihre Berufsbezeichnung lautet {designation}.</p>\n\n\n <p>3. Gehalt</p>\n\n <p>Ihr Gehalt und andere Leistungen sind in Anhang 1 zu diesem Dokument aufgeführt.</p>\n\n\n <p>4. Postort</p>\n\n <p>Sie werden bei {branch} eingestellt. Es kann jedoch erforderlich sein, dass Sie an jedem Geschäftssitz arbeiten, den das Unternehmen hat, oder</p>\n\n <p>später erwerben kann.</p>\n\n\n <p>5. Arbeitszeit</p>\n <p>Die normalen Arbeitstage sind Montag bis Freitag. Sie müssen so viele Stunden arbeiten, wie es für die erforderlich ist</p>\n <p>ordnungsgemäße Erfüllung Ihrer Pflichten gegenüber dem Unternehmen. Die normalen Arbeitszeiten sind von {start_time} bis {end_time} und Sie sind es</p>\n <p>voraussichtlich nicht weniger als {total_hours} Stunden pro Woche arbeiten, und falls erforderlich, abhängig von Ihren zusätzlichen Stunden</p>\n <p>Verantwortlichkeiten.</p>\n\n\n\n <p>6. Urlaub/Urlaub</p>\n\n <p>6.1 Sie haben Anspruch auf Freizeiturlaub von 12 Tagen.</p>\n\n <p>6.2 Sie haben Anspruch auf 12 Arbeitstage bezahlten Krankenurlaub.</p>\n\n <p>6.3 Das Unternehmen teilt zu Beginn jedes Jahres eine Liste der erklärten Feiertage mit.</p>\n\n\n\n <p>7. Art der Pflichten</p>\n\n <p>Sie werden alle Aufgaben, die mit Ihrer Funktion verbunden sind, sowie alle zusätzlichen Aufgaben als Unternehmen nach besten Kräften erfüllen</p>\n\n <p>kann Sie von Zeit zu Zeit zur Leistung auffordern. Ihre spezifischen Pflichten sind in Anhang II zu diesem Dokument aufgeführt.</p>\n\n\n\n <p>8. Firmeneigentum</p>\n\n <p>Sie werden das Firmeneigentum, das Ihnen im Laufe der Zeit für offizielle Zwecke anvertraut werden kann, stets in gutem Zustand halten</p>\n\n <p>Ihrer Anstellung und muss all dieses Eigentum an das Unternehmen zurückgeben, bevor Sie Ihre Gebühr aufgeben, andernfalls die Kosten</p>\n\n <p>derselben werden von der Gesellschaft von Ihnen zurückgefordert.</p>\n\n\n\n <p>9. Leihen/Annehmen von Geschenken</p>\n\n <p>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</p>\n\n <p>unter finanzieller Verpflichtung gegenüber Personen/Kunden, mit denen Sie möglicherweise dienstliche Beziehungen unterhalten.</p>\n\n <p>10. Kündigung</p>\n\n <p>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</p>\n\n <p>schriftliche Kündigung oder Gehalt statt dessen. Gehalt im Sinne dieser Klausel bedeutet Grundgehalt.</p>\n\n <p>10.2 Sie können Ihre Anstellung beim Unternehmen ohne Angabe von Gründen kündigen, indem Sie mindestens [Mitarbeitermitteilung]</p>\n\n <p>Kündigungsfrist von Monaten oder Gehalt für den nicht angesparten Zeitraum, der nach Anpassung der anstehenden Urlaubstage übrig bleibt, zum Stichtag.</p>\n\n <p>10.3 Das Unternehmen behält sich das Recht vor, Ihr Arbeitsverhältnis ohne Kündigungsfrist oder Abfindungszahlung fristlos zu kündigen</p>\n\n <p>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</p>\n\n <p>oder dem Unternehmen Verluste verursacht haben.</p>\n\n <p>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</p>\n\n <p>Papier, sowohl Original als auch Kopien davon, einschließlich aller Muster, Literatur, Verträge, Aufzeichnungen, Listen, Zeichnungen, Blaupausen,</p>\n\n <p>Briefe, Notizen, Daten und dergleichen; und vertrauliche Informationen, die sich in Ihrem Besitz oder unter Ihrer Kontrolle befinden und sich auf Sie beziehen</p>\n\n <p>Beschäftigung oder für die geschäftlichen Angelegenheiten der Kunden.</p>\n\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (4, 'en', '<h3 style=\"text-align: center;\">Joining Letter</h3>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>Subject: Appointment for the post of {designation}</p>\n <p>Dear {employee_name},</p>\n <p>We are pleased to offer you the position of {designation} with {app_name} theCompany on the following terms and</p>\n <p>conditions:</p>\n <p>1. Commencement of employment</p>\n <p>Your employment will be effective, as of {start_date}</p>\n <p>2. Job title</p>\n <p>Your job title will be{designation}.</p>\n <p>3. Salary</p>\n <p>Your salary and other benefits will be as set out in Schedule 1, hereto.</p>\n <p>4. Place of posting</p>\n <p>You will be posted at {branch}. You may however be required to work at any place of business which the Company has, or</p>\n <p>may later acquire.</p>\n <p>5. Hours of Work</p>\n <p>The normal working days are Monday through Friday. You will be required to work for such hours as necessary for the</p>\n <p>proper discharge of your duties to the Company. The normal working hours are from {start_time} to {end_time} and you are</p>\n <p>expected to work not less than {total_hours} hours each week, and if necessary for additional hours depending on your</p>\n <p>responsibilities.</p>\n <p>6. Leave/Holidays</p>\n <p>6.1 You are entitled to casual leave of 12 days.</p>\n <p>6.2 You are entitled to 12 working days of paid sick leave.</p>\n <p>6.3 The Company shall notify a list of declared holidays at the beginning of each year.</p>\n <p>7. Nature of duties</p>\n <p>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</p>\n <p>may call upon you to perform, from time to time. Your specific duties are set out in Schedule II hereto.</p>\n <p>8. Company property</p>\n <p>You will always maintain in good condition Company property, which may be entrusted to you for official use during the course of</p>\n <p>your employment, and shall return all such property to the Company prior to relinquishment of your charge, failing which the cost</p>\n <p>of the same will be recovered from you by the Company.</p>\n <p>9. Borrowing/accepting gifts</p>\n <p>You will not borrow or accept any money, gift, reward, or compensation for your personal gains from or otherwise place yourself</p>\n <p>under pecuniary obligation to any person/client with whom you may be having official dealings.</p>\n <p>10. Termination</p>\n <p>10.1 Your appointment can be terminated by the Company, without any reason, by giving you not less than [Notice] months prior</p>\n <p>notice in writing or salary in lieu thereof. For the purpose of this clause, salary shall mean basic salary.</p>\n <p>10.2 You may terminate your employment with the Company, without any cause, by giving no less than [Employee Notice]</p>\n <p>months prior notice or salary for the unsaved period, left after adjustment of pending leaves, as on date.</p>\n <p>10.3 The Company reserves the right to terminate your employment summarily without any notice period or termination payment</p>\n <p>if it has reasonable ground to believe you are guilty of misconduct or negligence, or have committed any fundamental breach of</p>\n <p>contract, or caused any loss to the Company.</p>\n <p>10. 4 On the termination of your employment for whatever reason, you will return to the Company all property; documents, and</p>\n <p>paper, both original and copies thereof, including any samples, literature, contracts, records, lists, drawings, blueprints,</p>\n <p>letters, notes, data and the like; and Confidential Information, in your possession or under your control relating to your</p>\n <p>employment or to clients business affairs.</p>\n <p>11. Confidential Information</p>\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n <p>Company.</p>\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other</p>\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n <p>the purposes of this clauseConfidential Information means information about the Companys business and that of its customers</p>\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n <p>about the Companys products, processes including ideas, concepts, projections, technology, manuals, drawing, designs,</p>\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n <p>11.4 Your duty to safeguard and not disclos</p>\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n <p>the address intimated by you in the official records.</p>\n <p>13. Applicability of Company Policy</p>\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n <p>leave, employees benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n <p>14. Governing Law/Jurisdiction</p>\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n <p>Gujarat only.</p>\n <p>15. Acceptance of our offer</p>\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n <p>Yours Sincerely,</p>\n <p>{app_name}</p>\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (5, 'es', '<h3 style=\"text-align: center;\"><strong>Carta de unión</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Asunto: Nombramiento para el puesto de {designation}</p>\n\n\n\n <p>Estimado {employee_name},</p>\n\n <p>Nos complace ofrecerle el puesto de {designation} con {app_name}, la Compañía en los siguientes términos y</p>\n\n <p>condiciones:</p>\n\n\n <p>1. Comienzo del empleo</p>\n\n <p>Su empleo será efectivo a partir del {start_date}</p>\n\n\n <p>2. Título del trabajo</p>\n <p>El título de su trabajo será {designation}.</p>\n\n <p>3. Salario</p>\n\n <p>Su salario y otros beneficios serán los establecidos en el Anexo 1 del presente.</p>\n\n\n <p>4. Lugar de destino</p>\n <p>Se le publicará en {branch}. Sin embargo, es posible que deba trabajar en cualquier lugar de negocios que tenga la Compañía, o</p>\n\n <p>puede adquirir posteriormente.</p>\n\n\n\n <p>5. Horas de trabajo</p>\n\n <p>Los días normales de trabajo son de lunes a viernes. Se le pedirá que trabaje las horas que sean necesarias para el</p>\n\n <p>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á</p>\n\n <p>se espera que trabaje no menos de {total_hours} horas cada semana y, si es necesario, horas adicionales dependiendo de su</p>\n\n <p>responsabilidades.</p>\n\n\n\n <p>6. Licencia/Vacaciones</p>\n\n <p>6.1 Tiene derecho a un permiso eventual de 12 días.</p>\n\n <p>6.2 Tiene derecho a 12 días laborables de baja por enfermedad remunerada.</p>\n\n <p>6.3 La Compañía deberá notificar una lista de días festivos declarados al comienzo de cada año.</p>\n\n\n\n <p>7. Naturaleza de los deberes</p>\n\n <p>Desempeñará lo mejor que pueda todas las funciones inherentes a su puesto y aquellas funciones adicionales que la empresa</p>\n\n <p>puede pedirte que actúes, de vez en cuando. Sus deberes específicos se establecen en el Anexo II del presente.</p>\n\n\n\n <p>8. Propiedad de la empresa</p>\n\n <p>Siempre mantendrá en buenas condiciones la propiedad de la Compañía, que se le puede confiar para uso oficial durante el curso de</p>\n\n <p>su empleo, y devolverá todos esos bienes a la Compañía antes de renunciar a su cargo, en caso contrario, el costo</p>\n\n <p>de la misma será recuperada de usted por la Compañía.</p>\n\n\n\n <p>9. Tomar prestado/aceptar regalos</p>\n\n <p>No pedirá prestado ni aceptará dinero, obsequios, recompensas o compensaciones por sus ganancias personales o se colocará de otra manera</p>\n\n <p>bajo obligación pecuniaria a cualquier persona/cliente con quien pueda tener tratos oficiales.</p>\n <p>10. Terminación</p>\n\n <p>10.1 Su nombramiento puede ser rescindido por la Compañía, sin ningún motivo, al darle no menos de [Aviso] meses antes</p>\n\n <p>aviso por escrito o salario en su lugar. Para los efectos de esta cláusula, se entenderá por salario el salario base.</p>\n\n <p>10.2 Puede rescindir su empleo con la Compañía, sin ninguna causa, dando no menos de [Aviso al empleado]</p>\n\n <p>meses de preaviso o salario por el período no ahorrado, remanente después del ajuste de licencias pendientes, a la fecha.</p>\n\n <p>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</p>\n\n <p>si tiene motivos razonables para creer que usted es culpable de mala conducta o negligencia, o ha cometido una violación fundamental de</p>\n\n <p>contrato, o causado cualquier pérdida a la Compañía.</p>\n\n <p>10. 4 A la terminación de su empleo por cualquier motivo, devolverá a la Compañía todos los bienes; documentos, y</p>\n\n <p>papel, tanto en original como en copia del mismo, incluyendo cualquier muestra, literatura, contratos, registros, listas, dibujos, planos,</p>\n\n <p>cartas, notas, datos y similares; e Información confidencial, en su posesión o bajo su control en relación con su</p>\n\n <p>empleo o a los asuntos comerciales de los clientes.</p>\n <p>11. Información confidencial</p>\n\n <p>11. 1 Durante su empleo en la Compañía, dedicará todo su tiempo, atención y habilidad lo mejor que pueda para</p>\n\n <p>son negocios. Usted no deberá, directa o indirectamente, comprometerse o asociarse con, estar conectado, interesado, empleado o</p>\n\n <p>tiempo o seguir cualquier curso de estudio, sin el permiso previo de la Compañía. participar en cualquier otro negocio o</p>\n\n <p>actividades o cualquier otro puesto o trabajo a tiempo parcial o seguir cualquier curso de estudio, sin el permiso previo de la</p>\n\n <p>Compañía.</p>\n\n <p>11.2 Siempre debe mantener el más alto grado de confidencialidad y mantener como confidenciales los registros, documentos y otros</p>\n\n <p>Información confidencial relacionada con el negocio de la Compañía que usted pueda conocer o confiarle por cualquier medio</p>\n\n <p>y utilizará dichos registros, documentos e información solo de manera debidamente autorizada en interés de la Compañía. Para</p>\n\n <p>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.</p>\n\n <p>que no está disponible para el público en general y que usted puede aprender en el curso de su empleo. Esto incluye,</p>\n\n <p>pero no se limita a, información relacionada con la organización, sus listas de clientes, políticas de empleo, personal e información</p>\n\n <p>sobre los productos de la Compañía, procesos que incluyen ideas, conceptos, proyecciones, tecnología, manuales, dibujos, diseños,</p>\n\n <p>especificaciones, y todos los papeles, currículos, registros y otros documentos que contengan dicha Información Confidencial.</p>\n\n <p>11.3 En ningún momento, sacará ninguna Información Confidencial de la oficina sin permiso.</p>\n\n <p>11.4 Su deber de salvaguardar y no divulgar</p>\n\n <p>La Información Confidencial sobrevivirá a la expiración o terminación de este Acuerdo y/o su empleo con la Compañía.</p>\n\n <p>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</p>\n\n <p>otro recurso que la Compañía pueda tener contra usted por ley.</p>\n <p>12. Avisos</p>\n\n <p>Usted puede enviar notificaciones a la Compañía a su domicilio social. La Compañía puede enviarle notificaciones a usted en</p>\n\n <p>la dirección indicada por usted en los registros oficiales.</p>\n\n\n\n <p>13. Aplicabilidad de la política de la empresa</p>\n\n <p>La Compañía tendrá derecho a hacer declaraciones de política de vez en cuando relacionadas con asuntos como el derecho a licencia, maternidad</p>\n\n <p>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.</p>\n\n <p>Todas las decisiones políticas de la Compañía serán vinculantes para usted y anularán este Acuerdo en esa medida.</p>\n\n\n\n <p>14. Ley aplicable/Jurisdicción</p>\n\n <p>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</p>\n\n <p>Sólo Gujarat.</p>\n\n\n\n <p>15. Aceptación de nuestra oferta</p>\n\n <p>Por favor, confirme su aceptación de este Contrato de Empleo firmando y devolviendo el duplicado.</p>\n\n\n\n <p>Le damos la bienvenida y esperamos recibir su aceptación y trabajar con usted.</p>\n\n\n\n <p>Tuyo sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (6, 'fr', '<h3 style=\"text-align: center;\">Lettre dadhésion</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n <p>Objet : Nomination pour le poste de {designation}</p>\n\n\n\n <p>Cher {employee_name},</p>\n\n\n <p>Nous sommes heureux de vous proposer le poste de {designation} avec {app_name} la \"Société\" selon les conditions suivantes et</p>\n\n <p>les conditions:</p>\n\n <p>1. Entrée en fonction</p>\n\n <p>Votre emploi sera effectif à partir du {start_date}</p>\n\n\n\n <p>2. Intitulé du poste</p>\n\n <p>Votre titre de poste sera {designation}.</p>\n\n\n\n <p>3. Salaire</p>\n\n <p>Votre salaire et vos autres avantages seront tels quindiqués à lannexe 1 ci-jointe.</p>\n\n\n <p>4. Lieu de détachement</p>\n <p>Vous serez affecté à {branch}. Vous pouvez cependant être tenu de travailler dans nimporte quel lieu daffaires que la Société a, ou</p>\n\n <p>pourra acquérir plus tard.</p>\n\n\n\n <p>5. Heures de travail</p>\n\n <p>Les jours ouvrables normaux sont du lundi au vendredi. Vous devrez travailler les heures nécessaires à la</p>\n\n <p>lexercice correct de vos fonctions envers la Société. Les heures normales de travail vont de {start_time} à {end_time} et vous êtes</p>\n\n <p>devrait travailler au moins {total_hours} heures par semaine, et si nécessaire des heures supplémentaires en fonction de votre</p>\n\n <p>responsabilités.</p>\n\n <p>6. Congés/Vacances</p>\n\n <p>6.1 Vous avez droit à un congé occasionnel de 12 jours.</p>\n\n <p>6.2 Vous avez droit à 12 jours ouvrables de congé de maladie payé.</p>\n\n <p>6.3 La Société communiquera une liste des jours fériés déclarés au début de chaque année.</p>\n\n\n\n <p>7. Nature des fonctions</p>\n\n <p>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</p>\n\n <p>peut faire appel à vous pour effectuer, de temps à autre. Vos fonctions spécifiques sont énoncées à lannexe II ci-jointe.</p>\n\n\n\n <p>8. Biens sociaux</p>\n\n <p>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</p>\n\n <p>votre emploi, et doit restituer tous ces biens à la Société avant labandon de votre charge, à défaut de quoi le coût</p>\n\n <p>de même seront récupérés auprès de vous par la Société.</p>\n\n\n\n <p>9. Emprunter/accepter des cadeaux</p>\n\n <p>Vous nemprunterez ni naccepterez dargent, de cadeau, de récompense ou de compensation pour vos gains personnels ou vous placerez autrement</p>\n\n <p>sous obligation pécuniaire envers toute personne/client avec qui vous pourriez avoir des relations officielles.</p>\n <p>10. Résiliation</p>\n\n <p>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</p>\n\n <p>un préavis écrit ou un salaire en tenant lieu. Aux fins de la présente clause, salaire sentend du salaire de base.</p>\n\n <p>10.2 Vous pouvez résilier votre emploi au sein de la Société, sans motif, en donnant au moins [Avis à lemployé]</p>\n\n <p>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.</p>\n\n <p>10.3 La Société se réserve le droit de résilier votre emploi sans préavis ni indemnité de licenciement.</p>\n\n <p>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</p>\n\n <p>contrat, ou causé une perte à la Société.</p>\n\n <p>10. 4 À la fin de votre emploi pour quelque raison que ce soit, vous restituerez à la Société tous les biens ; document, et</p>\n\n <p>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,</p>\n\n <p>lettres, notes, données et similaires; et Informations confidentielles, en votre possession ou sous votre contrôle relatives à votre</p>\n\n <p>lemploi ou aux affaires commerciales des clients.</p>\n <p>11. Informations confidentielles</p>\n\n <p>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</p>\n\n <p>son affaire. Vous ne devez pas, directement ou indirectement, vous engager ou vous associer à, être lié à, concerné, employé ou</p>\n\n <p>temps ou poursuivre quelque programme détudes que ce soit, sans lautorisation préalable de la Société. engagé dans toute autre entreprise ou</p>\n\n <p>activités ou tout autre poste ou travail à temps partiel ou poursuivre des études quelconques, sans lautorisation préalable du</p>\n\n <p>Compagnie.</p>\n\n <p>11.2 Vous devez toujours maintenir le plus haut degré de confidentialité et garder confidentiels les dossiers, documents et autres</p>\n\n <p>Informations confidentielles relatives à lactivité de la Société dont vous pourriez avoir connaissance ou qui vous seraient confiées par tout moyen</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>qui nest pas accessible au grand public et dont vous pourriez avoir connaissance dans le cadre de votre emploi. Ceci comprend,</p>\n\n <p>mais sans sy limiter, les informations relatives à lorganisation, ses listes de clients, ses politiques demploi, son personnel et les informations</p>\n\n <p>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,</p>\n\n <p>spécifications, et tous les papiers, curriculum vitae, dossiers et autres documents contenant de telles informations confidentielles.</p>\n\n <p>11.3 À aucun moment, vous ne retirerez des informations confidentielles du bureau sans autorisation.</p>\n\n <p>11.4 Votre devoir de protéger et de ne pas divulguer</p>\n\n <p>Les Informations confidentielles survivront à lexpiration ou à la résiliation du présent Contrat et/ou à votre emploi au sein de la Société.</p>\n\n <p>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</p>\n\n <p>autre recours que la Société peut avoir contre vous en droit.</p>\n <p>12. Avis</p>\n\n <p>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é à</p>\n\n <p>ladresse que vous avez indiquée dans les registres officiels.</p>\n\n\n\n <p>13. Applicabilité de la politique de lentreprise</p>\n\n <p>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é</p>\n\n <p>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.</p>\n\n <p>Toutes ces décisions politiques de la Société vous lieront et prévaudront sur le présent Contrat dans cette mesure.</p>\n\n\n\n <p>14. Droit applicable/juridiction</p>\n\n <p>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</p>\n\n <p>Gujarat uniquement.</p>\n\n\n\n <p>15. Acceptation de notre offre</p>\n\n <p>Veuillez confirmer votre acceptation de ce contrat de travail en signant et en renvoyant le duplicata.</p>\n\n\n\n <p>Nous vous souhaitons la bienvenue et nous nous réjouissons de recevoir votre acceptation et de travailler avec vous.</p>\n\n\n\n <p>Cordialement,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (7, 'id', '<h3 style=\"text-align: center;\">Surat Bergabung</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Perihal: Pengangkatan untuk jabatan {designation}</p>\n\n\n <p>{employee_name} yang terhormat,</p>\n\n <p>Kami dengan senang hati menawarkan kepada Anda, posisi {designation} dengan {app_name} sebagai Perusahaan dengan persyaratan dan</p>\n\n <p>kondisi:</p>\n\n\n\n <p>1. Mulai bekerja</p>\n\n <p>Pekerjaan Anda akan efektif, mulai {start_date}</p>\n\n\n <p>2. Jabatan</p>\n <p>Jabatan Anda adalah {designation}.</p>\n\n <p>3. Gaji</p>\n <p>Gaji Anda dan tunjangan lainnya akan diatur dalam Jadwal 1, di sini.</p>\n\n\n <p>4. Tempat posting</p>\n\n <p>Anda akan diposkan di {branch}. Namun Anda mungkin diminta untuk bekerja di tempat bisnis mana pun yang dimiliki Perusahaan, atau</p>\n\n <p>nantinya dapat memperoleh.</p>\n\n\n\n <p>5. Jam Kerja</p>\n\n <p>Hari kerja normal adalah Senin sampai Jumat. Anda akan diminta untuk bekerja selama jam-jam yang diperlukan untuk</p>\n\n <p>pelaksanaan tugas Anda dengan benar di Perusahaan. Jam kerja normal adalah dari {start_time} hingga {end_time} dan Anda</p>\n\n <p>diharapkan bekerja tidak kurang dari {total_hours} jam setiap minggu, dan jika perlu untuk jam tambahan tergantung pada</p>\n\n <p>tanggung jawab.</p>\n\n\n\n <p>6. Cuti/Libur</p>\n\n <p>6.1 Anda berhak atas cuti biasa selama 12 hari.</p>\n\n <p>6.2 Anda berhak atas 12 hari kerja cuti sakit berbayar.</p>\n\n <p>6.3 Perusahaan akan memberitahukan daftar hari libur yang diumumkan pada awal setiap tahun.</p>\n\n\n\n <p>7. Sifat tugas</p>\n\n <p>Anda akan melakukan yang terbaik dari kemampuan Anda semua tugas yang melekat pada jabatan Anda dan tugas tambahan seperti perusahaan</p>\n\n <p>dapat memanggil Anda untuk tampil, dari waktu ke waktu. Tugas khusus Anda ditetapkan dalam Jadwal II di sini.</p>\n\n\n\n <p>8. Properti perusahaan</p>\n\n <p>Anda akan selalu menjaga properti Perusahaan dalam kondisi baik, yang dapat dipercayakan kepada Anda untuk penggunaan resmi selama</p>\n\n <p>pekerjaan Anda, dan akan mengembalikan semua properti tersebut kepada Perusahaan sebelum melepaskan biaya Anda, jika tidak ada biayanya</p>\n\n <p>yang sama akan dipulihkan dari Anda oleh Perusahaan.</p>\n\n\n\n <p>9. Meminjam/menerima hadiah</p>\n\n <p>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</p>\n\n <p>di bawah kewajiban uang kepada setiap orang/klien dengan siapa Anda mungkin memiliki hubungan resmi.</p>\n <p>10. Penghentian</p>\n\n <p>10.1 Penunjukan Anda dapat diakhiri oleh Perusahaan, tanpa alasan apa pun, dengan memberi Anda tidak kurang dari [Pemberitahuan] bulan sebelumnya</p>\n\n <p>pemberitahuan secara tertulis atau gaji sebagai penggantinya. Untuk maksud pasal ini, gaji berarti gaji pokok.</p>\n\n <p>10.2 Anda dapat memutuskan hubungan kerja Anda dengan Perusahaan, tanpa alasan apa pun, dengan memberikan tidak kurang dari [Pemberitahuan Karyawan]</p>\n\n <p>pemberitahuan atau gaji bulan sebelumnya untuk periode yang belum disimpan, yang tersisa setelah penyesuaian cuti yang tertunda, pada tanggal.</p>\n\n <p>10.3 Perusahaan berhak untuk mengakhiri hubungan kerja Anda dengan segera tanpa pemberitahuan jangka waktu atau pembayaran pemutusan hubungan kerja</p>\n\n <p>jika memiliki alasan yang masuk akal untuk meyakini bahwa Anda bersalah atas kesalahan atau kelalaian, atau telah melakukan pelanggaran mendasar apa pun terhadap</p>\n\n <p>kontrak, atau menyebabkan kerugian bagi Perusahaan.</p>\n\n <p>10. 4 Pada pemutusan hubungan kerja Anda karena alasan apa pun, Anda akan mengembalikan semua properti kepada Perusahaan; dokumen, dan</p>\n\n <p>kertas, baik asli maupun salinannya, termasuk contoh, literatur, kontrak, catatan, daftar, gambar, cetak biru,</p>\n\n <p>surat, catatan, data dan sejenisnya; dan Informasi Rahasia, yang Anda miliki atau di bawah kendali Anda terkait dengan</p>\n\n <p>pekerjaan atau untuk urusan bisnis klien.</p>\n <p>11. Informasi Rahasia</p>\n\n <p>11. 1 Selama bekerja di Perusahaan, Anda akan mencurahkan seluruh waktu, perhatian, dan keterampilan Anda sebaik mungkin untuk</p>\n\n <p>bisnisnya. Anda tidak boleh, secara langsung atau tidak langsung, terlibat atau mengasosiasikan diri Anda dengan, terhubung dengan, terkait, dipekerjakan, atau</p>\n\n <p>waktu atau mengikuti program studi apapun, tanpa izin sebelumnya dari Perusahaan.terlibat dalam bisnis lain atau</p>\n\n <p>kegiatan atau pos atau pekerjaan paruh waktu lainnya atau mengejar program studi apa pun, tanpa izin sebelumnya dari</p>\n\n <p>Perusahaan.</p>\n\n <p>11.2 Anda harus selalu menjaga tingkat kerahasiaan tertinggi dan merahasiakan catatan, dokumen, dan lainnya</p>\n\n <p>Informasi Rahasia yang berkaitan dengan bisnis Perusahaan yang mungkin Anda ketahui atau rahasiakan kepada Anda dengan cara apa pun</p>\n\n <p>dan Anda akan menggunakan catatan, dokumen, dan informasi tersebut hanya dengan cara yang sah untuk kepentingan Perusahaan. Untuk</p>\n\n <p>tujuan klausul ini Informasi Rahasia berarti informasi tentang bisnis Perusahaan dan pelanggannya</p>\n\n <p>yang tidak tersedia untuk masyarakat umum dan yang mungkin Anda pelajari selama masa kerja Anda. Ini termasuk,</p>\n\n <p>tetapi tidak terbatas pada, informasi yang berkaitan dengan organisasi, daftar pelanggannya, kebijakan ketenagakerjaan, personel, dan informasi</p>\n\n <p>tentang produk Perusahaan, proses termasuk ide, konsep, proyeksi, teknologi, manual, gambar, desain,</p>\n\n <p>spesifikasi, dan semua makalah, resume, catatan dan dokumen lain yang berisi Informasi Rahasia tersebut.</p>\n\n <p>11.3 Kapan pun Anda akan menghapus Informasi Rahasia apa pun dari kantor tanpa izin.</p>\n\n <p>11.4 Kewajiban Anda untuk melindungi dan tidak mengungkapkan</p>\n\n <p>e Informasi Rahasia akan tetap berlaku setelah berakhirnya atau pengakhiran Perjanjian ini dan/atau hubungan kerja Anda dengan Perusahaan.</p>\n\n <p>11.5 Pelanggaran terhadap ketentuan klausul ini akan membuat Anda bertanggung jawab atas pemecatan singkat berdasarkan klausul di atas selain dari:</p>\n\n <p>upaya hukum lain yang mungkin dimiliki Perusahaan terhadap Anda secara hukum.</p>\n <p>12. Pemberitahuan</p>\n\n <p>Pemberitahuan dapat diberikan oleh Anda kepada Perusahaan di alamat kantor terdaftarnya. Pemberitahuan dapat diberikan oleh Perusahaan kepada Anda di</p>\n\n <p>alamat yang diberitahukan oleh Anda dalam catatan resmi.</p>\n\n\n\n <p>13. Keberlakuan Kebijakan Perusahaan</p>\n\n <p>Perusahaan berhak untuk membuat pernyataan kebijakan dari waktu ke waktu berkaitan dengan hal-hal seperti hak cuti, persalinan</p>\n\n <p>cuti, tunjangan karyawan, jam kerja, kebijakan transfer, dll., dan dapat mengubahnya dari waktu ke waktu atas kebijakannya sendiri.</p>\n\n <p>Semua keputusan kebijakan Perusahaan tersebut akan mengikat Anda dan akan mengesampingkan Perjanjian ini sejauh itu.</p>\n\n\n\n <p>14. Hukum/Yurisdiksi yang Mengatur</p>\n\n <p>Pekerjaan Anda dengan Perusahaan tunduk pada undang-undang Negara. Semua perselisihan akan tunduk pada yurisdiksi Pengadilan Tinggi</p>\n\n <p>Gujarat saja.</p>\n\n\n\n <p>15. Penerimaan penawaran kami</p>\n\n <p>Harap konfirmasikan penerimaan Anda atas Kontrak Kerja ini dengan menandatangani dan mengembalikan salinan duplikatnya.</p>\n\n\n\n <p>Kami menyambut Anda dan berharap untuk menerima penerimaan Anda dan bekerja sama dengan Anda.</p>\n\n\n\n <p>Dengan hormat,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (8, 'it', '<h3 style=\"text-align: center;\">Lettera di adesione</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Oggetto: Appuntamento alla carica di {designation}</p>\n\n\n <p>Gentile {employee_name},</p>\n\n <p>Siamo lieti di offrirti la posizione di {designation} con {app_name} la \"Società\" alle seguenti condizioni e</p>\n\n <p>condizioni:</p>\n\n\n <p>1. Inizio del rapporto di lavoro</p>\n\n <p>Il tuo impiego sarà effettivo a partire da {start_date}</p>\n\n\n\n <p>2. Titolo di lavoro</p>\n\n <p>Il tuo titolo di lavoro sarà {designation}.</p>\n\n <p>3. Stipendio</p>\n\n <p>Il tuo stipendio e altri benefici saranno come indicato nellAllegato 1, qui di seguito.</p>\n\n\n\n <p>4. Luogo di invio</p>\n\n <p>Sarai inviato a {branch}. Tuttavia, potrebbe essere richiesto di lavorare in qualsiasi luogo di attività che la Società ha, o</p>\n\n <p>potrà successivamente acquisire.</p>\n\n\n\n <p>5. Orario di lavoro</p>\n\n <p>I normali giorni lavorativi sono dal lunedì al venerdì. Ti verrà richiesto di lavorare per le ore necessarie per il</p>\n\n <p>corretto adempimento dei propri doveri nei confronti della Società. Lorario di lavoro normale va da {start_time} a {end_time} e tu lo sei</p>\n\n <p>dovrebbe lavorare non meno di {total_hours} ore ogni settimana e, se necessario, per ore aggiuntive a seconda del tuo</p>\n\n <p>responsabilità.</p>\n\n\n\n <p>6. Permessi/Festività</p>\n\n <p>6.1 Hai diritto a un congedo occasionale di 12 giorni.</p>\n\n <p>6.2 Hai diritto a 12 giorni lavorativi di congedo per malattia retribuito.</p>\n\n <p>6.3 La Società comunica allinizio di ogni anno un elenco delle festività dichiarate.</p>\n\n\n\n <p>7. Natura degli incarichi</p>\n\n <p>Eseguirai al meglio delle tue capacità tutti i compiti inerenti al tuo incarico e compiti aggiuntivi come lazienda</p>\n\n <p>può invitarti a esibirti, di tanto in tanto. I tuoi doveri specifici sono stabiliti nellAllegato II del presente documento.</p>\n\n\n\n <p>8. Proprietà aziendale</p>\n\n <p>Manterrete sempre in buono stato i beni dellAzienda, che nel corso dellanno potrebbero esservi affidati per uso ufficiale</p>\n\n <p>il tuo impiego, e restituirà tutte queste proprietà alla Società prima della rinuncia al tuo addebito, in caso contrario il costo</p>\n\n <p>degli stessi saranno da voi recuperati dalla Società.</p>\n\n\n\n <p>9. Prendere in prestito/accettare regali</p>\n\n <p>Non prenderai in prestito né accetterai denaro, dono, ricompensa o compenso per i tuoi guadagni personali da o altrimenti collocato te stesso</p>\n\n <p>sotto obbligazione pecuniaria nei confronti di qualsiasi persona/cliente con cui potresti avere rapporti ufficiali.</p>\n <p>10. Cessazione</p>\n\n <p>10.1 Il tuo incarico può essere risolto dalla Società, senza alcun motivo, dandoti non meno di [Avviso] mesi prima</p>\n\n <p>avviso scritto o stipendio in sostituzione di esso. Ai fini della presente clausola, per stipendio si intende lo stipendio base.</p>\n\n <p>10.2 È possibile terminare il proprio rapporto di lavoro con la Società, senza alcuna causa, fornendo non meno di [Avviso per il dipendente]</p>\n\n <p>mesi di preavviso o stipendio per il periodo non risparmiato, lasciato dopo ladeguamento delle ferie pendenti, come alla data.</p>\n\n <p>10.3 La Società si riserva il diritto di terminare il rapporto di lavoro sommariamente senza alcun periodo di preavviso o pagamento di cessazione</p>\n\n <p>se ha fondati motivi per ritenere che tu sia colpevole di cattiva condotta o negligenza, o abbia commesso una violazione fondamentale</p>\n\n <p>contratto, o ha causato danni alla Società.</p>\n\n <p>10. 4 Alla cessazione del rapporto di lavoro per qualsiasi motivo, restituirete alla Società tutti i beni; documenti, e</p>\n\n <p>carta, sia in originale che in copia, inclusi eventuali campioni, letteratura, contratti, registrazioni, elenchi, disegni, progetti,</p>\n\n <p>lettere, note, dati e simili; e Informazioni Riservate, in tuo possesso o sotto il tuo controllo, relative alla tua</p>\n\n <p>lavoro o agli affari dei clienti.</p>\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (9, 'ja', '<h3 style=\"text-align: center;\">入会の手紙</h3>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>件名: {designation} の役職への任命</p>\n\n\n\n <p>{employee_name} 様</p>\n\n\n <p>{app_name} の {designation} の地位を以下の条件で「会社」として提供できることをうれしく思います。</p>\n\n <p>条件:</p>\n\n\n <p>1. 雇用開始</p>\n\n <p>あなたの雇用は {start_date} から有効になります</p>\n\n\n <p>2. 役職</p>\n\n <p>あなたの役職は{designation}になります。</p>\n\n\n <p>3. 給与</p>\n\n <p>あなたの給与およびその他の福利厚生は、本明細書のスケジュール 1 に記載されているとおりです。</p>\n\n\n <p>4. 掲示場所</p>\n\n <p>{branch} に掲載されます。ただし、会社が所有する事業所で働く必要がある場合があります。</p>\n\n <p>後で取得する場合があります。</p>\n\n\n\n <p>5. 労働時間</p>\n\n <p>通常の営業日は月曜日から金曜日です。あなたは、そのために必要な時間働く必要があります。</p>\n\n <p>会社に対するあなたの義務の適切な遂行。通常の勤務時間は {start_time} から {end_time} までで、あなたは</p>\n\n <p>毎週 {total_hours} 時間以上の勤務が期待される</p>\n\n <p>責任。</p>\n\n\n\n <p>6.休暇・休日</p>\n\n <p>6.1 12 日間の臨時休暇を取得する権利があります。</p>\n\n <p>6.2 12 日間の有給病気休暇を取る権利があります。</p>\n\n <p>6.3 当社は、毎年の初めに宣言された休日のリストを通知するものとします。</p>\n\n\n\n <p>7. 職務内容</p>\n\n <p>あなたは、自分のポストに固有のすべての義務と、会社としての追加の義務を最大限に遂行します。</p>\n\n <p>時々あなたに演奏を依頼するかもしれません。あなたの特定の義務は、本明細書のスケジュール II に記載されています。</p>\n\n\n\n <p>8. 会社財産</p>\n\n <p>あなたは、会社の所有物を常に良好な状態に維持するものとします。</p>\n\n <p>あなたの雇用を放棄し、あなたの料金を放棄する前に、そのようなすべての財産を会社に返還するものとします。</p>\n\n <p>同じのは、会社によってあなたから回収されます。</p>\n\n\n\n <p>9. 貸出・贈答品の受け取り</p>\n\n <p>あなたは、あなた自身から、または他の方法であなた自身の場所から個人的な利益を得るための金銭、贈り物、報酬、または補償を借りたり、受け取ったりしません。</p>\n\n <p>あなたが公式の取引をしている可能性のある人物/クライアントに対する金銭的義務の下で。</p>\n <p>10. 終了</p>\n\n <p>10.1 少なくとも [通知] か月前に通知することにより、理由のいかんを問わず、会社はあなたの任命を終了することができます。</p>\n\n <p>書面による通知またはその代わりの給与。この条項の目的上、給与とは基本給を意味するものとします。</p>\n\n <p>10.2 あなたは、少なくとも [従業員通知] を提出することにより、理由のいかんを問わず、会社での雇用を終了することができます。</p>\n\n <p>保留中の休暇の調整後に残された、保存されていない期間の数か月前の通知または給与は、日付のとおりです。</p>\n\n <p>10.3 当社は、通知期間や解雇補償金なしに、あなたの雇用を即座に終了させる権利を留保します。</p>\n\n <p>あなたが不正行為または過失で有罪であると信じる合理的な根拠がある場合、または基本的な違反を犯した場合</p>\n\n <p>契約、または当社に損害を与えた。</p>\n\n <p>10. 4 何らかの理由で雇用が終了した場合、あなたは会社にすべての財産を返還するものとします。ドキュメント、および</p>\n\n <p>サンプル、文献、契約書、記録、リスト、図面、青写真を含む、原本とコピーの両方の紙、</p>\n\n <p>手紙、メモ、データなど。あなたが所有する、またはあなたの管理下にある機密情報。</p>\n\n <p>雇用またはクライアントの業務に。</p>\n <p>11. 機密情報</p>\n\n <p>11. 1 当社での雇用期間中、あなたは自分の全時間、注意、およびスキルを、自分の能力の限りを尽くして捧げます。</p>\n\n <p>そのビジネス。あなたは、直接的または間接的に、関与したり、関連付けたり、接続したり、関係したり、雇用したり、または</p>\n\n <p>会社の事前の許可なしに、時間や学習コースを追求すること。他のビジネスに従事すること、または</p>\n\n <p>の事前の許可なしに、活動またはその他の投稿またはアルバイトをしたり、何らかの研究コースを追求したりすること。</p>\n\n <p>会社。</p>\n\n <p>11.2 常に最高度の機密性を維持し、記録、文書、およびその他の情報を機密として保持する必要があります。</p>\n\n <p>お客様が知っている、または何らかの方法でお客様に内密にされている可能性がある、当社の事業に関連する機密情報</p>\n\n <p>また、あなたは、会社の利益のために正当に承認された方法でのみ、そのような記録、文書、および情報を使用するものとします。為に</p>\n\n <p>この条項の目的 「機密情報」とは、会社の事業および顧客の事業に関する情報を意味します。</p>\n\n <p>これは一般には公開されておらず、雇用の過程で学習する可能性があります。これも、</p>\n\n <p>組織、その顧客リスト、雇用方針、人事、および情報に関連する情報に限定されません</p>\n\n <p>当社の製品、アイデアを含むプロセス、コンセプト、予測、技術、マニュアル、図面、デザイン、</p>\n\n <p>仕様、およびそのような機密情報を含むすべての書類、履歴書、記録、およびその他の文書。</p>\n\n <p>11.3 いかなる時も、許可なくオフィスから機密情報を削除しないでください。</p>\n\n <p>11.4 保護し、開示しないというあなたの義務</p>\n\n <p>e 機密情報は、本契約および/または当社との雇用の満了または終了後も存続します。</p>\n\n <p>11.5 この条項の条件に違反した場合、上記の条項に基づく略式解雇の対象となります。</p>\n\n <p>会社が法律であなたに対して持つことができるその他の救済。</p>\n <p>12. 通知</p>\n\n <p>通知は、登録された事務所の住所で会社に提出することができます。通知は、当社からお客様に提供される場合があります。</p>\n\n <p>公式記録であなたがほのめかした住所。</p>\n\n\n\n <p>13. 会社方針の適用性</p>\n\n <p>会社は、休暇の資格、出産などの事項に関して、随時方針を宣言する権利を有するものとします。</p>\n\n <p>休暇、従業員の福利厚生、勤務時間、異動ポリシーなどであり、独自の裁量により随時変更される場合があります。</p>\n\n <p>当社のそのようなポリシー決定はすべて、あなたを拘束し、その範囲で本契約を無効にするものとします。</p>\n\n\n\n <p>14. 準拠法・裁判管轄</p>\n\n <p>当社でのあなたの雇用は、国の法律の対象となります。すべての紛争は、高等裁判所の管轄に服するものとします</p>\n\n <p>グジャラートのみ。</p>\n\n\n\n <p>15. オファーの受諾</p>\n\n <p>副本に署名して返送することにより、この雇用契約に同意したことを確認してください。</p>\n\n\n\n <p>私たちはあなたを歓迎し、あなたの受け入れを受け取り、あなたと一緒に働くことを楽しみにしています.</p>\n\n\n\n <p>敬具、</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (10, 'nl', '<h3 style=\"text-align: center;\">Deelnemende brief</h3>\n\n <p>{date}</p>\n\n <p>{employee}</p>\n\n <p>{address}</p>\n\n <p>Onderwerp: Benoeming voor de functie van {designation}</p>\n\n <p>Beste {employee_name},</p>\n\n <p>We zijn verheugd u de positie van {designation} bij {app_name} het Bedrijf aan te bieden onder de volgende voorwaarden en</p>\n\n <p>conditie:</p>\n\n\n <p>1. Indiensttreding</p>\n <p>Uw dienstverband gaat in op {start_date}</p>\n\n\n <p>2. Functietitel</p>\n\n <p>Uw functietitel wordt {designation}.</p>\n\n <p>3. Salaris</p>\n\n <p>Uw salaris en andere voordelen zijn zoals uiteengezet in Schema 1 hierbij.</p>\n\n <p>4. Plaats van detachering</p>\n\n <p>Je wordt geplaatst op {branch}. Het kan echter zijn dat u moet werken op een bedrijfslocatie die het Bedrijf heeft, of</p>\n\n <p>later kan verwerven.</p>\n\n\n\n <p>5. Werkuren</p>\n\n <p>De normale werkdagen zijn van maandag tot en met vrijdag. Je zal de uren moeten werken die nodig zijn voor de</p>\n\n <p>correcte uitvoering van uw taken jegens het bedrijf. De normale werkuren zijn van {start_time} tot {end_time} en jij bent</p>\n\n <p>naar verwachting niet minder dan {total_hours} uur per week werken, en indien nodig voor extra uren, afhankelijk van uw</p>\n\n <p>verantwoordelijkheden.</p>\n\n\n\n <p>6. Verlof/Vakantie</p>\n\n <p>6.1 Je hebt recht op tijdelijk verlof van 12 dagen.</p>\n\n <p>6.2 U heeft recht op 12 werkdagen betaald ziekteverlof.</p>\n\n <p>6.3 De Maatschappij stelt aan het begin van elk jaar een lijst van verklaarde feestdagen op.</p>\n\n\n\n <p>7. Aard van de taken</p>\n\n <p>Je voert alle taken die inherent zijn aan je functie en bijkomende taken zoals het bedrijf naar beste vermogen uit;</p>\n\n <p>kan van tijd tot tijd een beroep op u doen om op te treden. Uw specifieke taken zijn uiteengezet in Bijlage II hierbij.</p>\n\n\n\n <p>8. Bedrijfseigendommen</p>\n\n <p>U onderhoudt bedrijfseigendommen, die u in de loop van</p>\n\n <p>uw dienstverband, en zal al deze eigendommen aan het Bedrijf teruggeven voordat afstand wordt gedaan van uw kosten, bij gebreke waarvan de kosten</p>\n\n <p>hiervan zal door het Bedrijf van u worden verhaald.</p>\n\n\n\n <p>9. Geschenken lenen/aannemen</p>\n\n <p>U zult geen geld, geschenken, beloningen of vergoedingen voor uw persoonlijk gewin lenen of accepteren van uzelf of uzelf op een andere manier plaatsen</p>\n\n <p>onder geldelijke verplichting jegens een persoon/klant met wie u mogelijk officiële betrekkingen heeft.</p>\n <p>10. Beëindiging</p>\n\n <p>10.1 Uw aanstelling kan door het Bedrijf zonder opgaaf van reden worden beëindigd door u minimaal [Opzegging] maanden van tevoren</p>\n\n <p>schriftelijke opzegging of daarvoor in de plaats komend salaris. In dit artikel wordt onder salaris verstaan het basissalaris.</p>\n\n <p>10.2 U kunt uw dienstverband bij het Bedrijf beëindigen, zonder enige reden, door niet minder dan [Mededeling van de werknemer]</p>\n\n <p>maanden opzegtermijn of salaris voor de niet gespaarde periode, overgebleven na aanpassing van hangende verlofdagen, zoals op datum.</p>\n\n <p>10.3 Het bedrijf behoudt zich het recht voor om uw dienstverband op staande voet te beëindigen zonder enige opzegtermijn of beëindigingsvergoeding</p>\n\n <p>als het redelijke grond heeft om aan te nemen dat u zich schuldig heeft gemaakt aan wangedrag of nalatigheid, of een fundamentele schending van</p>\n\n <p>contract, of enig verlies voor het Bedrijf veroorzaakt.</p>\n\n <p>10. 4 Bij beëindiging van uw dienstverband om welke reden dan ook, geeft u alle eigendommen terug aan het Bedrijf; documenten, en</p>\n\n <p>papier, zowel origineel als kopieën daarvan, inclusief eventuele monsters, literatuur, contracten, bescheiden, lijsten, tekeningen, blauwdrukken,</p>\n\n <p>brieven, notities, gegevens en dergelijke; en Vertrouwelijke informatie, in uw bezit of onder uw controle met betrekking tot uw</p>\n\n <p>werkgelegenheid of de zakelijke aangelegenheden van klanten.</p>\n <p>11. Vertrouwelijke informatie</p>\n\n <p>11. 1 Tijdens uw dienstverband bij het Bedrijf besteedt u al uw tijd, aandacht en vaardigheden naar uw beste vermogen aan:</p>\n\n <p>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</p>\n\n <p>tijd doorbrengen of een studie volgen, zonder voorafgaande toestemming van het bedrijf.bezig met een ander bedrijf of</p>\n\n <p>werkzaamheden of enige andere functie of werk in deeltijd of het volgen van welke opleiding dan ook, zonder voorafgaande toestemming van de</p>\n\n <p>Bedrijf.</p>\n\n <p>11.2 U moet altijd de hoogste graad van vertrouwelijkheid handhaven en de records, documenten en andere</p>\n\n <p>Vertrouwelijke informatie met betrekking tot het bedrijf van het bedrijf die u op enigerlei wijze bekend is of in vertrouwen is genomen</p>\n\n <p>en u zult dergelijke records, documenten en informatie alleen gebruiken op een naar behoren gemachtigde manier in het belang van het bedrijf. Voor</p>\n\n <p>de doeleinden van deze clausule Vertrouwelijke informatiebetekent informatie over het bedrijf van het bedrijf en dat van zijn klanten</p>\n\n <p>die niet beschikbaar is voor het grote publiek en die u tijdens uw dienstverband kunt leren. Dit bevat,</p>\n\n <p>maar is niet beperkt tot informatie met betrekking tot de organisatie, haar klantenlijsten, werkgelegenheidsbeleid, personeel en informatie</p>\n\n <p>over de producten, processen van het bedrijf, inclusief ideeën, concepten, projecties, technologie, handleidingen, tekeningen, ontwerpen,</p>\n\n <p>specificaties, en alle papieren, cvs, dossiers en andere documenten die dergelijke vertrouwelijke informatie bevatten.</p>\n\n <p>11.3 U verwijdert nooit vertrouwelijke informatie van het kantoor zonder toestemming.</p>\n\n <p>11.4 Uw plicht om te beschermen en niet openbaar te maken</p>\n\n <p>e Vertrouwelijke informatie blijft van kracht na het verstrijken of beëindigen van deze Overeenkomst en/of uw dienstverband bij het Bedrijf.</p>\n\n <p>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:</p>\n\n <p>ander rechtsmiddel dat het Bedrijf volgens de wet tegen u heeft.</p>\n <p>12. Kennisgevingen</p>\n\n <p>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:</p>\n\n <p>het door u opgegeven adres in de officiële administratie.</p>\n\n\n\n <p>13. Toepasselijkheid van het bedrijfsbeleid</p>\n\n <p>Het bedrijf heeft het recht om van tijd tot tijd beleidsverklaringen af te leggen met betrekking tot zaken als verlofrecht, moederschap</p>\n\n <p>verlof, werknemersvoordelen, werkuren, transferbeleid, enz., en kan deze van tijd tot tijd naar eigen goeddunken wijzigen.</p>\n\n <p>Al dergelijke beleidsbeslissingen van het Bedrijf zijn bindend voor u en hebben voorrang op deze Overeenkomst in die mate.</p>\n\n\n\n <p>14. Toepasselijk recht/jurisdictie</p>\n\n <p>Uw dienstverband bij het bedrijf is onderworpen aan de landelijke wetgeving. Alle geschillen zijn onderworpen aan de jurisdictie van de High Court</p>\n\n <p>Alleen Gujarat.</p>\n\n\n\n <p>15. Aanvaarding van ons aanbod</p>\n\n <p>Bevestig uw aanvaarding van deze arbeidsovereenkomst door het duplicaat te ondertekenen en terug te sturen.</p>\n\n\n\n <p>Wij heten u van harte welkom en kijken ernaar uit uw acceptatie te ontvangen en met u samen te werken.</p>\n\n\n\n <p>Hoogachtend,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (11, 'pl', '<h3 style=\"text-align: center;\">Dołączanie listu</h3>\n\n <p>{date }</p>\n\n <p>{employee_name }</p>\n\n <p>{address }</p>\n\n\n <p>Dotyczy: mianowania na stanowisko {designation}</p>\n\n <p>Szanowny {employee_name },</p>\n\n <p>Mamy przyjemność zaoferować Państwu, stanowisko {designation} z {app_name } \"Spółka\" na poniższych warunkach i</p>\n <p>warunki:</p>\n\n <p>1. Rozpoczęcie pracy</p>\n\n <p>Twoje zatrudnienie będzie skuteczne, jak na {start_date }</p>\n\n <p>2. Tytuł zadania</p>\n <p>Twój tytuł pracy to {designation}.</p>\n\n <p>3. Salary</p>\n\n <p>Twoje wynagrodzenie i inne świadczenia będą określone w Zestawieniu 1, do niniejszego rozporządzenia.</p>\n\n\n <p>4. Miejsce delegowania</p>\n <p>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ć.</p>\n\n <p>5. Godziny pracy</p>\n <p>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</p>\n <p>odpowiedzialności.</p>\n\n <p>6. Urlop/Wakacje</p>\n\n <p>6.1 Przysługuje prawo do urlopu dorywczego w ciągu 12 dni.</p>\n\n <p>6.2 Użytkownik ma prawo do 12 dni roboczych od wypłatnego zwolnienia chorobowego.</p>\n\n <p>6.3 Spółka powiadamia na początku każdego roku wykaz ogłoszonych świąt. </p>\n\n\n\n <p>7. Rodzaj obowiązków</p>\n\n <p>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.</p>\n\n\n\n <p>8. Właściwość przedsiębiorstwa</p>\n\n <p>Zawsze będziesz utrzymywać w dobrej kondycji Firmy, która może być powierzona do użytku służbowego w trakcie trwania</p>\n\n <p>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ę.</p>\n\n <p>9. Wypożyczanie/akceptowanie prezentów</p>\n\n <p>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.</p>\n <p>10. Zakończenie</p>\n\n <p>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.</p>\n\n <p>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ń.</p>\n\n <p>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. </p>\n\n <p>10. 4 W sprawie rozwiązania stosunku pracy z jakiegokolwiek powodu, powrócisz do Spółki wszystkie nieruchomości; dokumenty, i </p>\n\n <p>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,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informacje poufne</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Firma.</p>\n\n <p>11.2 Zawsze musisz zachować najwyższy stopień poufności i zachować jako poufny akt, dokumenty, i inne </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>specyfikacje, a także wszystkie dokumenty, życiorysy, zapisy i inne dokumenty zawierające takie informacje poufne.</p>\n\n <p>11.3 W żadnym momencie nie usunie Pan żadnych Informacji Poufnych z urzędu bez zezwolenia.</p>\n\n <p>11.4 Twój obowiązek ochrony a nie disclos</p>\n\n <p>Informacje poufne przetrwają wygaśnięcie lub rozwiązanie niniejszej Umowy i/lub Twoje zatrudnienie w Spółce.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Uwagi</p>\n\n <p>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.</p>\n\n\n\n <p>13. Stosowność polityki firmy</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Wszystkie takie decyzje polityczne Spółki są wiążące dla Państwa i przesłaniają niniejszą Umowę w tym zakresie.</p>\n\n\n\n <p>14. Prawo właściwe/jurysdykcja</p>\n\n <p>Twoje zatrudnienie ze Spółką podlega prawu krajowi. Wszelkie spory podlegają właściwości Sądu Najwyższego</p>\n\n <p>Tylko Gujarat.</p>\n\n\n\n <p>15. Akceptacja naszej oferty</p>\n\n <p>Prosimy o potwierdzenie przyjęcia niniejszej Umowy o pracę poprzez podpisanie i zwrócenie duplikatu.</p>\n\n\n\n <p>Zapraszamy Państwa i czekamy na Państwa przyjęcie i współpracę z Tobą.</p>\n\n\n\n <p>Z Państwa Sincerely,</p>\n\n <p>{app_name }</p>\n\n <p>{date }</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (12, 'pt', '<h3 style=\"text-align: center;\">Carta De Adesão</h3>\n\n <p>{data}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n <p>Assunto: Nomeação para o cargo de {designation}</p>\n\n <p>Querido {employee_name},</p>\n\n\n <p>Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e</p>\n <p>condições:</p>\n\n\n <p>1. Comentamento do emprego</p>\n\n <p>Seu emprego será efetivo, a partir de {start_date}</p>\n\n\n <p>2. Título do emprego</p>\n\n <p>Seu cargo de trabalho será {designation}.</p>\n\n <p>3. Salário</p>\n\n <p>Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.</p>\n\n <p>4. Local de postagem</p>\n\n <p>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.</p>\n\n <p>5. Horas de Trabalho</p>\n\n <p>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</p>\n <p>responsabilidades.</p>\n\n <p>6. Leave / Holidays</p>\n\n <p>6,1 Você tem direito a licença casual de 12 dias.</p>\n\n <p>6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.</p>\n\n <p>6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. </p>\n\n\n\n <p>7. Natureza dos deveres</p>\n\n <p>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.</p>\n\n\n\n <p>8. Propriedade da empresa</p>\n\n <p>Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de</p>\n\n <p>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.</p>\n\n\n\n <p>9. Borremir / aceitar presentes</p>\n\n <p>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.</p>\n\n\n\n <p>10. Terminação</p>\n\n <p>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.</p>\n\n <p>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.</p>\n\n <p>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. </p>\n\n <p>10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e </p>\n\n <p>papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informações Confidenciais</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Empresa.</p>\n\n <p>11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.</p>\n\n <p>11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.</p>\n\n <p>11,4 O seu dever de salvaguardar e não os desclos</p>\n\n <p>Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Notices</p>\n\n <p>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.</p>\n\n\n\n <p>13. Aplicabilidade da Política da Empresa</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.</p>\n\n\n\n <p>14. Direito / Jurisdição</p>\n\n <p>Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior</p>\n\n <p>Gujarat apenas.</p>\n\n\n\n <p>15. Aceitação da nossa oferta</p>\n\n <p>Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.</p>\n\n\n\n <p>Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.</p>\n\n\n\n <p>Seu Sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{data}</p>\n ', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (13, 'ru', '<h3 style=\"text-align: center;\">Присоединение к письму</h3>\n\n <p>{date}</p>\n\n <p>{ employee_name }</p>\n <p>{address}</p>\n\n <p>Тема: Назначение на должность {designation}</p>\n\n <p>Уважаемый { employee_name },</p>\n\n <p>Мы рады предложить Вам, позицию {designation} с { app_name } Компания на следующих условиях и</p>\n\n <p>условия:</p>\n\n\n <p>1. Начало работы</p>\n\n <p>Ваше трудоустройство будет эффективным, начиная с { start_date }</p>\n\n\n <p>2. Название должности</p>\n <p>Ваш заголовок задания будет {designation}.</p>\n\n <p>3. Зарплата</p>\n <p>Ваши оклады и другие пособия будут установлены в соответствии с расписанием, изложенным в приложении 1 к настоящему.</p>\n\n <p>4. Место размещения</p>\n <p>Вы будете работать в { branch }. Вы, однако, можете работать в любом месте, которое компания имеет или может впоследствии приобрести.</p>\n\n\n\n <p>5. Часы работы</p>\n <p>Обычные рабочие дни-с понедельника по пятницу. Вы должны будете работать в течение таких часов, как это необходимо для надлежащего выполнения Ваших обязанностей перед компанией. Обычные рабочие часы-от { start_time } до { end_time }, и вы, как ожидается, будут работать не менее { total_hours } часов каждую неделю, и при необходимости в течение дополнительных часов в зависимости от вашего</p>\n <p>ответственности.</p>\n <p>6. Отпуск/Праздники</p>\n\n <p>6.1 Вы имеете право на случайный отпуск продолжительностью 12 дней.</p>\n\n <p>6.2 Вы имеете право на 12 рабочих дней оплачиваемого отпуска по болезни.</p>\n\n <p>6.3 Компания в начале каждого года уведомляет об объявленных праздниках. </p>\n\n\n\n <p>7. Характер обязанностей</p>\n\n <p>Вы будете выполнять все обязанности, присующие вам, и такие дополнительные обязанности, которые компания может призвать к вам, время от времени. Ваши конкретные обязанности изложены в приложении II к настоящему.</p>\n\n\n\n <p>8. Свойство компании</p>\n\n <p>Вы всегда будете поддерживать в хорошем состоянии имущество Компании, которое может быть доверено Вам для служебного пользования в течение</p>\n\n <p>вашей занятости, и возвратит все это имущество Компании до отказа от вашего заряда, при отсутствии которого стоимость одного и того же имущества будет взыскана с Вас компанией.</p>\n\n\n\n <p>9. Боровить/принять подарки</p>\n\n <p>Вы не будете брать взаймы или принимать какие-либо деньги, подарки, вознаграждение или компенсацию за ваши личные доходы от или в ином месте под денежный долг любому лицу/клиенту, с которым у вас могут быть официальные сделки.</p>\n\n\n\n <p>10. Прекращение</p>\n\n <p>10.1 Ваше назначение может быть прекращено компанией без каких бы то ни было оснований, предоставляя Вам не менее [ Уведомление] месяцев, предшея уведомлению в письменной форме или окладе вместо них. Для целей этого положения заработная плата означает базовый оклад.</p>\n\n <p>10.2 Вы можете прекратить свою трудовую деятельность с компанией без каких-либо причин, предоставляя не меньше, чем [ Employee Notice] months предварительное уведомление или оклад за несохраненный период, оставатся после корректировки отложенных листьев, как на сегодняшний день.</p>\n\n <p>10.3 Компания оставляет за собой право прекратить вашу работу в суммарном порядке без какого-либо уведомления о сроке или увольнении, если у нее есть достаточные основания полагать, что вы виновны в проступке или халатности, или совершили какое-либо существенное нарушение договора, или причинило убытки Компании. </p>\n\n <p>10. 4 О прекращении вашей работы по какой бы то ни было причине вы вернетесь в Компании все имущество; документы, а </p>\n\n <p>бумаги, как оригинальные, так и их копии, включая любые образцы, литературу, контракты, записи, списки, чертежи, чертежи,</p>\n\n <p>письма, заметки, данные и тому подобное; и Конфиденциальная информация, в вашем распоряжении или под вашим контролем, связанным с вашей работой или деловыми делами клиентов. </p>\n\n\n\n <p>11. Конфиденциальная информация</p>\n\n <p>11. 1 Во время вашего трудоустройства с компанией Вы посвяте все свое время, внимание, умение максимально</p>\n\n <p>Его бизнес. Вы не должны, прямо или косвенно, заниматься или ассоциировать себя с заинтересованными, занятым, занятым, или временем, или продолжать любой курс обучения, без предварительного разрешения Компани.заниматься каким-либо другим бизнесом или деятельностью или любой другой пост или работать неполный рабочий день или заниматься какой бы то ни было исследованием, без предварительного разрешения</p>\n\n <p>Компания.</p>\n\n <p>11.2 Вы всегда должны сохранять наивысшую степень конфиденциальности и хранить в качестве конфиденциальной записи, документы и другие </p>\n\n <p>Конфиденциальная информация, касающаяся бизнеса Компании, которая может быть вам известна или конфиденциальна любым способом, и Вы будете использовать такие записи, документы и информацию только в установленном порядке в интересах Компании. Для целей настоящей статьи \"Конфиденциальная информация\" означает информацию о бизнесе Компании и о ее клиентах, которая недоступна для широкой общественности и которая может быть изучилась Вами в ходе вашей работы. Это включает в себя:</p>\n\n <p>но не ограничивается информацией, касающейся организации, ее списков клиентов, политики в области занятости, персонала и информации о продуктах Компании, процессах, включая идеи, концепции, прогнозы, технологии, руководства, чертеж, чертеж, </p>\n\n <p>спецификации, и все бумаги, резюме, записи и другие документы, содержащие такую Конфиденциальную Информацию.</p>\n\n <p>11.3 В любое время вы не будете удалять конфиденциальную информацию из офиса без разрешения.</p>\n\n <p>11.4 Ваш долг защищать и не отсосать</p>\n\n <p>e Конфиденциальная информация выдержит срок действия или прекращения действия настоящего Соглашения и/или вашей работы с компанией.</p>\n\n <p>11.5 Нарушение условий, изложенных в настоящем положении, приведет к тому, что в дополнение к любым другим средствам правовой защиты, которые компания может иметь против вас, в соответствии с вышеприведенным положением, вы можете получить краткое увольнение в соответствии с этим положением.</p>\n\n\n\n <p>12. Замечания</p>\n\n <p>Уведомления могут быть даны Вами Компании по адресу ее зарегистрированного офиса. Извещения могут быть даны компанией Вам по адресу, с которым вы в официальных отчетах.</p>\n\n\n\n <p>13. Применимость политики компании</p>\n\n <p>Компания вправе время от времени делать политические заявления по таким вопросам, как право на отпуск, материнство</p>\n\n <p>отпуска, пособия для работников, продолжительность рабочего дня, трансферная политика и т.д. и время от времени могут изменяться исключительно по своему усмотрению.</p>\n\n <p>Все такие принципиальные решения Компании являются обязательными для Вас и переопределяют это Соглашение в такой степени.</p>\n\n\n\n <p>14. Регулирующий Право/юрисдикция</p>\n\n <p>Ваше трудоустройство с компанией подпадает под действие законов страны. Все споры подлежат юрисдикции Высокого суда</p>\n\n <p>Только Гуджарат.</p>\n\n\n\n <p>15. Принятие нашего предложения</p>\n\n <p>Пожалуйста, подтвердите свое согласие с этим Договором о занятости, подписав и возвращая дубликат копии.</p>\n\n\n\n <p>Мы приветствуем Вас и надеемся на то, что Вы принимаете свое согласие и работаете с Вами.</p>\n\n\n\n <p>Искренне Ваш,</p>\n\n <p>{ app_name }</p>\n\n <p>{date}</p>\n ', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (14, 'ar', '<h2 style=\"text-align: center;\"><strong>خطاب الانضمام</strong></h2>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>الموضوع: موعد لوظيفة {designation}</p>\n <p>عزيزي {employee_name} ،</p>\n <p>يسعدنا أن نقدم لك منصب {designation} مع {app_name} \"الشركة\" وفقًا للشروط التالية و</p>\n <p>الظروف:</p>\n <p>1. بدء العمل</p>\n <p>سيصبح عملك ساريًا اعتبارًا من {start_date}</p>\n <p>2. المسمى الوظيفي</p>\n <p>سيكون المسمى الوظيفي الخاص بك هو {designation}.</p>\n <p>3. الراتب</p>\n <p>سيكون راتبك والمزايا الأخرى على النحو المبين في الجدول 1 ، طيه.</p>\n <p>4. مكان الإرسال</p>\n <p>سيتم إرسالك إلى {branch}. ومع ذلك ، قد يُطلب منك العمل في أي مكان عمل تمتلكه الشركة ، أو</p>\n <p>قد تحصل لاحقًا.</p>\n <p>5. ساعات العمل</p>\n <p>أيام العمل العادية هي من الاثنين إلى الجمعة. سيُطلب منك العمل لساعات حسب الضرورة لـ</p>\n <p>أداء واجباتك على النحو الصحيح تجاه الشركة. ساعات العمل العادية من {start_time} إلى {end_time} وأنت</p>\n <p>من المتوقع أن يعمل ما لا يقل عن {total_hours} ساعة كل أسبوع ، وإذا لزم الأمر لساعات إضافية اعتمادًا على</p>\n <p>المسؤوليات.</p>\n <p>6. الإجازة / العطل</p>\n <p>6.1 يحق لك الحصول على إجازة غير رسمية مدتها 12 يومًا.</p>\n <p>6.2 يحق لك الحصول على إجازة مرضية مدفوعة الأجر لمدة 12 يوم عمل.</p>\n <p>6.3 تخطر الشركة بقائمة الإجازات المعلنة في بداية كل عام.</p>\n <p>7. طبيعة الواجبات</p>\n <p>ستقوم بأداء أفضل ما لديك من واجبات متأصلة في منصبك ومهام إضافية مثل الشركة</p>\n <p>قد يدعوك لأداء ، من وقت لآخر. واجباتك المحددة منصوص عليها في الجدول الثاني بهذه الرسالة.</p>\n <p>8. ممتلكات الشركة</p>\n <p>ستحافظ دائمًا على ممتلكات الشركة في حالة جيدة ، والتي قد يتم تكليفك بها للاستخدام الرسمي خلال فترة عملها</p>\n <p>عملك ، ويجب أن تعيد جميع هذه الممتلكات إلى الشركة قبل التخلي عن الرسوم الخاصة بك ، وإلا فإن التكلفة</p>\n <p>نفس الشيء سوف تسترده منك الشركة.</p>\n <p>9. الاقتراض / قبول الهدايا</p>\n <p>لن تقترض أو تقبل أي أموال أو هدية أو مكافأة أو تعويض مقابل مكاسبك الشخصية من أو تضع نفسك بأي طريقة أخرى</p>\n <p>بموجب التزام مالي تجاه أي شخص / عميل قد تكون لديك تعاملات رسمية معه.</p>\n <p>10. الإنهاء</p>\n <p>10.1 يمكن للشركة إنهاء موعدك ، دون أي سبب ، من خلال إعطائك ما لا يقل عن [إشعار] قبل أشهر</p>\n <p>إشعار خطي أو راتب بدلاً منه. لغرض هذا البند ، يقصد بالراتب المرتب الأساسي.</p>\n <p>10.2 إنهاء عملك مع الشركة ، دون أي سبب ، من خلال تقديم ما لا يقل عن إشعار الموظف</p>\n <p>أشهر الإخطار أو الراتب عن الفترة غير المحفوظة ، المتبقية بعد تعديل الإجازات المعلقة ، كما في التاريخ.</p>\n <p>10.3 تحتفظ الشركة بالحق في إنهاء عملك بإيجاز دون أي فترة إشعار أو مدفوعات إنهاء</p>\n <p>إذا كان لديه سبب معقول للاعتقاد بأنك مذنب بسوء السلوك أو الإهمال ، أو ارتكبت أي خرق جوهري لـ</p>\n <p>العقد ، أو تسبب في أي خسارة للشركة.</p>\n <p>10. 4 عند إنهاء عملك لأي سبب من الأسباب ، ستعيد إلى الشركة جميع ممتلكاتك ؛ المستندات و</p>\n <p>الأوراق الأصلية ونسخها ، بما في ذلك أي عينات ، وأدبيات ، وعقود ، وسجلات ، وقوائم ، ورسومات ، ومخططات ،</p>\n <p>الرسائل والملاحظات والبيانات وما شابه ذلك ؛ والمعلومات السرية التي بحوزتك أو تحت سيطرتك والمتعلقة بك</p>\n <p>التوظيف أو الشؤون التجارية للعملاء.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11.2 يجب عليك دائمًا الحفاظ على أعلى درجة من السرية والحفاظ على سرية السجلات والوثائق وغيرها</p>\n <p>المعلومات السرية المتعلقة بأعمال الشركة والتي قد تكون معروفة لك أو مخولة لك بأي وسيلة</p>\n <p>ولن تستخدم هذه السجلات والمستندات والمعلومات إلا بالطريقة المصرح بها حسب الأصول لصالح الشركة. إلى عن على</p>\n <p>أغراض هذا البند \"المعلومات السرية\" تعني المعلومات المتعلقة بأعمال الشركة وعملائها</p>\n <p>التي لا تتوفر لعامة الناس والتي قد تتعلمها أثناء عملك. هذا يشمل،</p>\n <p>على سبيل المثال لا الحصر ، المعلومات المتعلقة بالمنظمة وقوائم العملاء وسياسات التوظيف والموظفين والمعلومات</p>\n <p>حول منتجات الشركة وعملياتها بما في ذلك الأفكار والمفاهيم والإسقاطات والتكنولوجيا والكتيبات والرسم والتصاميم ،</p>\n <p>المواصفات وجميع الأوراق والسير الذاتية والسجلات والمستندات الأخرى التي تحتوي على هذه المعلومات السرية.</p>\n <p>11.3 لن تقوم في أي وقت بإزالة أي معلومات سرية من المكتب دون إذن.</p>\n\n <p>11.4 واجبك في الحماية وعدم الإفشاء</p>\n\n <p>تظل المعلومات السرية سارية بعد انتهاء أو إنهاء هذه الاتفاقية و / أو عملك مع الشركة.</p>\n\n <p>11.5 سوف يجعلك خرق شروط هذا البند عرضة للفصل بإجراءات موجزة بموجب الفقرة أعلاه بالإضافة إلى أي</p>\n\n <p>أي تعويض آخر قد يكون للشركة ضدك في القانون.</p>\n\n <p>12. الإخطارات</p>\n\n <p>يجوز لك إرسال إخطارات إلى الشركة على عنوان مكتبها المسجل. يمكن أن ترسل لك الشركة إشعارات على</p>\n\n <p>العنوان الذي أشرت إليه في السجلات الرسمية.</p>\n\n\n\n <p>13. تطبيق سياسة الشركة</p>\n\n <p>يحق للشركة تقديم إعلانات السياسة من وقت لآخر فيما يتعلق بمسائل مثل استحقاق الإجازة والأمومة</p>\n\n <p>الإجازة ، ومزايا الموظفين ، وساعات العمل ، وسياسات النقل ، وما إلى ذلك ، ويمكن تغييرها من وقت لآخر وفقًا لتقديرها الخاص.</p>\n\n <p>جميع قرارات سياسة الشركة هذه ملزمة لك ويجب أن تلغي هذه الاتفاقية إلى هذا الحد.</p>\n\n\n\n <p>14. القانون الحاكم / الاختصاص القضائي</p>\n\n <p>يخضع عملك في الشركة لقوانين الدولة. تخضع جميع النزاعات للاختصاص القضائي للمحكمة العليا</p>\n\n <p>غوجارات فقط.</p>\n\n\n\n <p>15. قبول عرضنا</p>\n\n <p>يرجى تأكيد قبولك لعقد العمل هذا من خلال التوقيع وإعادة النسخة المكررة.</p>\n\n\n\n <p>نرحب بكم ونتطلع إلى تلقي موافقتكم والعمل معكم.</p>\n\n\n\n <p>تفضلوا بقبول فائق الاحترام،</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (15, 'da', '<h3 style=\"text-align: center;\"><strong>Tilslutningsbrev</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Emne: Udnævnelse til stillingen som {designation}</p>\n\n\n\n\n\n\n\n <p>Kære {employee_name}</p>\n\n\n\n <p>Vi er glade for at kunne tilbyde dig stillingen som {designation} hos {app_name} \"Virksomheden\" på følgende vilkår og</p>\n\n <p>betingelser:</p>\n\n\n <p>1. Påbegyndelse af ansættelse</p>\n\n <p>Din ansættelse træder i kraft fra {start_date}</p>\n\n\n\n <p>2. Jobtitel</p>\n\n\n <p>Din jobtitel vil være {designation}.</p>\n\n\n\n <p>3. Løn</p>\n\n <p>Din løn og andre goder vil være som angivet i skema 1, hertil.</p>\n\n\n\n <p>4. Udstationeringssted</p>\n\n <p>Du vil blive slået op på {branch}. Du kan dog blive bedt om at arbejde på ethvert forretningssted, som virksomheden har, eller</p>\n\n <p>senere kan erhverve.</p>\n\n\n <p>5. Arbejdstimer</p>\n\n <p>De normale arbejdsdage er mandag til fredag. Du vil blive forpligtet til at arbejde i de timer, som er nødvendige for</p>\n\n <p>behørig varetagelse af dine pligter over for virksomheden. Den normale arbejdstid er fra {start_time} til {end_time}, og det er du</p>\n\n <p>forventes at arbejde ikke mindre end {total_hours} timer hver uge, og om nødvendigt yderligere timer afhængigt af din</p>\n\n <p>ansvar.</p>\n\n\n\n <p>6. Orlov/Ferie</p>\n\n <p>6.1 Du har ret til tilfældig ferie på 12 dage.</p>\n\n <p>6.2 Du har ret til 12 arbejdsdages sygefravær med løn.</p>\n\n <p>6.3 Virksomheden skal meddele en liste over erklærede helligdage i begyndelsen af hvert år.</p>\n\n\n\n <p>7. Arbejdsopgavernes art</p>\n\n <p>Du vil efter bedste evne udføre alle de opgaver, der er iboende i din stilling og sådanne yderligere opgaver som virksomheden</p>\n\n <p>kan opfordre dig til at optræde, fra tid til anden. Dine specifikke pligter er beskrevet i skema II hertil.</p>\n\n\n <p>8. Firmaejendom</p>\n\n <p>Du vil altid vedligeholde virksomhedens ejendom i god stand, som kan blive overdraget til dig til officiel brug i løbet af</p>\n\n <p>din ansættelse, og skal returnere al sådan ejendom til virksomheden, før du opgiver din afgift, i modsat fald vil omkostningerne</p>\n\n <p>af samme vil blive inddrevet fra dig af virksomheden.</p>\n\n\n\n <p>9. Lån/modtagelse af gaver</p>\n\n <p>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</p>\n\n <p>under en økonomisk forpligtelse over for enhver person/kunde, som du måtte have officielle forbindelser med.</p>\n\n <p>10. Opsigelse</p>\n\n <p>10.1 Din ansættelse kan opsiges af virksomheden uden nogen grund ved at give dig mindst [varsel] måneder før</p>\n\n <p>skriftligt varsel eller løn i stedet herfor. Ved løn forstås i denne paragraf grundløn.</p>\n\n <p>10.2 Du kan opsige dit ansættelsesforhold i virksomheden uden nogen grund ved at give mindst [Medarbejdermeddelelse]</p>\n\n <p>måneders forudgående varsel eller løn for den ikke-opsparede periode, tilbage efter regulering af afventende orlov, som på dato.</p>\n\n <p>10.3 Virksomheden forbeholder sig retten til at opsige dit ansættelsesforhold midlertidigt uden opsigelsesfrist eller opsigelsesbetaling</p>\n\n <p>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å</p>\n\n <p>kontrakt, eller forårsaget tab for virksomheden.</p>\n\n <p>10. 4 Ved ophør af din ansættelse uanset årsag, vil du returnere al ejendom til virksomheden; dokumenter, og</p>\n\n <p>papir, både originale og kopier heraf, inklusive prøver, litteratur, kontrakter, optegnelser, lister, tegninger, tegninger,</p>\n\n <p>breve, notater, data og lignende; og fortrolige oplysninger, i din besiddelse eller under din kontrol vedrørende din</p>\n\n <p>ansættelse eller til kunders forretningsforhold.</p>\n <p>11. Fortrolige oplysninger</p>\n\n <p>11. 1 Under din ansættelse i virksomheden vil du bruge al din tid, opmærksomhed og dygtighed efter bedste evne til</p>\n\n <p>sin virksomhed. Du må ikke, direkte eller indirekte, engagere eller associere dig med, være forbundet med, bekymret, ansat eller</p>\n\n <p>tid eller forfølge et hvilket som helst studieforløb uden forudgående tilladelse fra virksomheden. involveret i anden virksomhed eller</p>\n\n <p>aktiviteter eller enhver anden stilling eller arbejde på deltid eller forfølge ethvert studieforløb uden forudgående tilladelse fra</p>\n\n <p>Selskab.</p>\n <p>11.2 Du skal altid opretholde den højeste grad af fortrolighed og opbevare optegnelser, dokumenter og andre fortrolige oplysninger.</p>\n\n <p>Fortrolige oplysninger vedrørende virksomhedens virksomhed, som kan være kendt af dig eller betroet dig på nogen måde</p>\n\n <p>og du vil kun bruge sådanne optegnelser, dokumenter og oplysninger på en behørigt autoriseret måde i virksomhedens interesse. Til</p>\n\n <p>formålene med denne paragraf \"Fortrolige oplysninger\" betyder oplysninger om virksomhedens og dets kunders forretning</p>\n\n <p>som ikke er tilgængelig for offentligheden, og som du kan lære i løbet af din ansættelse. Dette inkluderer,</p>\n\n <p>men er ikke begrænset til information vedrørende organisationen, dens kundelister, ansættelsespolitikker, personale og information</p>\n\n <p>om virksomhedens produkter, processer, herunder ideer, koncepter, projektioner, teknologi, manualer, tegning, design,</p>\n\n <p>specifikationer og alle papirer, CVer, optegnelser og andre dokumenter, der indeholder sådanne fortrolige oplysninger.</p>\n\n <p>11.3 Du vil på intet tidspunkt fjerne fortrolige oplysninger fra kontoret uden tilladelse.</p>\n\n <p>11.4 Din pligt til at beskytte og ikke oplyse</p>\n\n <p>e Fortrolige oplysninger vil overleve udløbet eller opsigelsen af denne aftale og/eller din ansættelse hos virksomheden.</p>\n\n <p>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.</p>\n\n <p>andre retsmidler, som virksomheden måtte have mod dig i henhold til loven.</p>\n <p>12. Meddelelser</p>\n\n <p>Meddelelser kan gives af dig til virksomheden på dets registrerede kontoradresse. Meddelelser kan gives af virksomheden til dig på</p>\n\n <p>den adresse, du har angivet i de officielle optegnelser.</p>\n\n\n\n <p>13. Anvendelse af virksomhedens politik</p>\n\n <p>Virksomheden er berettiget til fra tid til anden at afgive politiske erklæringer vedrørende sager som ret til orlov, barsel</p>\n\n <p>orlov, ansattes ydelser, arbejdstider, overførselspolitikker osv., og kan ændre det samme fra tid til anden efter eget skøn.</p>\n\n <p>Alle sådanne politiske beslutninger fra virksomheden er bindende for dig og tilsidesætter denne aftale i det omfang.</p>\n\n\n\n <p>14. Gældende lov/Jurisdiktion</p>\n\n <p>Din ansættelse hos virksomheden er underlagt landets love. Alle tvister er underlagt High Courts jurisdiktion</p>\n\n <p>Kun Gujarat.</p>\n\n\n\n <p>15. Accept af vores tilbud</p>\n\n <p>Bekræft venligst din accept af denne ansættelseskontrakt ved at underskrive og returnere kopien.</p>\n\n\n\n <p>Vi byder dig velkommen og ser frem til at modtage din accept og til at arbejde sammen med dig.</p>\n\n\n\n <p>Venlig hilsen,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (16, 'de', '<h3 style=\"text-align: center;\"><strong>Beitrittsbrief</strong></h3>\n\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n\n <p>Betreff: Ernennung für die Stelle von {designation}</p>\n\n\n\n\n\n\n\n <p>Sehr geehrter {employee_name},</p>\n\n\n\n <p>Wir freuen uns, Ihnen die Position von {designation} bei {app_name} dem „Unternehmen“ zu den folgenden Bedingungen anbieten zu können</p>\n\n <p>Bedingungen:</p>\n\n\n <p>1. Aufnahme des Arbeitsverhältnisses</p>\n\n <p>Ihre Anstellung gilt ab dem {start_date}</p>\n\n\n <p>2. Berufsbezeichnung</p>\n\n <p>Ihre Berufsbezeichnung lautet {designation}.</p>\n\n\n <p>3. Gehalt</p>\n\n <p>Ihr Gehalt und andere Leistungen sind in Anhang 1 zu diesem Dokument aufgeführt.</p>\n\n\n <p>4. Postort</p>\n\n <p>Sie werden bei {branch} eingestellt. Es kann jedoch erforderlich sein, dass Sie an jedem Geschäftssitz arbeiten, den das Unternehmen hat, oder</p>\n\n <p>später erwerben kann.</p>\n\n\n <p>5. Arbeitszeit</p>\n <p>Die normalen Arbeitstage sind Montag bis Freitag. Sie müssen so viele Stunden arbeiten, wie es für die erforderlich ist</p>\n <p>ordnungsgemäße Erfüllung Ihrer Pflichten gegenüber dem Unternehmen. Die normalen Arbeitszeiten sind von {start_time} bis {end_time} und Sie sind es</p>\n <p>voraussichtlich nicht weniger als {total_hours} Stunden pro Woche arbeiten, und falls erforderlich, abhängig von Ihren zusätzlichen Stunden</p>\n <p>Verantwortlichkeiten.</p>\n\n\n\n <p>6. Urlaub/Urlaub</p>\n\n <p>6.1 Sie haben Anspruch auf Freizeiturlaub von 12 Tagen.</p>\n\n <p>6.2 Sie haben Anspruch auf 12 Arbeitstage bezahlten Krankenurlaub.</p>\n\n <p>6.3 Das Unternehmen teilt zu Beginn jedes Jahres eine Liste der erklärten Feiertage mit.</p>\n\n\n\n <p>7. Art der Pflichten</p>\n\n <p>Sie werden alle Aufgaben, die mit Ihrer Funktion verbunden sind, sowie alle zusätzlichen Aufgaben als Unternehmen nach besten Kräften erfüllen</p>\n\n <p>kann Sie von Zeit zu Zeit zur Leistung auffordern. Ihre spezifischen Pflichten sind in Anhang II zu diesem Dokument aufgeführt.</p>\n\n\n\n <p>8. Firmeneigentum</p>\n\n <p>Sie werden das Firmeneigentum, das Ihnen im Laufe der Zeit für offizielle Zwecke anvertraut werden kann, stets in gutem Zustand halten</p>\n\n <p>Ihrer Anstellung und muss all dieses Eigentum an das Unternehmen zurückgeben, bevor Sie Ihre Gebühr aufgeben, andernfalls die Kosten</p>\n\n <p>derselben werden von der Gesellschaft von Ihnen zurückgefordert.</p>\n\n\n\n <p>9. Leihen/Annehmen von Geschenken</p>\n\n <p>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</p>\n\n <p>unter finanzieller Verpflichtung gegenüber Personen/Kunden, mit denen Sie möglicherweise dienstliche Beziehungen unterhalten.</p>\n\n <p>10. Kündigung</p>\n\n <p>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</p>\n\n <p>schriftliche Kündigung oder Gehalt statt dessen. Gehalt im Sinne dieser Klausel bedeutet Grundgehalt.</p>\n\n <p>10.2 Sie können Ihre Anstellung beim Unternehmen ohne Angabe von Gründen kündigen, indem Sie mindestens [Mitarbeitermitteilung]</p>\n\n <p>Kündigungsfrist von Monaten oder Gehalt für den nicht angesparten Zeitraum, der nach Anpassung der anstehenden Urlaubstage übrig bleibt, zum Stichtag.</p>\n\n <p>10.3 Das Unternehmen behält sich das Recht vor, Ihr Arbeitsverhältnis ohne Kündigungsfrist oder Abfindungszahlung fristlos zu kündigen</p>\n\n <p>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</p>\n\n <p>oder dem Unternehmen Verluste verursacht haben.</p>\n\n <p>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</p>\n\n <p>Papier, sowohl Original als auch Kopien davon, einschließlich aller Muster, Literatur, Verträge, Aufzeichnungen, Listen, Zeichnungen, Blaupausen,</p>\n\n <p>Briefe, Notizen, Daten und dergleichen; und vertrauliche Informationen, die sich in Ihrem Besitz oder unter Ihrer Kontrolle befinden und sich auf Sie beziehen</p>\n\n <p>Beschäftigung oder für die geschäftlichen Angelegenheiten der Kunden.</p>\n\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (17, 'en', '<h3 style=\"text-align: center;\">Joining Letter</h3>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>Subject: Appointment for the post of {designation}</p>\n <p>Dear {employee_name},</p>\n <p>We are pleased to offer you the position of {designation} with {app_name} theCompany on the following terms and</p>\n <p>conditions:</p>\n <p>1. Commencement of employment</p>\n <p>Your employment will be effective, as of {start_date}</p>\n <p>2. Job title</p>\n <p>Your job title will be{designation}.</p>\n <p>3. Salary</p>\n <p>Your salary and other benefits will be as set out in Schedule 1, hereto.</p>\n <p>4. Place of posting</p>\n <p>You will be posted at {branch}. You may however be required to work at any place of business which the Company has, or</p>\n <p>may later acquire.</p>\n <p>5. Hours of Work</p>\n <p>The normal working days are Monday through Friday. You will be required to work for such hours as necessary for the</p>\n <p>proper discharge of your duties to the Company. The normal working hours are from {start_time} to {end_time} and you are</p>\n <p>expected to work not less than {total_hours} hours each week, and if necessary for additional hours depending on your</p>\n <p>responsibilities.</p>\n <p>6. Leave/Holidays</p>\n <p>6.1 You are entitled to casual leave of 12 days.</p>\n <p>6.2 You are entitled to 12 working days of paid sick leave.</p>\n <p>6.3 The Company shall notify a list of declared holidays at the beginning of each year.</p>\n <p>7. Nature of duties</p>\n <p>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</p>\n <p>may call upon you to perform, from time to time. Your specific duties are set out in Schedule II hereto.</p>\n <p>8. Company property</p>\n <p>You will always maintain in good condition Company property, which may be entrusted to you for official use during the course of</p>\n <p>your employment, and shall return all such property to the Company prior to relinquishment of your charge, failing which the cost</p>\n <p>of the same will be recovered from you by the Company.</p>\n <p>9. Borrowing/accepting gifts</p>\n <p>You will not borrow or accept any money, gift, reward, or compensation for your personal gains from or otherwise place yourself</p>\n <p>under pecuniary obligation to any person/client with whom you may be having official dealings.</p>\n <p>10. Termination</p>\n <p>10.1 Your appointment can be terminated by the Company, without any reason, by giving you not less than [Notice] months prior</p>\n <p>notice in writing or salary in lieu thereof. For the purpose of this clause, salary shall mean basic salary.</p>\n <p>10.2 You may terminate your employment with the Company, without any cause, by giving no less than [Employee Notice]</p>\n <p>months prior notice or salary for the unsaved period, left after adjustment of pending leaves, as on date.</p>\n <p>10.3 The Company reserves the right to terminate your employment summarily without any notice period or termination payment</p>\n <p>if it has reasonable ground to believe you are guilty of misconduct or negligence, or have committed any fundamental breach of</p>\n <p>contract, or caused any loss to the Company.</p>\n <p>10. 4 On the termination of your employment for whatever reason, you will return to the Company all property; documents, and</p>\n <p>paper, both original and copies thereof, including any samples, literature, contracts, records, lists, drawings, blueprints,</p>\n <p>letters, notes, data and the like; and Confidential Information, in your possession or under your control relating to your</p>\n <p>employment or to clients business affairs.</p>\n <p>11. Confidential Information</p>\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n <p>Company.</p>\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other</p>\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n <p>the purposes of this clauseConfidential Information means information about the Companys business and that of its customers</p>\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n <p>about the Companys products, processes including ideas, concepts, projections, technology, manuals, drawing, designs,</p>\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n <p>11.4 Your duty to safeguard and not disclos</p>\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n <p>the address intimated by you in the official records.</p>\n <p>13. Applicability of Company Policy</p>\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n <p>leave, employees benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n <p>14. Governing Law/Jurisdiction</p>\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n <p>Gujarat only.</p>\n <p>15. Acceptance of our offer</p>\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n <p>Yours Sincerely,</p>\n <p>{app_name}</p>\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (18, 'es', '<h3 style=\"text-align: center;\"><strong>Carta de unión</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Asunto: Nombramiento para el puesto de {designation}</p>\n\n\n\n <p>Estimado {employee_name},</p>\n\n <p>Nos complace ofrecerle el puesto de {designation} con {app_name}, la Compañía en los siguientes términos y</p>\n\n <p>condiciones:</p>\n\n\n <p>1. Comienzo del empleo</p>\n\n <p>Su empleo será efectivo a partir del {start_date}</p>\n\n\n <p>2. Título del trabajo</p>\n <p>El título de su trabajo será {designation}.</p>\n\n <p>3. Salario</p>\n\n <p>Su salario y otros beneficios serán los establecidos en el Anexo 1 del presente.</p>\n\n\n <p>4. Lugar de destino</p>\n <p>Se le publicará en {branch}. Sin embargo, es posible que deba trabajar en cualquier lugar de negocios que tenga la Compañía, o</p>\n\n <p>puede adquirir posteriormente.</p>\n\n\n\n <p>5. Horas de trabajo</p>\n\n <p>Los días normales de trabajo son de lunes a viernes. Se le pedirá que trabaje las horas que sean necesarias para el</p>\n\n <p>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á</p>\n\n <p>se espera que trabaje no menos de {total_hours} horas cada semana y, si es necesario, horas adicionales dependiendo de su</p>\n\n <p>responsabilidades.</p>\n\n\n\n <p>6. Licencia/Vacaciones</p>\n\n <p>6.1 Tiene derecho a un permiso eventual de 12 días.</p>\n\n <p>6.2 Tiene derecho a 12 días laborables de baja por enfermedad remunerada.</p>\n\n <p>6.3 La Compañía deberá notificar una lista de días festivos declarados al comienzo de cada año.</p>\n\n\n\n <p>7. Naturaleza de los deberes</p>\n\n <p>Desempeñará lo mejor que pueda todas las funciones inherentes a su puesto y aquellas funciones adicionales que la empresa</p>\n\n <p>puede pedirte que actúes, de vez en cuando. Sus deberes específicos se establecen en el Anexo II del presente.</p>\n\n\n\n <p>8. Propiedad de la empresa</p>\n\n <p>Siempre mantendrá en buenas condiciones la propiedad de la Compañía, que se le puede confiar para uso oficial durante el curso de</p>\n\n <p>su empleo, y devolverá todos esos bienes a la Compañía antes de renunciar a su cargo, en caso contrario, el costo</p>\n\n <p>de la misma será recuperada de usted por la Compañía.</p>\n\n\n\n <p>9. Tomar prestado/aceptar regalos</p>\n\n <p>No pedirá prestado ni aceptará dinero, obsequios, recompensas o compensaciones por sus ganancias personales o se colocará de otra manera</p>\n\n <p>bajo obligación pecuniaria a cualquier persona/cliente con quien pueda tener tratos oficiales.</p>\n <p>10. Terminación</p>\n\n <p>10.1 Su nombramiento puede ser rescindido por la Compañía, sin ningún motivo, al darle no menos de [Aviso] meses antes</p>\n\n <p>aviso por escrito o salario en su lugar. Para los efectos de esta cláusula, se entenderá por salario el salario base.</p>\n\n <p>10.2 Puede rescindir su empleo con la Compañía, sin ninguna causa, dando no menos de [Aviso al empleado]</p>\n\n <p>meses de preaviso o salario por el período no ahorrado, remanente después del ajuste de licencias pendientes, a la fecha.</p>\n\n <p>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</p>\n\n <p>si tiene motivos razonables para creer que usted es culpable de mala conducta o negligencia, o ha cometido una violación fundamental de</p>\n\n <p>contrato, o causado cualquier pérdida a la Compañía.</p>\n\n <p>10. 4 A la terminación de su empleo por cualquier motivo, devolverá a la Compañía todos los bienes; documentos, y</p>\n\n <p>papel, tanto en original como en copia del mismo, incluyendo cualquier muestra, literatura, contratos, registros, listas, dibujos, planos,</p>\n\n <p>cartas, notas, datos y similares; e Información confidencial, en su posesión o bajo su control en relación con su</p>\n\n <p>empleo o a los asuntos comerciales de los clientes.</p>\n <p>11. Información confidencial</p>\n\n <p>11. 1 Durante su empleo en la Compañía, dedicará todo su tiempo, atención y habilidad lo mejor que pueda para</p>\n\n <p>son negocios. Usted no deberá, directa o indirectamente, comprometerse o asociarse con, estar conectado, interesado, empleado o</p>\n\n <p>tiempo o seguir cualquier curso de estudio, sin el permiso previo de la Compañía. participar en cualquier otro negocio o</p>\n\n <p>actividades o cualquier otro puesto o trabajo a tiempo parcial o seguir cualquier curso de estudio, sin el permiso previo de la</p>\n\n <p>Compañía.</p>\n\n <p>11.2 Siempre debe mantener el más alto grado de confidencialidad y mantener como confidenciales los registros, documentos y otros</p>\n\n <p>Información confidencial relacionada con el negocio de la Compañía que usted pueda conocer o confiarle por cualquier medio</p>\n\n <p>y utilizará dichos registros, documentos e información solo de manera debidamente autorizada en interés de la Compañía. Para</p>\n\n <p>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.</p>\n\n <p>que no está disponible para el público en general y que usted puede aprender en el curso de su empleo. Esto incluye,</p>\n\n <p>pero no se limita a, información relacionada con la organización, sus listas de clientes, políticas de empleo, personal e información</p>\n\n <p>sobre los productos de la Compañía, procesos que incluyen ideas, conceptos, proyecciones, tecnología, manuales, dibujos, diseños,</p>\n\n <p>especificaciones, y todos los papeles, currículos, registros y otros documentos que contengan dicha Información Confidencial.</p>\n\n <p>11.3 En ningún momento, sacará ninguna Información Confidencial de la oficina sin permiso.</p>\n\n <p>11.4 Su deber de salvaguardar y no divulgar</p>\n\n <p>La Información Confidencial sobrevivirá a la expiración o terminación de este Acuerdo y/o su empleo con la Compañía.</p>\n\n <p>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</p>\n\n <p>otro recurso que la Compañía pueda tener contra usted por ley.</p>\n <p>12. Avisos</p>\n\n <p>Usted puede enviar notificaciones a la Compañía a su domicilio social. La Compañía puede enviarle notificaciones a usted en</p>\n\n <p>la dirección indicada por usted en los registros oficiales.</p>\n\n\n\n <p>13. Aplicabilidad de la política de la empresa</p>\n\n <p>La Compañía tendrá derecho a hacer declaraciones de política de vez en cuando relacionadas con asuntos como el derecho a licencia, maternidad</p>\n\n <p>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.</p>\n\n <p>Todas las decisiones políticas de la Compañía serán vinculantes para usted y anularán este Acuerdo en esa medida.</p>\n\n\n\n <p>14. Ley aplicable/Jurisdicción</p>\n\n <p>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</p>\n\n <p>Sólo Gujarat.</p>\n\n\n\n <p>15. Aceptación de nuestra oferta</p>\n\n <p>Por favor, confirme su aceptación de este Contrato de Empleo firmando y devolviendo el duplicado.</p>\n\n\n\n <p>Le damos la bienvenida y esperamos recibir su aceptación y trabajar con usted.</p>\n\n\n\n <p>Tuyo sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (19, 'fr', '<h3 style=\"text-align: center;\">Lettre dadhésion</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n <p>Objet : Nomination pour le poste de {designation}</p>\n\n\n\n <p>Cher {employee_name},</p>\n\n\n <p>Nous sommes heureux de vous proposer le poste de {designation} avec {app_name} la \"Société\" selon les conditions suivantes et</p>\n\n <p>les conditions:</p>\n\n <p>1. Entrée en fonction</p>\n\n <p>Votre emploi sera effectif à partir du {start_date}</p>\n\n\n\n <p>2. Intitulé du poste</p>\n\n <p>Votre titre de poste sera {designation}.</p>\n\n\n\n <p>3. Salaire</p>\n\n <p>Votre salaire et vos autres avantages seront tels quindiqués à lannexe 1 ci-jointe.</p>\n\n\n <p>4. Lieu de détachement</p>\n <p>Vous serez affecté à {branch}. Vous pouvez cependant être tenu de travailler dans nimporte quel lieu daffaires que la Société a, ou</p>\n\n <p>pourra acquérir plus tard.</p>\n\n\n\n <p>5. Heures de travail</p>\n\n <p>Les jours ouvrables normaux sont du lundi au vendredi. Vous devrez travailler les heures nécessaires à la</p>\n\n <p>lexercice correct de vos fonctions envers la Société. Les heures normales de travail vont de {start_time} à {end_time} et vous êtes</p>\n\n <p>devrait travailler au moins {total_hours} heures par semaine, et si nécessaire des heures supplémentaires en fonction de votre</p>\n\n <p>responsabilités.</p>\n\n <p>6. Congés/Vacances</p>\n\n <p>6.1 Vous avez droit à un congé occasionnel de 12 jours.</p>\n\n <p>6.2 Vous avez droit à 12 jours ouvrables de congé de maladie payé.</p>\n\n <p>6.3 La Société communiquera une liste des jours fériés déclarés au début de chaque année.</p>\n\n\n\n <p>7. Nature des fonctions</p>\n\n <p>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</p>\n\n <p>peut faire appel à vous pour effectuer, de temps à autre. Vos fonctions spécifiques sont énoncées à lannexe II ci-jointe.</p>\n\n\n\n <p>8. Biens sociaux</p>\n\n <p>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</p>\n\n <p>votre emploi, et doit restituer tous ces biens à la Société avant labandon de votre charge, à défaut de quoi le coût</p>\n\n <p>de même seront récupérés auprès de vous par la Société.</p>\n\n\n\n <p>9. Emprunter/accepter des cadeaux</p>\n\n <p>Vous nemprunterez ni naccepterez dargent, de cadeau, de récompense ou de compensation pour vos gains personnels ou vous placerez autrement</p>\n\n <p>sous obligation pécuniaire envers toute personne/client avec qui vous pourriez avoir des relations officielles.</p>\n <p>10. Résiliation</p>\n\n <p>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</p>\n\n <p>un préavis écrit ou un salaire en tenant lieu. Aux fins de la présente clause, salaire sentend du salaire de base.</p>\n\n <p>10.2 Vous pouvez résilier votre emploi au sein de la Société, sans motif, en donnant au moins [Avis à lemployé]</p>\n\n <p>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.</p>\n\n <p>10.3 La Société se réserve le droit de résilier votre emploi sans préavis ni indemnité de licenciement.</p>\n\n <p>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</p>\n\n <p>contrat, ou causé une perte à la Société.</p>\n\n <p>10. 4 À la fin de votre emploi pour quelque raison que ce soit, vous restituerez à la Société tous les biens ; document, et</p>\n\n <p>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,</p>\n\n <p>lettres, notes, données et similaires; et Informations confidentielles, en votre possession ou sous votre contrôle relatives à votre</p>\n\n <p>lemploi ou aux affaires commerciales des clients.</p>\n <p>11. Informations confidentielles</p>\n\n <p>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</p>\n\n <p>son affaire. Vous ne devez pas, directement ou indirectement, vous engager ou vous associer à, être lié à, concerné, employé ou</p>\n\n <p>temps ou poursuivre quelque programme détudes que ce soit, sans lautorisation préalable de la Société. engagé dans toute autre entreprise ou</p>\n\n <p>activités ou tout autre poste ou travail à temps partiel ou poursuivre des études quelconques, sans lautorisation préalable du</p>\n\n <p>Compagnie.</p>\n\n <p>11.2 Vous devez toujours maintenir le plus haut degré de confidentialité et garder confidentiels les dossiers, documents et autres</p>\n\n <p>Informations confidentielles relatives à lactivité de la Société dont vous pourriez avoir connaissance ou qui vous seraient confiées par tout moyen</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>qui nest pas accessible au grand public et dont vous pourriez avoir connaissance dans le cadre de votre emploi. Ceci comprend,</p>\n\n <p>mais sans sy limiter, les informations relatives à lorganisation, ses listes de clients, ses politiques demploi, son personnel et les informations</p>\n\n <p>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,</p>\n\n <p>spécifications, et tous les papiers, curriculum vitae, dossiers et autres documents contenant de telles informations confidentielles.</p>\n\n <p>11.3 À aucun moment, vous ne retirerez des informations confidentielles du bureau sans autorisation.</p>\n\n <p>11.4 Votre devoir de protéger et de ne pas divulguer</p>\n\n <p>Les Informations confidentielles survivront à lexpiration ou à la résiliation du présent Contrat et/ou à votre emploi au sein de la Société.</p>\n\n <p>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</p>\n\n <p>autre recours que la Société peut avoir contre vous en droit.</p>\n <p>12. Avis</p>\n\n <p>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é à</p>\n\n <p>ladresse que vous avez indiquée dans les registres officiels.</p>\n\n\n\n <p>13. Applicabilité de la politique de lentreprise</p>\n\n <p>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é</p>\n\n <p>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.</p>\n\n <p>Toutes ces décisions politiques de la Société vous lieront et prévaudront sur le présent Contrat dans cette mesure.</p>\n\n\n\n <p>14. Droit applicable/juridiction</p>\n\n <p>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</p>\n\n <p>Gujarat uniquement.</p>\n\n\n\n <p>15. Acceptation de notre offre</p>\n\n <p>Veuillez confirmer votre acceptation de ce contrat de travail en signant et en renvoyant le duplicata.</p>\n\n\n\n <p>Nous vous souhaitons la bienvenue et nous nous réjouissons de recevoir votre acceptation et de travailler avec vous.</p>\n\n\n\n <p>Cordialement,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (20, 'id', '<h3 style=\"text-align: center;\">Surat Bergabung</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Perihal: Pengangkatan untuk jabatan {designation}</p>\n\n\n <p>{employee_name} yang terhormat,</p>\n\n <p>Kami dengan senang hati menawarkan kepada Anda, posisi {designation} dengan {app_name} sebagai Perusahaan dengan persyaratan dan</p>\n\n <p>kondisi:</p>\n\n\n\n <p>1. Mulai bekerja</p>\n\n <p>Pekerjaan Anda akan efektif, mulai {start_date}</p>\n\n\n <p>2. Jabatan</p>\n <p>Jabatan Anda adalah {designation}.</p>\n\n <p>3. Gaji</p>\n <p>Gaji Anda dan tunjangan lainnya akan diatur dalam Jadwal 1, di sini.</p>\n\n\n <p>4. Tempat posting</p>\n\n <p>Anda akan diposkan di {branch}. Namun Anda mungkin diminta untuk bekerja di tempat bisnis mana pun yang dimiliki Perusahaan, atau</p>\n\n <p>nantinya dapat memperoleh.</p>\n\n\n\n <p>5. Jam Kerja</p>\n\n <p>Hari kerja normal adalah Senin sampai Jumat. Anda akan diminta untuk bekerja selama jam-jam yang diperlukan untuk</p>\n\n <p>pelaksanaan tugas Anda dengan benar di Perusahaan. Jam kerja normal adalah dari {start_time} hingga {end_time} dan Anda</p>\n\n <p>diharapkan bekerja tidak kurang dari {total_hours} jam setiap minggu, dan jika perlu untuk jam tambahan tergantung pada</p>\n\n <p>tanggung jawab.</p>\n\n\n\n <p>6. Cuti/Libur</p>\n\n <p>6.1 Anda berhak atas cuti biasa selama 12 hari.</p>\n\n <p>6.2 Anda berhak atas 12 hari kerja cuti sakit berbayar.</p>\n\n <p>6.3 Perusahaan akan memberitahukan daftar hari libur yang diumumkan pada awal setiap tahun.</p>\n\n\n\n <p>7. Sifat tugas</p>\n\n <p>Anda akan melakukan yang terbaik dari kemampuan Anda semua tugas yang melekat pada jabatan Anda dan tugas tambahan seperti perusahaan</p>\n\n <p>dapat memanggil Anda untuk tampil, dari waktu ke waktu. Tugas khusus Anda ditetapkan dalam Jadwal II di sini.</p>\n\n\n\n <p>8. Properti perusahaan</p>\n\n <p>Anda akan selalu menjaga properti Perusahaan dalam kondisi baik, yang dapat dipercayakan kepada Anda untuk penggunaan resmi selama</p>\n\n <p>pekerjaan Anda, dan akan mengembalikan semua properti tersebut kepada Perusahaan sebelum melepaskan biaya Anda, jika tidak ada biayanya</p>\n\n <p>yang sama akan dipulihkan dari Anda oleh Perusahaan.</p>\n\n\n\n <p>9. Meminjam/menerima hadiah</p>\n\n <p>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</p>\n\n <p>di bawah kewajiban uang kepada setiap orang/klien dengan siapa Anda mungkin memiliki hubungan resmi.</p>\n <p>10. Penghentian</p>\n\n <p>10.1 Penunjukan Anda dapat diakhiri oleh Perusahaan, tanpa alasan apa pun, dengan memberi Anda tidak kurang dari [Pemberitahuan] bulan sebelumnya</p>\n\n <p>pemberitahuan secara tertulis atau gaji sebagai penggantinya. Untuk maksud pasal ini, gaji berarti gaji pokok.</p>\n\n <p>10.2 Anda dapat memutuskan hubungan kerja Anda dengan Perusahaan, tanpa alasan apa pun, dengan memberikan tidak kurang dari [Pemberitahuan Karyawan]</p>\n\n <p>pemberitahuan atau gaji bulan sebelumnya untuk periode yang belum disimpan, yang tersisa setelah penyesuaian cuti yang tertunda, pada tanggal.</p>\n\n <p>10.3 Perusahaan berhak untuk mengakhiri hubungan kerja Anda dengan segera tanpa pemberitahuan jangka waktu atau pembayaran pemutusan hubungan kerja</p>\n\n <p>jika memiliki alasan yang masuk akal untuk meyakini bahwa Anda bersalah atas kesalahan atau kelalaian, atau telah melakukan pelanggaran mendasar apa pun terhadap</p>\n\n <p>kontrak, atau menyebabkan kerugian bagi Perusahaan.</p>\n\n <p>10. 4 Pada pemutusan hubungan kerja Anda karena alasan apa pun, Anda akan mengembalikan semua properti kepada Perusahaan; dokumen, dan</p>\n\n <p>kertas, baik asli maupun salinannya, termasuk contoh, literatur, kontrak, catatan, daftar, gambar, cetak biru,</p>\n\n <p>surat, catatan, data dan sejenisnya; dan Informasi Rahasia, yang Anda miliki atau di bawah kendali Anda terkait dengan</p>\n\n <p>pekerjaan atau untuk urusan bisnis klien.</p>\n <p>11. Informasi Rahasia</p>\n\n <p>11. 1 Selama bekerja di Perusahaan, Anda akan mencurahkan seluruh waktu, perhatian, dan keterampilan Anda sebaik mungkin untuk</p>\n\n <p>bisnisnya. Anda tidak boleh, secara langsung atau tidak langsung, terlibat atau mengasosiasikan diri Anda dengan, terhubung dengan, terkait, dipekerjakan, atau</p>\n\n <p>waktu atau mengikuti program studi apapun, tanpa izin sebelumnya dari Perusahaan.terlibat dalam bisnis lain atau</p>\n\n <p>kegiatan atau pos atau pekerjaan paruh waktu lainnya atau mengejar program studi apa pun, tanpa izin sebelumnya dari</p>\n\n <p>Perusahaan.</p>\n\n <p>11.2 Anda harus selalu menjaga tingkat kerahasiaan tertinggi dan merahasiakan catatan, dokumen, dan lainnya</p>\n\n <p>Informasi Rahasia yang berkaitan dengan bisnis Perusahaan yang mungkin Anda ketahui atau rahasiakan kepada Anda dengan cara apa pun</p>\n\n <p>dan Anda akan menggunakan catatan, dokumen, dan informasi tersebut hanya dengan cara yang sah untuk kepentingan Perusahaan. Untuk</p>\n\n <p>tujuan klausul ini Informasi Rahasia berarti informasi tentang bisnis Perusahaan dan pelanggannya</p>\n\n <p>yang tidak tersedia untuk masyarakat umum dan yang mungkin Anda pelajari selama masa kerja Anda. Ini termasuk,</p>\n\n <p>tetapi tidak terbatas pada, informasi yang berkaitan dengan organisasi, daftar pelanggannya, kebijakan ketenagakerjaan, personel, dan informasi</p>\n\n <p>tentang produk Perusahaan, proses termasuk ide, konsep, proyeksi, teknologi, manual, gambar, desain,</p>\n\n <p>spesifikasi, dan semua makalah, resume, catatan dan dokumen lain yang berisi Informasi Rahasia tersebut.</p>\n\n <p>11.3 Kapan pun Anda akan menghapus Informasi Rahasia apa pun dari kantor tanpa izin.</p>\n\n <p>11.4 Kewajiban Anda untuk melindungi dan tidak mengungkapkan</p>\n\n <p>e Informasi Rahasia akan tetap berlaku setelah berakhirnya atau pengakhiran Perjanjian ini dan/atau hubungan kerja Anda dengan Perusahaan.</p>\n\n <p>11.5 Pelanggaran terhadap ketentuan klausul ini akan membuat Anda bertanggung jawab atas pemecatan singkat berdasarkan klausul di atas selain dari:</p>\n\n <p>upaya hukum lain yang mungkin dimiliki Perusahaan terhadap Anda secara hukum.</p>\n <p>12. Pemberitahuan</p>\n\n <p>Pemberitahuan dapat diberikan oleh Anda kepada Perusahaan di alamat kantor terdaftarnya. Pemberitahuan dapat diberikan oleh Perusahaan kepada Anda di</p>\n\n <p>alamat yang diberitahukan oleh Anda dalam catatan resmi.</p>\n\n\n\n <p>13. Keberlakuan Kebijakan Perusahaan</p>\n\n <p>Perusahaan berhak untuk membuat pernyataan kebijakan dari waktu ke waktu berkaitan dengan hal-hal seperti hak cuti, persalinan</p>\n\n <p>cuti, tunjangan karyawan, jam kerja, kebijakan transfer, dll., dan dapat mengubahnya dari waktu ke waktu atas kebijakannya sendiri.</p>\n\n <p>Semua keputusan kebijakan Perusahaan tersebut akan mengikat Anda dan akan mengesampingkan Perjanjian ini sejauh itu.</p>\n\n\n\n <p>14. Hukum/Yurisdiksi yang Mengatur</p>\n\n <p>Pekerjaan Anda dengan Perusahaan tunduk pada undang-undang Negara. Semua perselisihan akan tunduk pada yurisdiksi Pengadilan Tinggi</p>\n\n <p>Gujarat saja.</p>\n\n\n\n <p>15. Penerimaan penawaran kami</p>\n\n <p>Harap konfirmasikan penerimaan Anda atas Kontrak Kerja ini dengan menandatangani dan mengembalikan salinan duplikatnya.</p>\n\n\n\n <p>Kami menyambut Anda dan berharap untuk menerima penerimaan Anda dan bekerja sama dengan Anda.</p>\n\n\n\n <p>Dengan hormat,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (21, 'it', '<h3 style=\"text-align: center;\">Lettera di adesione</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Oggetto: Appuntamento alla carica di {designation}</p>\n\n\n <p>Gentile {employee_name},</p>\n\n <p>Siamo lieti di offrirti la posizione di {designation} con {app_name} la \"Società\" alle seguenti condizioni e</p>\n\n <p>condizioni:</p>\n\n\n <p>1. Inizio del rapporto di lavoro</p>\n\n <p>Il tuo impiego sarà effettivo a partire da {start_date}</p>\n\n\n\n <p>2. Titolo di lavoro</p>\n\n <p>Il tuo titolo di lavoro sarà {designation}.</p>\n\n <p>3. Stipendio</p>\n\n <p>Il tuo stipendio e altri benefici saranno come indicato nellAllegato 1, qui di seguito.</p>\n\n\n\n <p>4. Luogo di invio</p>\n\n <p>Sarai inviato a {branch}. Tuttavia, potrebbe essere richiesto di lavorare in qualsiasi luogo di attività che la Società ha, o</p>\n\n <p>potrà successivamente acquisire.</p>\n\n\n\n <p>5. Orario di lavoro</p>\n\n <p>I normali giorni lavorativi sono dal lunedì al venerdì. Ti verrà richiesto di lavorare per le ore necessarie per il</p>\n\n <p>corretto adempimento dei propri doveri nei confronti della Società. Lorario di lavoro normale va da {start_time} a {end_time} e tu lo sei</p>\n\n <p>dovrebbe lavorare non meno di {total_hours} ore ogni settimana e, se necessario, per ore aggiuntive a seconda del tuo</p>\n\n <p>responsabilità.</p>\n\n\n\n <p>6. Permessi/Festività</p>\n\n <p>6.1 Hai diritto a un congedo occasionale di 12 giorni.</p>\n\n <p>6.2 Hai diritto a 12 giorni lavorativi di congedo per malattia retribuito.</p>\n\n <p>6.3 La Società comunica allinizio di ogni anno un elenco delle festività dichiarate.</p>\n\n\n\n <p>7. Natura degli incarichi</p>\n\n <p>Eseguirai al meglio delle tue capacità tutti i compiti inerenti al tuo incarico e compiti aggiuntivi come lazienda</p>\n\n <p>può invitarti a esibirti, di tanto in tanto. I tuoi doveri specifici sono stabiliti nellAllegato II del presente documento.</p>\n\n\n\n <p>8. Proprietà aziendale</p>\n\n <p>Manterrete sempre in buono stato i beni dellAzienda, che nel corso dellanno potrebbero esservi affidati per uso ufficiale</p>\n\n <p>il tuo impiego, e restituirà tutte queste proprietà alla Società prima della rinuncia al tuo addebito, in caso contrario il costo</p>\n\n <p>degli stessi saranno da voi recuperati dalla Società.</p>\n\n\n\n <p>9. Prendere in prestito/accettare regali</p>\n\n <p>Non prenderai in prestito né accetterai denaro, dono, ricompensa o compenso per i tuoi guadagni personali da o altrimenti collocato te stesso</p>\n\n <p>sotto obbligazione pecuniaria nei confronti di qualsiasi persona/cliente con cui potresti avere rapporti ufficiali.</p>\n <p>10. Cessazione</p>\n\n <p>10.1 Il tuo incarico può essere risolto dalla Società, senza alcun motivo, dandoti non meno di [Avviso] mesi prima</p>\n\n <p>avviso scritto o stipendio in sostituzione di esso. Ai fini della presente clausola, per stipendio si intende lo stipendio base.</p>\n\n <p>10.2 È possibile terminare il proprio rapporto di lavoro con la Società, senza alcuna causa, fornendo non meno di [Avviso per il dipendente]</p>\n\n <p>mesi di preavviso o stipendio per il periodo non risparmiato, lasciato dopo ladeguamento delle ferie pendenti, come alla data.</p>\n\n <p>10.3 La Società si riserva il diritto di terminare il rapporto di lavoro sommariamente senza alcun periodo di preavviso o pagamento di cessazione</p>\n\n <p>se ha fondati motivi per ritenere che tu sia colpevole di cattiva condotta o negligenza, o abbia commesso una violazione fondamentale</p>\n\n <p>contratto, o ha causato danni alla Società.</p>\n\n <p>10. 4 Alla cessazione del rapporto di lavoro per qualsiasi motivo, restituirete alla Società tutti i beni; documenti, e</p>\n\n <p>carta, sia in originale che in copia, inclusi eventuali campioni, letteratura, contratti, registrazioni, elenchi, disegni, progetti,</p>\n\n <p>lettere, note, dati e simili; e Informazioni Riservate, in tuo possesso o sotto il tuo controllo, relative alla tua</p>\n\n <p>lavoro o agli affari dei clienti.</p>\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (22, 'ja', '<h3 style=\"text-align: center;\">入会の手紙</h3>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>件名: {designation} の役職への任命</p>\n\n\n\n <p>{employee_name} 様</p>\n\n\n <p>{app_name} の {designation} の地位を以下の条件で「会社」として提供できることをうれしく思います。</p>\n\n <p>条件:</p>\n\n\n <p>1. 雇用開始</p>\n\n <p>あなたの雇用は {start_date} から有効になります</p>\n\n\n <p>2. 役職</p>\n\n <p>あなたの役職は{designation}になります。</p>\n\n\n <p>3. 給与</p>\n\n <p>あなたの給与およびその他の福利厚生は、本明細書のスケジュール 1 に記載されているとおりです。</p>\n\n\n <p>4. 掲示場所</p>\n\n <p>{branch} に掲載されます。ただし、会社が所有する事業所で働く必要がある場合があります。</p>\n\n <p>後で取得する場合があります。</p>\n\n\n\n <p>5. 労働時間</p>\n\n <p>通常の営業日は月曜日から金曜日です。あなたは、そのために必要な時間働く必要があります。</p>\n\n <p>会社に対するあなたの義務の適切な遂行。通常の勤務時間は {start_time} から {end_time} までで、あなたは</p>\n\n <p>毎週 {total_hours} 時間以上の勤務が期待される</p>\n\n <p>責任。</p>\n\n\n\n <p>6.休暇・休日</p>\n\n <p>6.1 12 日間の臨時休暇を取得する権利があります。</p>\n\n <p>6.2 12 日間の有給病気休暇を取る権利があります。</p>\n\n <p>6.3 当社は、毎年の初めに宣言された休日のリストを通知するものとします。</p>\n\n\n\n <p>7. 職務内容</p>\n\n <p>あなたは、自分のポストに固有のすべての義務と、会社としての追加の義務を最大限に遂行します。</p>\n\n <p>時々あなたに演奏を依頼するかもしれません。あなたの特定の義務は、本明細書のスケジュール II に記載されています。</p>\n\n\n\n <p>8. 会社財産</p>\n\n <p>あなたは、会社の所有物を常に良好な状態に維持するものとします。</p>\n\n <p>あなたの雇用を放棄し、あなたの料金を放棄する前に、そのようなすべての財産を会社に返還するものとします。</p>\n\n <p>同じのは、会社によってあなたから回収されます。</p>\n\n\n\n <p>9. 貸出・贈答品の受け取り</p>\n\n <p>あなたは、あなた自身から、または他の方法であなた自身の場所から個人的な利益を得るための金銭、贈り物、報酬、または補償を借りたり、受け取ったりしません。</p>\n\n <p>あなたが公式の取引をしている可能性のある人物/クライアントに対する金銭的義務の下で。</p>\n <p>10. 終了</p>\n\n <p>10.1 少なくとも [通知] か月前に通知することにより、理由のいかんを問わず、会社はあなたの任命を終了することができます。</p>\n\n <p>書面による通知またはその代わりの給与。この条項の目的上、給与とは基本給を意味するものとします。</p>\n\n <p>10.2 あなたは、少なくとも [従業員通知] を提出することにより、理由のいかんを問わず、会社での雇用を終了することができます。</p>\n\n <p>保留中の休暇の調整後に残された、保存されていない期間の数か月前の通知または給与は、日付のとおりです。</p>\n\n <p>10.3 当社は、通知期間や解雇補償金なしに、あなたの雇用を即座に終了させる権利を留保します。</p>\n\n <p>あなたが不正行為または過失で有罪であると信じる合理的な根拠がある場合、または基本的な違反を犯した場合</p>\n\n <p>契約、または当社に損害を与えた。</p>\n\n <p>10. 4 何らかの理由で雇用が終了した場合、あなたは会社にすべての財産を返還するものとします。ドキュメント、および</p>\n\n <p>サンプル、文献、契約書、記録、リスト、図面、青写真を含む、原本とコピーの両方の紙、</p>\n\n <p>手紙、メモ、データなど。あなたが所有する、またはあなたの管理下にある機密情報。</p>\n\n <p>雇用またはクライアントの業務に。</p>\n <p>11. 機密情報</p>\n\n <p>11. 1 当社での雇用期間中、あなたは自分の全時間、注意、およびスキルを、自分の能力の限りを尽くして捧げます。</p>\n\n <p>そのビジネス。あなたは、直接的または間接的に、関与したり、関連付けたり、接続したり、関係したり、雇用したり、または</p>\n\n <p>会社の事前の許可なしに、時間や学習コースを追求すること。他のビジネスに従事すること、または</p>\n\n <p>の事前の許可なしに、活動またはその他の投稿またはアルバイトをしたり、何らかの研究コースを追求したりすること。</p>\n\n <p>会社。</p>\n\n <p>11.2 常に最高度の機密性を維持し、記録、文書、およびその他の情報を機密として保持する必要があります。</p>\n\n <p>お客様が知っている、または何らかの方法でお客様に内密にされている可能性がある、当社の事業に関連する機密情報</p>\n\n <p>また、あなたは、会社の利益のために正当に承認された方法でのみ、そのような記録、文書、および情報を使用するものとします。為に</p>\n\n <p>この条項の目的 「機密情報」とは、会社の事業および顧客の事業に関する情報を意味します。</p>\n\n <p>これは一般には公開されておらず、雇用の過程で学習する可能性があります。これも、</p>\n\n <p>組織、その顧客リスト、雇用方針、人事、および情報に関連する情報に限定されません</p>\n\n <p>当社の製品、アイデアを含むプロセス、コンセプト、予測、技術、マニュアル、図面、デザイン、</p>\n\n <p>仕様、およびそのような機密情報を含むすべての書類、履歴書、記録、およびその他の文書。</p>\n\n <p>11.3 いかなる時も、許可なくオフィスから機密情報を削除しないでください。</p>\n\n <p>11.4 保護し、開示しないというあなたの義務</p>\n\n <p>e 機密情報は、本契約および/または当社との雇用の満了または終了後も存続します。</p>\n\n <p>11.5 この条項の条件に違反した場合、上記の条項に基づく略式解雇の対象となります。</p>\n\n <p>会社が法律であなたに対して持つことができるその他の救済。</p>\n <p>12. 通知</p>\n\n <p>通知は、登録された事務所の住所で会社に提出することができます。通知は、当社からお客様に提供される場合があります。</p>\n\n <p>公式記録であなたがほのめかした住所。</p>\n\n\n\n <p>13. 会社方針の適用性</p>\n\n <p>会社は、休暇の資格、出産などの事項に関して、随時方針を宣言する権利を有するものとします。</p>\n\n <p>休暇、従業員の福利厚生、勤務時間、異動ポリシーなどであり、独自の裁量により随時変更される場合があります。</p>\n\n <p>当社のそのようなポリシー決定はすべて、あなたを拘束し、その範囲で本契約を無効にするものとします。</p>\n\n\n\n <p>14. 準拠法・裁判管轄</p>\n\n <p>当社でのあなたの雇用は、国の法律の対象となります。すべての紛争は、高等裁判所の管轄に服するものとします</p>\n\n <p>グジャラートのみ。</p>\n\n\n\n <p>15. オファーの受諾</p>\n\n <p>副本に署名して返送することにより、この雇用契約に同意したことを確認してください。</p>\n\n\n\n <p>私たちはあなたを歓迎し、あなたの受け入れを受け取り、あなたと一緒に働くことを楽しみにしています.</p>\n\n\n\n <p>敬具、</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (23, 'nl', '<h3 style=\"text-align: center;\">Deelnemende brief</h3>\n\n <p>{date}</p>\n\n <p>{employee}</p>\n\n <p>{address}</p>\n\n <p>Onderwerp: Benoeming voor de functie van {designation}</p>\n\n <p>Beste {employee_name},</p>\n\n <p>We zijn verheugd u de positie van {designation} bij {app_name} het Bedrijf aan te bieden onder de volgende voorwaarden en</p>\n\n <p>conditie:</p>\n\n\n <p>1. Indiensttreding</p>\n <p>Uw dienstverband gaat in op {start_date}</p>\n\n\n <p>2. Functietitel</p>\n\n <p>Uw functietitel wordt {designation}.</p>\n\n <p>3. Salaris</p>\n\n <p>Uw salaris en andere voordelen zijn zoals uiteengezet in Schema 1 hierbij.</p>\n\n <p>4. Plaats van detachering</p>\n\n <p>Je wordt geplaatst op {branch}. Het kan echter zijn dat u moet werken op een bedrijfslocatie die het Bedrijf heeft, of</p>\n\n <p>later kan verwerven.</p>\n\n\n\n <p>5. Werkuren</p>\n\n <p>De normale werkdagen zijn van maandag tot en met vrijdag. Je zal de uren moeten werken die nodig zijn voor de</p>\n\n <p>correcte uitvoering van uw taken jegens het bedrijf. De normale werkuren zijn van {start_time} tot {end_time} en jij bent</p>\n\n <p>naar verwachting niet minder dan {total_hours} uur per week werken, en indien nodig voor extra uren, afhankelijk van uw</p>\n\n <p>verantwoordelijkheden.</p>\n\n\n\n <p>6. Verlof/Vakantie</p>\n\n <p>6.1 Je hebt recht op tijdelijk verlof van 12 dagen.</p>\n\n <p>6.2 U heeft recht op 12 werkdagen betaald ziekteverlof.</p>\n\n <p>6.3 De Maatschappij stelt aan het begin van elk jaar een lijst van verklaarde feestdagen op.</p>\n\n\n\n <p>7. Aard van de taken</p>\n\n <p>Je voert alle taken die inherent zijn aan je functie en bijkomende taken zoals het bedrijf naar beste vermogen uit;</p>\n\n <p>kan van tijd tot tijd een beroep op u doen om op te treden. Uw specifieke taken zijn uiteengezet in Bijlage II hierbij.</p>\n\n\n\n <p>8. Bedrijfseigendommen</p>\n\n <p>U onderhoudt bedrijfseigendommen, die u in de loop van</p>\n\n <p>uw dienstverband, en zal al deze eigendommen aan het Bedrijf teruggeven voordat afstand wordt gedaan van uw kosten, bij gebreke waarvan de kosten</p>\n\n <p>hiervan zal door het Bedrijf van u worden verhaald.</p>\n\n\n\n <p>9. Geschenken lenen/aannemen</p>\n\n <p>U zult geen geld, geschenken, beloningen of vergoedingen voor uw persoonlijk gewin lenen of accepteren van uzelf of uzelf op een andere manier plaatsen</p>\n\n <p>onder geldelijke verplichting jegens een persoon/klant met wie u mogelijk officiële betrekkingen heeft.</p>\n <p>10. Beëindiging</p>\n\n <p>10.1 Uw aanstelling kan door het Bedrijf zonder opgaaf van reden worden beëindigd door u minimaal [Opzegging] maanden van tevoren</p>\n\n <p>schriftelijke opzegging of daarvoor in de plaats komend salaris. In dit artikel wordt onder salaris verstaan het basissalaris.</p>\n\n <p>10.2 U kunt uw dienstverband bij het Bedrijf beëindigen, zonder enige reden, door niet minder dan [Mededeling van de werknemer]</p>\n\n <p>maanden opzegtermijn of salaris voor de niet gespaarde periode, overgebleven na aanpassing van hangende verlofdagen, zoals op datum.</p>\n\n <p>10.3 Het bedrijf behoudt zich het recht voor om uw dienstverband op staande voet te beëindigen zonder enige opzegtermijn of beëindigingsvergoeding</p>\n\n <p>als het redelijke grond heeft om aan te nemen dat u zich schuldig heeft gemaakt aan wangedrag of nalatigheid, of een fundamentele schending van</p>\n\n <p>contract, of enig verlies voor het Bedrijf veroorzaakt.</p>\n\n <p>10. 4 Bij beëindiging van uw dienstverband om welke reden dan ook, geeft u alle eigendommen terug aan het Bedrijf; documenten, en</p>\n\n <p>papier, zowel origineel als kopieën daarvan, inclusief eventuele monsters, literatuur, contracten, bescheiden, lijsten, tekeningen, blauwdrukken,</p>\n\n <p>brieven, notities, gegevens en dergelijke; en Vertrouwelijke informatie, in uw bezit of onder uw controle met betrekking tot uw</p>\n\n <p>werkgelegenheid of de zakelijke aangelegenheden van klanten.</p>\n <p>11. Vertrouwelijke informatie</p>\n\n <p>11. 1 Tijdens uw dienstverband bij het Bedrijf besteedt u al uw tijd, aandacht en vaardigheden naar uw beste vermogen aan:</p>\n\n <p>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</p>\n\n <p>tijd doorbrengen of een studie volgen, zonder voorafgaande toestemming van het bedrijf.bezig met een ander bedrijf of</p>\n\n <p>werkzaamheden of enige andere functie of werk in deeltijd of het volgen van welke opleiding dan ook, zonder voorafgaande toestemming van de</p>\n\n <p>Bedrijf.</p>\n\n <p>11.2 U moet altijd de hoogste graad van vertrouwelijkheid handhaven en de records, documenten en andere</p>\n\n <p>Vertrouwelijke informatie met betrekking tot het bedrijf van het bedrijf die u op enigerlei wijze bekend is of in vertrouwen is genomen</p>\n\n <p>en u zult dergelijke records, documenten en informatie alleen gebruiken op een naar behoren gemachtigde manier in het belang van het bedrijf. Voor</p>\n\n <p>de doeleinden van deze clausule Vertrouwelijke informatiebetekent informatie over het bedrijf van het bedrijf en dat van zijn klanten</p>\n\n <p>die niet beschikbaar is voor het grote publiek en die u tijdens uw dienstverband kunt leren. Dit bevat,</p>\n\n <p>maar is niet beperkt tot informatie met betrekking tot de organisatie, haar klantenlijsten, werkgelegenheidsbeleid, personeel en informatie</p>\n\n <p>over de producten, processen van het bedrijf, inclusief ideeën, concepten, projecties, technologie, handleidingen, tekeningen, ontwerpen,</p>\n\n <p>specificaties, en alle papieren, cvs, dossiers en andere documenten die dergelijke vertrouwelijke informatie bevatten.</p>\n\n <p>11.3 U verwijdert nooit vertrouwelijke informatie van het kantoor zonder toestemming.</p>\n\n <p>11.4 Uw plicht om te beschermen en niet openbaar te maken</p>\n\n <p>e Vertrouwelijke informatie blijft van kracht na het verstrijken of beëindigen van deze Overeenkomst en/of uw dienstverband bij het Bedrijf.</p>\n\n <p>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:</p>\n\n <p>ander rechtsmiddel dat het Bedrijf volgens de wet tegen u heeft.</p>\n <p>12. Kennisgevingen</p>\n\n <p>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:</p>\n\n <p>het door u opgegeven adres in de officiële administratie.</p>\n\n\n\n <p>13. Toepasselijkheid van het bedrijfsbeleid</p>\n\n <p>Het bedrijf heeft het recht om van tijd tot tijd beleidsverklaringen af te leggen met betrekking tot zaken als verlofrecht, moederschap</p>\n\n <p>verlof, werknemersvoordelen, werkuren, transferbeleid, enz., en kan deze van tijd tot tijd naar eigen goeddunken wijzigen.</p>\n\n <p>Al dergelijke beleidsbeslissingen van het Bedrijf zijn bindend voor u en hebben voorrang op deze Overeenkomst in die mate.</p>\n\n\n\n <p>14. Toepasselijk recht/jurisdictie</p>\n\n <p>Uw dienstverband bij het bedrijf is onderworpen aan de landelijke wetgeving. Alle geschillen zijn onderworpen aan de jurisdictie van de High Court</p>\n\n <p>Alleen Gujarat.</p>\n\n\n\n <p>15. Aanvaarding van ons aanbod</p>\n\n <p>Bevestig uw aanvaarding van deze arbeidsovereenkomst door het duplicaat te ondertekenen en terug te sturen.</p>\n\n\n\n <p>Wij heten u van harte welkom en kijken ernaar uit uw acceptatie te ontvangen en met u samen te werken.</p>\n\n\n\n <p>Hoogachtend,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (24, 'pl', '<h3 style=\"text-align: center;\">Dołączanie listu</h3>\n\n <p>{date }</p>\n\n <p>{employee_name }</p>\n\n <p>{address }</p>\n\n\n <p>Dotyczy: mianowania na stanowisko {designation}</p>\n\n <p>Szanowny {employee_name },</p>\n\n <p>Mamy przyjemność zaoferować Państwu, stanowisko {designation} z {app_name } \"Spółka\" na poniższych warunkach i</p>\n <p>warunki:</p>\n\n <p>1. Rozpoczęcie pracy</p>\n\n <p>Twoje zatrudnienie będzie skuteczne, jak na {start_date }</p>\n\n <p>2. Tytuł zadania</p>\n <p>Twój tytuł pracy to {designation}.</p>\n\n <p>3. Salary</p>\n\n <p>Twoje wynagrodzenie i inne świadczenia będą określone w Zestawieniu 1, do niniejszego rozporządzenia.</p>\n\n\n <p>4. Miejsce delegowania</p>\n <p>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ć.</p>\n\n <p>5. Godziny pracy</p>\n <p>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</p>\n <p>odpowiedzialności.</p>\n\n <p>6. Urlop/Wakacje</p>\n\n <p>6.1 Przysługuje prawo do urlopu dorywczego w ciągu 12 dni.</p>\n\n <p>6.2 Użytkownik ma prawo do 12 dni roboczych od wypłatnego zwolnienia chorobowego.</p>\n\n <p>6.3 Spółka powiadamia na początku każdego roku wykaz ogłoszonych świąt. </p>\n\n\n\n <p>7. Rodzaj obowiązków</p>\n\n <p>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.</p>\n\n\n\n <p>8. Właściwość przedsiębiorstwa</p>\n\n <p>Zawsze będziesz utrzymywać w dobrej kondycji Firmy, która może być powierzona do użytku służbowego w trakcie trwania</p>\n\n <p>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ę.</p>\n\n <p>9. Wypożyczanie/akceptowanie prezentów</p>\n\n <p>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.</p>\n <p>10. Zakończenie</p>\n\n <p>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.</p>\n\n <p>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ń.</p>\n\n <p>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. </p>\n\n <p>10. 4 W sprawie rozwiązania stosunku pracy z jakiegokolwiek powodu, powrócisz do Spółki wszystkie nieruchomości; dokumenty, i </p>\n\n <p>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,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informacje poufne</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Firma.</p>\n\n <p>11.2 Zawsze musisz zachować najwyższy stopień poufności i zachować jako poufny akt, dokumenty, i inne </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>specyfikacje, a także wszystkie dokumenty, życiorysy, zapisy i inne dokumenty zawierające takie informacje poufne.</p>\n\n <p>11.3 W żadnym momencie nie usunie Pan żadnych Informacji Poufnych z urzędu bez zezwolenia.</p>\n\n <p>11.4 Twój obowiązek ochrony a nie disclos</p>\n\n <p>Informacje poufne przetrwają wygaśnięcie lub rozwiązanie niniejszej Umowy i/lub Twoje zatrudnienie w Spółce.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Uwagi</p>\n\n <p>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.</p>\n\n\n\n <p>13. Stosowność polityki firmy</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Wszystkie takie decyzje polityczne Spółki są wiążące dla Państwa i przesłaniają niniejszą Umowę w tym zakresie.</p>\n\n\n\n <p>14. Prawo właściwe/jurysdykcja</p>\n\n <p>Twoje zatrudnienie ze Spółką podlega prawu krajowi. Wszelkie spory podlegają właściwości Sądu Najwyższego</p>\n\n <p>Tylko Gujarat.</p>\n\n\n\n <p>15. Akceptacja naszej oferty</p>\n\n <p>Prosimy o potwierdzenie przyjęcia niniejszej Umowy o pracę poprzez podpisanie i zwrócenie duplikatu.</p>\n\n\n\n <p>Zapraszamy Państwa i czekamy na Państwa przyjęcie i współpracę z Tobą.</p>\n\n\n\n <p>Z Państwa Sincerely,</p>\n\n <p>{app_name }</p>\n\n <p>{date }</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (25, 'pt', '<h3 style=\"text-align: center;\">Carta De Adesão</h3>\n\n <p>{data}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n <p>Assunto: Nomeação para o cargo de {designation}</p>\n\n <p>Querido {employee_name},</p>\n\n\n <p>Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e</p>\n <p>condições:</p>\n\n\n <p>1. Comentamento do emprego</p>\n\n <p>Seu emprego será efetivo, a partir de {start_date}</p>\n\n\n <p>2. Título do emprego</p>\n\n <p>Seu cargo de trabalho será {designation}.</p>\n\n <p>3. Salário</p>\n\n <p>Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.</p>\n\n <p>4. Local de postagem</p>\n\n <p>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.</p>\n\n <p>5. Horas de Trabalho</p>\n\n <p>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</p>\n <p>responsabilidades.</p>\n\n <p>6. Leave / Holidays</p>\n\n <p>6,1 Você tem direito a licença casual de 12 dias.</p>\n\n <p>6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.</p>\n\n <p>6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. </p>\n\n\n\n <p>7. Natureza dos deveres</p>\n\n <p>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.</p>\n\n\n\n <p>8. Propriedade da empresa</p>\n\n <p>Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de</p>\n\n <p>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.</p>\n\n\n\n <p>9. Borremir / aceitar presentes</p>\n\n <p>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.</p>\n\n\n\n <p>10. Terminação</p>\n\n <p>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.</p>\n\n <p>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.</p>\n\n <p>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. </p>\n\n <p>10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e </p>\n\n <p>papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informações Confidenciais</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Empresa.</p>\n\n <p>11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.</p>\n\n <p>11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.</p>\n\n <p>11,4 O seu dever de salvaguardar e não os desclos</p>\n\n <p>Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Notices</p>\n\n <p>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.</p>\n\n\n\n <p>13. Aplicabilidade da Política da Empresa</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.</p>\n\n\n\n <p>14. Direito / Jurisdição</p>\n\n <p>Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior</p>\n\n <p>Gujarat apenas.</p>\n\n\n\n <p>15. Aceitação da nossa oferta</p>\n\n <p>Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.</p>\n\n\n\n <p>Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.</p>\n\n\n\n <p>Seu Sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{data}</p>\n ', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (26, 'ru', '<h3 style=\"text-align: center;\">Присоединение к письму</h3>\n\n <p>{date}</p>\n\n <p>{ employee_name }</p>\n <p>{address}</p>\n\n <p>Тема: Назначение на должность {designation}</p>\n\n <p>Уважаемый { employee_name },</p>\n\n <p>Мы рады предложить Вам, позицию {designation} с { app_name } Компания на следующих условиях и</p>\n\n <p>условия:</p>\n\n\n <p>1. Начало работы</p>\n\n <p>Ваше трудоустройство будет эффективным, начиная с { start_date }</p>\n\n\n <p>2. Название должности</p>\n <p>Ваш заголовок задания будет {designation}.</p>\n\n <p>3. Зарплата</p>\n <p>Ваши оклады и другие пособия будут установлены в соответствии с расписанием, изложенным в приложении 1 к настоящему.</p>\n\n <p>4. Место размещения</p>\n <p>Вы будете работать в { branch }. Вы, однако, можете работать в любом месте, которое компания имеет или может впоследствии приобрести.</p>\n\n\n\n <p>5. Часы работы</p>\n <p>Обычные рабочие дни-с понедельника по пятницу. Вы должны будете работать в течение таких часов, как это необходимо для надлежащего выполнения Ваших обязанностей перед компанией. Обычные рабочие часы-от { start_time } до { end_time }, и вы, как ожидается, будут работать не менее { total_hours } часов каждую неделю, и при необходимости в течение дополнительных часов в зависимости от вашего</p>\n <p>ответственности.</p>\n <p>6. Отпуск/Праздники</p>\n\n <p>6.1 Вы имеете право на случайный отпуск продолжительностью 12 дней.</p>\n\n <p>6.2 Вы имеете право на 12 рабочих дней оплачиваемого отпуска по болезни.</p>\n\n <p>6.3 Компания в начале каждого года уведомляет об объявленных праздниках. </p>\n\n\n\n <p>7. Характер обязанностей</p>\n\n <p>Вы будете выполнять все обязанности, присующие вам, и такие дополнительные обязанности, которые компания может призвать к вам, время от времени. Ваши конкретные обязанности изложены в приложении II к настоящему.</p>\n\n\n\n <p>8. Свойство компании</p>\n\n <p>Вы всегда будете поддерживать в хорошем состоянии имущество Компании, которое может быть доверено Вам для служебного пользования в течение</p>\n\n <p>вашей занятости, и возвратит все это имущество Компании до отказа от вашего заряда, при отсутствии которого стоимость одного и того же имущества будет взыскана с Вас компанией.</p>\n\n\n\n <p>9. Боровить/принять подарки</p>\n\n <p>Вы не будете брать взаймы или принимать какие-либо деньги, подарки, вознаграждение или компенсацию за ваши личные доходы от или в ином месте под денежный долг любому лицу/клиенту, с которым у вас могут быть официальные сделки.</p>\n\n\n\n <p>10. Прекращение</p>\n\n <p>10.1 Ваше назначение может быть прекращено компанией без каких бы то ни было оснований, предоставляя Вам не менее [ Уведомление] месяцев, предшея уведомлению в письменной форме или окладе вместо них. Для целей этого положения заработная плата означает базовый оклад.</p>\n\n <p>10.2 Вы можете прекратить свою трудовую деятельность с компанией без каких-либо причин, предоставляя не меньше, чем [ Employee Notice] months предварительное уведомление или оклад за несохраненный период, оставатся после корректировки отложенных листьев, как на сегодняшний день.</p>\n\n <p>10.3 Компания оставляет за собой право прекратить вашу работу в суммарном порядке без какого-либо уведомления о сроке или увольнении, если у нее есть достаточные основания полагать, что вы виновны в проступке или халатности, или совершили какое-либо существенное нарушение договора, или причинило убытки Компании. </p>\n\n <p>10. 4 О прекращении вашей работы по какой бы то ни было причине вы вернетесь в Компании все имущество; документы, а </p>\n\n <p>бумаги, как оригинальные, так и их копии, включая любые образцы, литературу, контракты, записи, списки, чертежи, чертежи,</p>\n\n <p>письма, заметки, данные и тому подобное; и Конфиденциальная информация, в вашем распоряжении или под вашим контролем, связанным с вашей работой или деловыми делами клиентов. </p>\n\n\n\n <p>11. Конфиденциальная информация</p>\n\n <p>11. 1 Во время вашего трудоустройства с компанией Вы посвяте все свое время, внимание, умение максимально</p>\n\n <p>Его бизнес. Вы не должны, прямо или косвенно, заниматься или ассоциировать себя с заинтересованными, занятым, занятым, или временем, или продолжать любой курс обучения, без предварительного разрешения Компани.заниматься каким-либо другим бизнесом или деятельностью или любой другой пост или работать неполный рабочий день или заниматься какой бы то ни было исследованием, без предварительного разрешения</p>\n\n <p>Компания.</p>\n\n <p>11.2 Вы всегда должны сохранять наивысшую степень конфиденциальности и хранить в качестве конфиденциальной записи, документы и другие </p>\n\n <p>Конфиденциальная информация, касающаяся бизнеса Компании, которая может быть вам известна или конфиденциальна любым способом, и Вы будете использовать такие записи, документы и информацию только в установленном порядке в интересах Компании. Для целей настоящей статьи \"Конфиденциальная информация\" означает информацию о бизнесе Компании и о ее клиентах, которая недоступна для широкой общественности и которая может быть изучилась Вами в ходе вашей работы. Это включает в себя:</p>\n\n <p>но не ограничивается информацией, касающейся организации, ее списков клиентов, политики в области занятости, персонала и информации о продуктах Компании, процессах, включая идеи, концепции, прогнозы, технологии, руководства, чертеж, чертеж, </p>\n\n <p>спецификации, и все бумаги, резюме, записи и другие документы, содержащие такую Конфиденциальную Информацию.</p>\n\n <p>11.3 В любое время вы не будете удалять конфиденциальную информацию из офиса без разрешения.</p>\n\n <p>11.4 Ваш долг защищать и не отсосать</p>\n\n <p>e Конфиденциальная информация выдержит срок действия или прекращения действия настоящего Соглашения и/или вашей работы с компанией.</p>\n\n <p>11.5 Нарушение условий, изложенных в настоящем положении, приведет к тому, что в дополнение к любым другим средствам правовой защиты, которые компания может иметь против вас, в соответствии с вышеприведенным положением, вы можете получить краткое увольнение в соответствии с этим положением.</p>\n\n\n\n <p>12. Замечания</p>\n\n <p>Уведомления могут быть даны Вами Компании по адресу ее зарегистрированного офиса. Извещения могут быть даны компанией Вам по адресу, с которым вы в официальных отчетах.</p>\n\n\n\n <p>13. Применимость политики компании</p>\n\n <p>Компания вправе время от времени делать политические заявления по таким вопросам, как право на отпуск, материнство</p>\n\n <p>отпуска, пособия для работников, продолжительность рабочего дня, трансферная политика и т.д. и время от времени могут изменяться исключительно по своему усмотрению.</p>\n\n <p>Все такие принципиальные решения Компании являются обязательными для Вас и переопределяют это Соглашение в такой степени.</p>\n\n\n\n <p>14. Регулирующий Право/юрисдикция</p>\n\n <p>Ваше трудоустройство с компанией подпадает под действие законов страны. Все споры подлежат юрисдикции Высокого суда</p>\n\n <p>Только Гуджарат.</p>\n\n\n\n <p>15. Принятие нашего предложения</p>\n\n <p>Пожалуйста, подтвердите свое согласие с этим Договором о занятости, подписав и возвращая дубликат копии.</p>\n\n\n\n <p>Мы приветствуем Вас и надеемся на то, что Вы принимаете свое согласие и работаете с Вами.</p>\n\n\n\n <p>Искренне Ваш,</p>\n\n <p>{ app_name }</p>\n\n <p>{date}</p>\n ', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (27, 'ar', '<h2 style=\"text-align: center;\"><strong>خطاب الانضمام</strong></h2>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>الموضوع: موعد لوظيفة {designation}</p>\n <p>عزيزي {employee_name} ،</p>\n <p>يسعدنا أن نقدم لك منصب {designation} مع {app_name} \"الشركة\" وفقًا للشروط التالية و</p>\n <p>الظروف:</p>\n <p>1. بدء العمل</p>\n <p>سيصبح عملك ساريًا اعتبارًا من {start_date}</p>\n <p>2. المسمى الوظيفي</p>\n <p>سيكون المسمى الوظيفي الخاص بك هو {designation}.</p>\n <p>3. الراتب</p>\n <p>سيكون راتبك والمزايا الأخرى على النحو المبين في الجدول 1 ، طيه.</p>\n <p>4. مكان الإرسال</p>\n <p>سيتم إرسالك إلى {branch}. ومع ذلك ، قد يُطلب منك العمل في أي مكان عمل تمتلكه الشركة ، أو</p>\n <p>قد تحصل لاحقًا.</p>\n <p>5. ساعات العمل</p>\n <p>أيام العمل العادية هي من الاثنين إلى الجمعة. سيُطلب منك العمل لساعات حسب الضرورة لـ</p>\n <p>أداء واجباتك على النحو الصحيح تجاه الشركة. ساعات العمل العادية من {start_time} إلى {end_time} وأنت</p>\n <p>من المتوقع أن يعمل ما لا يقل عن {total_hours} ساعة كل أسبوع ، وإذا لزم الأمر لساعات إضافية اعتمادًا على</p>\n <p>المسؤوليات.</p>\n <p>6. الإجازة / العطل</p>\n <p>6.1 يحق لك الحصول على إجازة غير رسمية مدتها 12 يومًا.</p>\n <p>6.2 يحق لك الحصول على إجازة مرضية مدفوعة الأجر لمدة 12 يوم عمل.</p>\n <p>6.3 تخطر الشركة بقائمة الإجازات المعلنة في بداية كل عام.</p>\n <p>7. طبيعة الواجبات</p>\n <p>ستقوم بأداء أفضل ما لديك من واجبات متأصلة في منصبك ومهام إضافية مثل الشركة</p>\n <p>قد يدعوك لأداء ، من وقت لآخر. واجباتك المحددة منصوص عليها في الجدول الثاني بهذه الرسالة.</p>\n <p>8. ممتلكات الشركة</p>\n <p>ستحافظ دائمًا على ممتلكات الشركة في حالة جيدة ، والتي قد يتم تكليفك بها للاستخدام الرسمي خلال فترة عملها</p>\n <p>عملك ، ويجب أن تعيد جميع هذه الممتلكات إلى الشركة قبل التخلي عن الرسوم الخاصة بك ، وإلا فإن التكلفة</p>\n <p>نفس الشيء سوف تسترده منك الشركة.</p>\n <p>9. الاقتراض / قبول الهدايا</p>\n <p>لن تقترض أو تقبل أي أموال أو هدية أو مكافأة أو تعويض مقابل مكاسبك الشخصية من أو تضع نفسك بأي طريقة أخرى</p>\n <p>بموجب التزام مالي تجاه أي شخص / عميل قد تكون لديك تعاملات رسمية معه.</p>\n <p>10. الإنهاء</p>\n <p>10.1 يمكن للشركة إنهاء موعدك ، دون أي سبب ، من خلال إعطائك ما لا يقل عن [إشعار] قبل أشهر</p>\n <p>إشعار خطي أو راتب بدلاً منه. لغرض هذا البند ، يقصد بالراتب المرتب الأساسي.</p>\n <p>10.2 إنهاء عملك مع الشركة ، دون أي سبب ، من خلال تقديم ما لا يقل عن إشعار الموظف</p>\n <p>أشهر الإخطار أو الراتب عن الفترة غير المحفوظة ، المتبقية بعد تعديل الإجازات المعلقة ، كما في التاريخ.</p>\n <p>10.3 تحتفظ الشركة بالحق في إنهاء عملك بإيجاز دون أي فترة إشعار أو مدفوعات إنهاء</p>\n <p>إذا كان لديه سبب معقول للاعتقاد بأنك مذنب بسوء السلوك أو الإهمال ، أو ارتكبت أي خرق جوهري لـ</p>\n <p>العقد ، أو تسبب في أي خسارة للشركة.</p>\n <p>10. 4 عند إنهاء عملك لأي سبب من الأسباب ، ستعيد إلى الشركة جميع ممتلكاتك ؛ المستندات و</p>\n <p>الأوراق الأصلية ونسخها ، بما في ذلك أي عينات ، وأدبيات ، وعقود ، وسجلات ، وقوائم ، ورسومات ، ومخططات ،</p>\n <p>الرسائل والملاحظات والبيانات وما شابه ذلك ؛ والمعلومات السرية التي بحوزتك أو تحت سيطرتك والمتعلقة بك</p>\n <p>التوظيف أو الشؤون التجارية للعملاء.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11.2 يجب عليك دائمًا الحفاظ على أعلى درجة من السرية والحفاظ على سرية السجلات والوثائق وغيرها</p>\n <p>المعلومات السرية المتعلقة بأعمال الشركة والتي قد تكون معروفة لك أو مخولة لك بأي وسيلة</p>\n <p>ولن تستخدم هذه السجلات والمستندات والمعلومات إلا بالطريقة المصرح بها حسب الأصول لصالح الشركة. إلى عن على</p>\n <p>أغراض هذا البند \"المعلومات السرية\" تعني المعلومات المتعلقة بأعمال الشركة وعملائها</p>\n <p>التي لا تتوفر لعامة الناس والتي قد تتعلمها أثناء عملك. هذا يشمل،</p>\n <p>على سبيل المثال لا الحصر ، المعلومات المتعلقة بالمنظمة وقوائم العملاء وسياسات التوظيف والموظفين والمعلومات</p>\n <p>حول منتجات الشركة وعملياتها بما في ذلك الأفكار والمفاهيم والإسقاطات والتكنولوجيا والكتيبات والرسم والتصاميم ،</p>\n <p>المواصفات وجميع الأوراق والسير الذاتية والسجلات والمستندات الأخرى التي تحتوي على هذه المعلومات السرية.</p>\n <p>11.3 لن تقوم في أي وقت بإزالة أي معلومات سرية من المكتب دون إذن.</p>\n\n <p>11.4 واجبك في الحماية وعدم الإفشاء</p>\n\n <p>تظل المعلومات السرية سارية بعد انتهاء أو إنهاء هذه الاتفاقية و / أو عملك مع الشركة.</p>\n\n <p>11.5 سوف يجعلك خرق شروط هذا البند عرضة للفصل بإجراءات موجزة بموجب الفقرة أعلاه بالإضافة إلى أي</p>\n\n <p>أي تعويض آخر قد يكون للشركة ضدك في القانون.</p>\n\n <p>12. الإخطارات</p>\n\n <p>يجوز لك إرسال إخطارات إلى الشركة على عنوان مكتبها المسجل. يمكن أن ترسل لك الشركة إشعارات على</p>\n\n <p>العنوان الذي أشرت إليه في السجلات الرسمية.</p>\n\n\n\n <p>13. تطبيق سياسة الشركة</p>\n\n <p>يحق للشركة تقديم إعلانات السياسة من وقت لآخر فيما يتعلق بمسائل مثل استحقاق الإجازة والأمومة</p>\n\n <p>الإجازة ، ومزايا الموظفين ، وساعات العمل ، وسياسات النقل ، وما إلى ذلك ، ويمكن تغييرها من وقت لآخر وفقًا لتقديرها الخاص.</p>\n\n <p>جميع قرارات سياسة الشركة هذه ملزمة لك ويجب أن تلغي هذه الاتفاقية إلى هذا الحد.</p>\n\n\n\n <p>14. القانون الحاكم / الاختصاص القضائي</p>\n\n <p>يخضع عملك في الشركة لقوانين الدولة. تخضع جميع النزاعات للاختصاص القضائي للمحكمة العليا</p>\n\n <p>غوجارات فقط.</p>\n\n\n\n <p>15. قبول عرضنا</p>\n\n <p>يرجى تأكيد قبولك لعقد العمل هذا من خلال التوقيع وإعادة النسخة المكررة.</p>\n\n\n\n <p>نرحب بكم ونتطلع إلى تلقي موافقتكم والعمل معكم.</p>\n\n\n\n <p>تفضلوا بقبول فائق الاحترام،</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (28, 'da', '<h3 style=\"text-align: center;\"><strong>Tilslutningsbrev</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Emne: Udnævnelse til stillingen som {designation}</p>\n\n\n\n\n\n\n\n <p>Kære {employee_name}</p>\n\n\n\n <p>Vi er glade for at kunne tilbyde dig stillingen som {designation} hos {app_name} \"Virksomheden\" på følgende vilkår og</p>\n\n <p>betingelser:</p>\n\n\n <p>1. Påbegyndelse af ansættelse</p>\n\n <p>Din ansættelse træder i kraft fra {start_date}</p>\n\n\n\n <p>2. Jobtitel</p>\n\n\n <p>Din jobtitel vil være {designation}.</p>\n\n\n\n <p>3. Løn</p>\n\n <p>Din løn og andre goder vil være som angivet i skema 1, hertil.</p>\n\n\n\n <p>4. Udstationeringssted</p>\n\n <p>Du vil blive slået op på {branch}. Du kan dog blive bedt om at arbejde på ethvert forretningssted, som virksomheden har, eller</p>\n\n <p>senere kan erhverve.</p>\n\n\n <p>5. Arbejdstimer</p>\n\n <p>De normale arbejdsdage er mandag til fredag. Du vil blive forpligtet til at arbejde i de timer, som er nødvendige for</p>\n\n <p>behørig varetagelse af dine pligter over for virksomheden. Den normale arbejdstid er fra {start_time} til {end_time}, og det er du</p>\n\n <p>forventes at arbejde ikke mindre end {total_hours} timer hver uge, og om nødvendigt yderligere timer afhængigt af din</p>\n\n <p>ansvar.</p>\n\n\n\n <p>6. Orlov/Ferie</p>\n\n <p>6.1 Du har ret til tilfældig ferie på 12 dage.</p>\n\n <p>6.2 Du har ret til 12 arbejdsdages sygefravær med løn.</p>\n\n <p>6.3 Virksomheden skal meddele en liste over erklærede helligdage i begyndelsen af hvert år.</p>\n\n\n\n <p>7. Arbejdsopgavernes art</p>\n\n <p>Du vil efter bedste evne udføre alle de opgaver, der er iboende i din stilling og sådanne yderligere opgaver som virksomheden</p>\n\n <p>kan opfordre dig til at optræde, fra tid til anden. Dine specifikke pligter er beskrevet i skema II hertil.</p>\n\n\n <p>8. Firmaejendom</p>\n\n <p>Du vil altid vedligeholde virksomhedens ejendom i god stand, som kan blive overdraget til dig til officiel brug i løbet af</p>\n\n <p>din ansættelse, og skal returnere al sådan ejendom til virksomheden, før du opgiver din afgift, i modsat fald vil omkostningerne</p>\n\n <p>af samme vil blive inddrevet fra dig af virksomheden.</p>\n\n\n\n <p>9. Lån/modtagelse af gaver</p>\n\n <p>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</p>\n\n <p>under en økonomisk forpligtelse over for enhver person/kunde, som du måtte have officielle forbindelser med.</p>\n\n <p>10. Opsigelse</p>\n\n <p>10.1 Din ansættelse kan opsiges af virksomheden uden nogen grund ved at give dig mindst [varsel] måneder før</p>\n\n <p>skriftligt varsel eller løn i stedet herfor. Ved løn forstås i denne paragraf grundløn.</p>\n\n <p>10.2 Du kan opsige dit ansættelsesforhold i virksomheden uden nogen grund ved at give mindst [Medarbejdermeddelelse]</p>\n\n <p>måneders forudgående varsel eller løn for den ikke-opsparede periode, tilbage efter regulering af afventende orlov, som på dato.</p>\n\n <p>10.3 Virksomheden forbeholder sig retten til at opsige dit ansættelsesforhold midlertidigt uden opsigelsesfrist eller opsigelsesbetaling</p>\n\n <p>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å</p>\n\n <p>kontrakt, eller forårsaget tab for virksomheden.</p>\n\n <p>10. 4 Ved ophør af din ansættelse uanset årsag, vil du returnere al ejendom til virksomheden; dokumenter, og</p>\n\n <p>papir, både originale og kopier heraf, inklusive prøver, litteratur, kontrakter, optegnelser, lister, tegninger, tegninger,</p>\n\n <p>breve, notater, data og lignende; og fortrolige oplysninger, i din besiddelse eller under din kontrol vedrørende din</p>\n\n <p>ansættelse eller til kunders forretningsforhold.</p>\n <p>11. Fortrolige oplysninger</p>\n\n <p>11. 1 Under din ansættelse i virksomheden vil du bruge al din tid, opmærksomhed og dygtighed efter bedste evne til</p>\n\n <p>sin virksomhed. Du må ikke, direkte eller indirekte, engagere eller associere dig med, være forbundet med, bekymret, ansat eller</p>\n\n <p>tid eller forfølge et hvilket som helst studieforløb uden forudgående tilladelse fra virksomheden. involveret i anden virksomhed eller</p>\n\n <p>aktiviteter eller enhver anden stilling eller arbejde på deltid eller forfølge ethvert studieforløb uden forudgående tilladelse fra</p>\n\n <p>Selskab.</p>\n <p>11.2 Du skal altid opretholde den højeste grad af fortrolighed og opbevare optegnelser, dokumenter og andre fortrolige oplysninger.</p>\n\n <p>Fortrolige oplysninger vedrørende virksomhedens virksomhed, som kan være kendt af dig eller betroet dig på nogen måde</p>\n\n <p>og du vil kun bruge sådanne optegnelser, dokumenter og oplysninger på en behørigt autoriseret måde i virksomhedens interesse. Til</p>\n\n <p>formålene med denne paragraf \"Fortrolige oplysninger\" betyder oplysninger om virksomhedens og dets kunders forretning</p>\n\n <p>som ikke er tilgængelig for offentligheden, og som du kan lære i løbet af din ansættelse. Dette inkluderer,</p>\n\n <p>men er ikke begrænset til information vedrørende organisationen, dens kundelister, ansættelsespolitikker, personale og information</p>\n\n <p>om virksomhedens produkter, processer, herunder ideer, koncepter, projektioner, teknologi, manualer, tegning, design,</p>\n\n <p>specifikationer og alle papirer, CVer, optegnelser og andre dokumenter, der indeholder sådanne fortrolige oplysninger.</p>\n\n <p>11.3 Du vil på intet tidspunkt fjerne fortrolige oplysninger fra kontoret uden tilladelse.</p>\n\n <p>11.4 Din pligt til at beskytte og ikke oplyse</p>\n\n <p>e Fortrolige oplysninger vil overleve udløbet eller opsigelsen af denne aftale og/eller din ansættelse hos virksomheden.</p>\n\n <p>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.</p>\n\n <p>andre retsmidler, som virksomheden måtte have mod dig i henhold til loven.</p>\n <p>12. Meddelelser</p>\n\n <p>Meddelelser kan gives af dig til virksomheden på dets registrerede kontoradresse. Meddelelser kan gives af virksomheden til dig på</p>\n\n <p>den adresse, du har angivet i de officielle optegnelser.</p>\n\n\n\n <p>13. Anvendelse af virksomhedens politik</p>\n\n <p>Virksomheden er berettiget til fra tid til anden at afgive politiske erklæringer vedrørende sager som ret til orlov, barsel</p>\n\n <p>orlov, ansattes ydelser, arbejdstider, overførselspolitikker osv., og kan ændre det samme fra tid til anden efter eget skøn.</p>\n\n <p>Alle sådanne politiske beslutninger fra virksomheden er bindende for dig og tilsidesætter denne aftale i det omfang.</p>\n\n\n\n <p>14. Gældende lov/Jurisdiktion</p>\n\n <p>Din ansættelse hos virksomheden er underlagt landets love. Alle tvister er underlagt High Courts jurisdiktion</p>\n\n <p>Kun Gujarat.</p>\n\n\n\n <p>15. Accept af vores tilbud</p>\n\n <p>Bekræft venligst din accept af denne ansættelseskontrakt ved at underskrive og returnere kopien.</p>\n\n\n\n <p>Vi byder dig velkommen og ser frem til at modtage din accept og til at arbejde sammen med dig.</p>\n\n\n\n <p>Venlig hilsen,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (29, 'de', '<h3 style=\"text-align: center;\"><strong>Beitrittsbrief</strong></h3>\n\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n\n <p>Betreff: Ernennung für die Stelle von {designation}</p>\n\n\n\n\n\n\n\n <p>Sehr geehrter {employee_name},</p>\n\n\n\n <p>Wir freuen uns, Ihnen die Position von {designation} bei {app_name} dem „Unternehmen“ zu den folgenden Bedingungen anbieten zu können</p>\n\n <p>Bedingungen:</p>\n\n\n <p>1. Aufnahme des Arbeitsverhältnisses</p>\n\n <p>Ihre Anstellung gilt ab dem {start_date}</p>\n\n\n <p>2. Berufsbezeichnung</p>\n\n <p>Ihre Berufsbezeichnung lautet {designation}.</p>\n\n\n <p>3. Gehalt</p>\n\n <p>Ihr Gehalt und andere Leistungen sind in Anhang 1 zu diesem Dokument aufgeführt.</p>\n\n\n <p>4. Postort</p>\n\n <p>Sie werden bei {branch} eingestellt. Es kann jedoch erforderlich sein, dass Sie an jedem Geschäftssitz arbeiten, den das Unternehmen hat, oder</p>\n\n <p>später erwerben kann.</p>\n\n\n <p>5. Arbeitszeit</p>\n <p>Die normalen Arbeitstage sind Montag bis Freitag. Sie müssen so viele Stunden arbeiten, wie es für die erforderlich ist</p>\n <p>ordnungsgemäße Erfüllung Ihrer Pflichten gegenüber dem Unternehmen. Die normalen Arbeitszeiten sind von {start_time} bis {end_time} und Sie sind es</p>\n <p>voraussichtlich nicht weniger als {total_hours} Stunden pro Woche arbeiten, und falls erforderlich, abhängig von Ihren zusätzlichen Stunden</p>\n <p>Verantwortlichkeiten.</p>\n\n\n\n <p>6. Urlaub/Urlaub</p>\n\n <p>6.1 Sie haben Anspruch auf Freizeiturlaub von 12 Tagen.</p>\n\n <p>6.2 Sie haben Anspruch auf 12 Arbeitstage bezahlten Krankenurlaub.</p>\n\n <p>6.3 Das Unternehmen teilt zu Beginn jedes Jahres eine Liste der erklärten Feiertage mit.</p>\n\n\n\n <p>7. Art der Pflichten</p>\n\n <p>Sie werden alle Aufgaben, die mit Ihrer Funktion verbunden sind, sowie alle zusätzlichen Aufgaben als Unternehmen nach besten Kräften erfüllen</p>\n\n <p>kann Sie von Zeit zu Zeit zur Leistung auffordern. Ihre spezifischen Pflichten sind in Anhang II zu diesem Dokument aufgeführt.</p>\n\n\n\n <p>8. Firmeneigentum</p>\n\n <p>Sie werden das Firmeneigentum, das Ihnen im Laufe der Zeit für offizielle Zwecke anvertraut werden kann, stets in gutem Zustand halten</p>\n\n <p>Ihrer Anstellung und muss all dieses Eigentum an das Unternehmen zurückgeben, bevor Sie Ihre Gebühr aufgeben, andernfalls die Kosten</p>\n\n <p>derselben werden von der Gesellschaft von Ihnen zurückgefordert.</p>\n\n\n\n <p>9. Leihen/Annehmen von Geschenken</p>\n\n <p>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</p>\n\n <p>unter finanzieller Verpflichtung gegenüber Personen/Kunden, mit denen Sie möglicherweise dienstliche Beziehungen unterhalten.</p>\n\n <p>10. Kündigung</p>\n\n <p>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</p>\n\n <p>schriftliche Kündigung oder Gehalt statt dessen. Gehalt im Sinne dieser Klausel bedeutet Grundgehalt.</p>\n\n <p>10.2 Sie können Ihre Anstellung beim Unternehmen ohne Angabe von Gründen kündigen, indem Sie mindestens [Mitarbeitermitteilung]</p>\n\n <p>Kündigungsfrist von Monaten oder Gehalt für den nicht angesparten Zeitraum, der nach Anpassung der anstehenden Urlaubstage übrig bleibt, zum Stichtag.</p>\n\n <p>10.3 Das Unternehmen behält sich das Recht vor, Ihr Arbeitsverhältnis ohne Kündigungsfrist oder Abfindungszahlung fristlos zu kündigen</p>\n\n <p>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</p>\n\n <p>oder dem Unternehmen Verluste verursacht haben.</p>\n\n <p>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</p>\n\n <p>Papier, sowohl Original als auch Kopien davon, einschließlich aller Muster, Literatur, Verträge, Aufzeichnungen, Listen, Zeichnungen, Blaupausen,</p>\n\n <p>Briefe, Notizen, Daten und dergleichen; und vertrauliche Informationen, die sich in Ihrem Besitz oder unter Ihrer Kontrolle befinden und sich auf Sie beziehen</p>\n\n <p>Beschäftigung oder für die geschäftlichen Angelegenheiten der Kunden.</p>\n\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (30, 'en', '<h3 style=\"text-align: center;\">Joining Letter</h3>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>Subject: Appointment for the post of {designation}</p>\n <p>Dear {employee_name},</p>\n <p>We are pleased to offer you the position of {designation} with {app_name} theCompany on the following terms and</p>\n <p>conditions:</p>\n <p>1. Commencement of employment</p>\n <p>Your employment will be effective, as of {start_date}</p>\n <p>2. Job title</p>\n <p>Your job title will be{designation}.</p>\n <p>3. Salary</p>\n <p>Your salary and other benefits will be as set out in Schedule 1, hereto.</p>\n <p>4. Place of posting</p>\n <p>You will be posted at {branch}. You may however be required to work at any place of business which the Company has, or</p>\n <p>may later acquire.</p>\n <p>5. Hours of Work</p>\n <p>The normal working days are Monday through Friday. You will be required to work for such hours as necessary for the</p>\n <p>proper discharge of your duties to the Company. The normal working hours are from {start_time} to {end_time} and you are</p>\n <p>expected to work not less than {total_hours} hours each week, and if necessary for additional hours depending on your</p>\n <p>responsibilities.</p>\n <p>6. Leave/Holidays</p>\n <p>6.1 You are entitled to casual leave of 12 days.</p>\n <p>6.2 You are entitled to 12 working days of paid sick leave.</p>\n <p>6.3 The Company shall notify a list of declared holidays at the beginning of each year.</p>\n <p>7. Nature of duties</p>\n <p>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</p>\n <p>may call upon you to perform, from time to time. Your specific duties are set out in Schedule II hereto.</p>\n <p>8. Company property</p>\n <p>You will always maintain in good condition Company property, which may be entrusted to you for official use during the course of</p>\n <p>your employment, and shall return all such property to the Company prior to relinquishment of your charge, failing which the cost</p>\n <p>of the same will be recovered from you by the Company.</p>\n <p>9. Borrowing/accepting gifts</p>\n <p>You will not borrow or accept any money, gift, reward, or compensation for your personal gains from or otherwise place yourself</p>\n <p>under pecuniary obligation to any person/client with whom you may be having official dealings.</p>\n <p>10. Termination</p>\n <p>10.1 Your appointment can be terminated by the Company, without any reason, by giving you not less than [Notice] months prior</p>\n <p>notice in writing or salary in lieu thereof. For the purpose of this clause, salary shall mean basic salary.</p>\n <p>10.2 You may terminate your employment with the Company, without any cause, by giving no less than [Employee Notice]</p>\n <p>months prior notice or salary for the unsaved period, left after adjustment of pending leaves, as on date.</p>\n <p>10.3 The Company reserves the right to terminate your employment summarily without any notice period or termination payment</p>\n <p>if it has reasonable ground to believe you are guilty of misconduct or negligence, or have committed any fundamental breach of</p>\n <p>contract, or caused any loss to the Company.</p>\n <p>10. 4 On the termination of your employment for whatever reason, you will return to the Company all property; documents, and</p>\n <p>paper, both original and copies thereof, including any samples, literature, contracts, records, lists, drawings, blueprints,</p>\n <p>letters, notes, data and the like; and Confidential Information, in your possession or under your control relating to your</p>\n <p>employment or to clients business affairs.</p>\n <p>11. Confidential Information</p>\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n <p>Company.</p>\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other</p>\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n <p>the purposes of this clauseConfidential Information means information about the Companys business and that of its customers</p>\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n <p>about the Companys products, processes including ideas, concepts, projections, technology, manuals, drawing, designs,</p>\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n <p>11.4 Your duty to safeguard and not disclos</p>\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n <p>the address intimated by you in the official records.</p>\n <p>13. Applicability of Company Policy</p>\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n <p>leave, employees benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n <p>14. Governing Law/Jurisdiction</p>\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n <p>Gujarat only.</p>\n <p>15. Acceptance of our offer</p>\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n <p>Yours Sincerely,</p>\n <p>{app_name}</p>\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (31, 'es', '<h3 style=\"text-align: center;\"><strong>Carta de unión</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Asunto: Nombramiento para el puesto de {designation}</p>\n\n\n\n <p>Estimado {employee_name},</p>\n\n <p>Nos complace ofrecerle el puesto de {designation} con {app_name}, la Compañía en los siguientes términos y</p>\n\n <p>condiciones:</p>\n\n\n <p>1. Comienzo del empleo</p>\n\n <p>Su empleo será efectivo a partir del {start_date}</p>\n\n\n <p>2. Título del trabajo</p>\n <p>El título de su trabajo será {designation}.</p>\n\n <p>3. Salario</p>\n\n <p>Su salario y otros beneficios serán los establecidos en el Anexo 1 del presente.</p>\n\n\n <p>4. Lugar de destino</p>\n <p>Se le publicará en {branch}. Sin embargo, es posible que deba trabajar en cualquier lugar de negocios que tenga la Compañía, o</p>\n\n <p>puede adquirir posteriormente.</p>\n\n\n\n <p>5. Horas de trabajo</p>\n\n <p>Los días normales de trabajo son de lunes a viernes. Se le pedirá que trabaje las horas que sean necesarias para el</p>\n\n <p>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á</p>\n\n <p>se espera que trabaje no menos de {total_hours} horas cada semana y, si es necesario, horas adicionales dependiendo de su</p>\n\n <p>responsabilidades.</p>\n\n\n\n <p>6. Licencia/Vacaciones</p>\n\n <p>6.1 Tiene derecho a un permiso eventual de 12 días.</p>\n\n <p>6.2 Tiene derecho a 12 días laborables de baja por enfermedad remunerada.</p>\n\n <p>6.3 La Compañía deberá notificar una lista de días festivos declarados al comienzo de cada año.</p>\n\n\n\n <p>7. Naturaleza de los deberes</p>\n\n <p>Desempeñará lo mejor que pueda todas las funciones inherentes a su puesto y aquellas funciones adicionales que la empresa</p>\n\n <p>puede pedirte que actúes, de vez en cuando. Sus deberes específicos se establecen en el Anexo II del presente.</p>\n\n\n\n <p>8. Propiedad de la empresa</p>\n\n <p>Siempre mantendrá en buenas condiciones la propiedad de la Compañía, que se le puede confiar para uso oficial durante el curso de</p>\n\n <p>su empleo, y devolverá todos esos bienes a la Compañía antes de renunciar a su cargo, en caso contrario, el costo</p>\n\n <p>de la misma será recuperada de usted por la Compañía.</p>\n\n\n\n <p>9. Tomar prestado/aceptar regalos</p>\n\n <p>No pedirá prestado ni aceptará dinero, obsequios, recompensas o compensaciones por sus ganancias personales o se colocará de otra manera</p>\n\n <p>bajo obligación pecuniaria a cualquier persona/cliente con quien pueda tener tratos oficiales.</p>\n <p>10. Terminación</p>\n\n <p>10.1 Su nombramiento puede ser rescindido por la Compañía, sin ningún motivo, al darle no menos de [Aviso] meses antes</p>\n\n <p>aviso por escrito o salario en su lugar. Para los efectos de esta cláusula, se entenderá por salario el salario base.</p>\n\n <p>10.2 Puede rescindir su empleo con la Compañía, sin ninguna causa, dando no menos de [Aviso al empleado]</p>\n\n <p>meses de preaviso o salario por el período no ahorrado, remanente después del ajuste de licencias pendientes, a la fecha.</p>\n\n <p>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</p>\n\n <p>si tiene motivos razonables para creer que usted es culpable de mala conducta o negligencia, o ha cometido una violación fundamental de</p>\n\n <p>contrato, o causado cualquier pérdida a la Compañía.</p>\n\n <p>10. 4 A la terminación de su empleo por cualquier motivo, devolverá a la Compañía todos los bienes; documentos, y</p>\n\n <p>papel, tanto en original como en copia del mismo, incluyendo cualquier muestra, literatura, contratos, registros, listas, dibujos, planos,</p>\n\n <p>cartas, notas, datos y similares; e Información confidencial, en su posesión o bajo su control en relación con su</p>\n\n <p>empleo o a los asuntos comerciales de los clientes.</p>\n <p>11. Información confidencial</p>\n\n <p>11. 1 Durante su empleo en la Compañía, dedicará todo su tiempo, atención y habilidad lo mejor que pueda para</p>\n\n <p>son negocios. Usted no deberá, directa o indirectamente, comprometerse o asociarse con, estar conectado, interesado, empleado o</p>\n\n <p>tiempo o seguir cualquier curso de estudio, sin el permiso previo de la Compañía. participar en cualquier otro negocio o</p>\n\n <p>actividades o cualquier otro puesto o trabajo a tiempo parcial o seguir cualquier curso de estudio, sin el permiso previo de la</p>\n\n <p>Compañía.</p>\n\n <p>11.2 Siempre debe mantener el más alto grado de confidencialidad y mantener como confidenciales los registros, documentos y otros</p>\n\n <p>Información confidencial relacionada con el negocio de la Compañía que usted pueda conocer o confiarle por cualquier medio</p>\n\n <p>y utilizará dichos registros, documentos e información solo de manera debidamente autorizada en interés de la Compañía. Para</p>\n\n <p>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.</p>\n\n <p>que no está disponible para el público en general y que usted puede aprender en el curso de su empleo. Esto incluye,</p>\n\n <p>pero no se limita a, información relacionada con la organización, sus listas de clientes, políticas de empleo, personal e información</p>\n\n <p>sobre los productos de la Compañía, procesos que incluyen ideas, conceptos, proyecciones, tecnología, manuales, dibujos, diseños,</p>\n\n <p>especificaciones, y todos los papeles, currículos, registros y otros documentos que contengan dicha Información Confidencial.</p>\n\n <p>11.3 En ningún momento, sacará ninguna Información Confidencial de la oficina sin permiso.</p>\n\n <p>11.4 Su deber de salvaguardar y no divulgar</p>\n\n <p>La Información Confidencial sobrevivirá a la expiración o terminación de este Acuerdo y/o su empleo con la Compañía.</p>\n\n <p>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</p>\n\n <p>otro recurso que la Compañía pueda tener contra usted por ley.</p>\n <p>12. Avisos</p>\n\n <p>Usted puede enviar notificaciones a la Compañía a su domicilio social. La Compañía puede enviarle notificaciones a usted en</p>\n\n <p>la dirección indicada por usted en los registros oficiales.</p>\n\n\n\n <p>13. Aplicabilidad de la política de la empresa</p>\n\n <p>La Compañía tendrá derecho a hacer declaraciones de política de vez en cuando relacionadas con asuntos como el derecho a licencia, maternidad</p>\n\n <p>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.</p>\n\n <p>Todas las decisiones políticas de la Compañía serán vinculantes para usted y anularán este Acuerdo en esa medida.</p>\n\n\n\n <p>14. Ley aplicable/Jurisdicción</p>\n\n <p>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</p>\n\n <p>Sólo Gujarat.</p>\n\n\n\n <p>15. Aceptación de nuestra oferta</p>\n\n <p>Por favor, confirme su aceptación de este Contrato de Empleo firmando y devolviendo el duplicado.</p>\n\n\n\n <p>Le damos la bienvenida y esperamos recibir su aceptación y trabajar con usted.</p>\n\n\n\n <p>Tuyo sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (32, 'fr', '<h3 style=\"text-align: center;\">Lettre dadhésion</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n <p>Objet : Nomination pour le poste de {designation}</p>\n\n\n\n <p>Cher {employee_name},</p>\n\n\n <p>Nous sommes heureux de vous proposer le poste de {designation} avec {app_name} la \"Société\" selon les conditions suivantes et</p>\n\n <p>les conditions:</p>\n\n <p>1. Entrée en fonction</p>\n\n <p>Votre emploi sera effectif à partir du {start_date}</p>\n\n\n\n <p>2. Intitulé du poste</p>\n\n <p>Votre titre de poste sera {designation}.</p>\n\n\n\n <p>3. Salaire</p>\n\n <p>Votre salaire et vos autres avantages seront tels quindiqués à lannexe 1 ci-jointe.</p>\n\n\n <p>4. Lieu de détachement</p>\n <p>Vous serez affecté à {branch}. Vous pouvez cependant être tenu de travailler dans nimporte quel lieu daffaires que la Société a, ou</p>\n\n <p>pourra acquérir plus tard.</p>\n\n\n\n <p>5. Heures de travail</p>\n\n <p>Les jours ouvrables normaux sont du lundi au vendredi. Vous devrez travailler les heures nécessaires à la</p>\n\n <p>lexercice correct de vos fonctions envers la Société. Les heures normales de travail vont de {start_time} à {end_time} et vous êtes</p>\n\n <p>devrait travailler au moins {total_hours} heures par semaine, et si nécessaire des heures supplémentaires en fonction de votre</p>\n\n <p>responsabilités.</p>\n\n <p>6. Congés/Vacances</p>\n\n <p>6.1 Vous avez droit à un congé occasionnel de 12 jours.</p>\n\n <p>6.2 Vous avez droit à 12 jours ouvrables de congé de maladie payé.</p>\n\n <p>6.3 La Société communiquera une liste des jours fériés déclarés au début de chaque année.</p>\n\n\n\n <p>7. Nature des fonctions</p>\n\n <p>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</p>\n\n <p>peut faire appel à vous pour effectuer, de temps à autre. Vos fonctions spécifiques sont énoncées à lannexe II ci-jointe.</p>\n\n\n\n <p>8. Biens sociaux</p>\n\n <p>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</p>\n\n <p>votre emploi, et doit restituer tous ces biens à la Société avant labandon de votre charge, à défaut de quoi le coût</p>\n\n <p>de même seront récupérés auprès de vous par la Société.</p>\n\n\n\n <p>9. Emprunter/accepter des cadeaux</p>\n\n <p>Vous nemprunterez ni naccepterez dargent, de cadeau, de récompense ou de compensation pour vos gains personnels ou vous placerez autrement</p>\n\n <p>sous obligation pécuniaire envers toute personne/client avec qui vous pourriez avoir des relations officielles.</p>\n <p>10. Résiliation</p>\n\n <p>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</p>\n\n <p>un préavis écrit ou un salaire en tenant lieu. Aux fins de la présente clause, salaire sentend du salaire de base.</p>\n\n <p>10.2 Vous pouvez résilier votre emploi au sein de la Société, sans motif, en donnant au moins [Avis à lemployé]</p>\n\n <p>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.</p>\n\n <p>10.3 La Société se réserve le droit de résilier votre emploi sans préavis ni indemnité de licenciement.</p>\n\n <p>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</p>\n\n <p>contrat, ou causé une perte à la Société.</p>\n\n <p>10. 4 À la fin de votre emploi pour quelque raison que ce soit, vous restituerez à la Société tous les biens ; document, et</p>\n\n <p>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,</p>\n\n <p>lettres, notes, données et similaires; et Informations confidentielles, en votre possession ou sous votre contrôle relatives à votre</p>\n\n <p>lemploi ou aux affaires commerciales des clients.</p>\n <p>11. Informations confidentielles</p>\n\n <p>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</p>\n\n <p>son affaire. Vous ne devez pas, directement ou indirectement, vous engager ou vous associer à, être lié à, concerné, employé ou</p>\n\n <p>temps ou poursuivre quelque programme détudes que ce soit, sans lautorisation préalable de la Société. engagé dans toute autre entreprise ou</p>\n\n <p>activités ou tout autre poste ou travail à temps partiel ou poursuivre des études quelconques, sans lautorisation préalable du</p>\n\n <p>Compagnie.</p>\n\n <p>11.2 Vous devez toujours maintenir le plus haut degré de confidentialité et garder confidentiels les dossiers, documents et autres</p>\n\n <p>Informations confidentielles relatives à lactivité de la Société dont vous pourriez avoir connaissance ou qui vous seraient confiées par tout moyen</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>qui nest pas accessible au grand public et dont vous pourriez avoir connaissance dans le cadre de votre emploi. Ceci comprend,</p>\n\n <p>mais sans sy limiter, les informations relatives à lorganisation, ses listes de clients, ses politiques demploi, son personnel et les informations</p>\n\n <p>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,</p>\n\n <p>spécifications, et tous les papiers, curriculum vitae, dossiers et autres documents contenant de telles informations confidentielles.</p>\n\n <p>11.3 À aucun moment, vous ne retirerez des informations confidentielles du bureau sans autorisation.</p>\n\n <p>11.4 Votre devoir de protéger et de ne pas divulguer</p>\n\n <p>Les Informations confidentielles survivront à lexpiration ou à la résiliation du présent Contrat et/ou à votre emploi au sein de la Société.</p>\n\n <p>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</p>\n\n <p>autre recours que la Société peut avoir contre vous en droit.</p>\n <p>12. Avis</p>\n\n <p>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é à</p>\n\n <p>ladresse que vous avez indiquée dans les registres officiels.</p>\n\n\n\n <p>13. Applicabilité de la politique de lentreprise</p>\n\n <p>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é</p>\n\n <p>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.</p>\n\n <p>Toutes ces décisions politiques de la Société vous lieront et prévaudront sur le présent Contrat dans cette mesure.</p>\n\n\n\n <p>14. Droit applicable/juridiction</p>\n\n <p>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</p>\n\n <p>Gujarat uniquement.</p>\n\n\n\n <p>15. Acceptation de notre offre</p>\n\n <p>Veuillez confirmer votre acceptation de ce contrat de travail en signant et en renvoyant le duplicata.</p>\n\n\n\n <p>Nous vous souhaitons la bienvenue et nous nous réjouissons de recevoir votre acceptation et de travailler avec vous.</p>\n\n\n\n <p>Cordialement,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (33, 'id', '<h3 style=\"text-align: center;\">Surat Bergabung</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Perihal: Pengangkatan untuk jabatan {designation}</p>\n\n\n <p>{employee_name} yang terhormat,</p>\n\n <p>Kami dengan senang hati menawarkan kepada Anda, posisi {designation} dengan {app_name} sebagai Perusahaan dengan persyaratan dan</p>\n\n <p>kondisi:</p>\n\n\n\n <p>1. Mulai bekerja</p>\n\n <p>Pekerjaan Anda akan efektif, mulai {start_date}</p>\n\n\n <p>2. Jabatan</p>\n <p>Jabatan Anda adalah {designation}.</p>\n\n <p>3. Gaji</p>\n <p>Gaji Anda dan tunjangan lainnya akan diatur dalam Jadwal 1, di sini.</p>\n\n\n <p>4. Tempat posting</p>\n\n <p>Anda akan diposkan di {branch}. Namun Anda mungkin diminta untuk bekerja di tempat bisnis mana pun yang dimiliki Perusahaan, atau</p>\n\n <p>nantinya dapat memperoleh.</p>\n\n\n\n <p>5. Jam Kerja</p>\n\n <p>Hari kerja normal adalah Senin sampai Jumat. Anda akan diminta untuk bekerja selama jam-jam yang diperlukan untuk</p>\n\n <p>pelaksanaan tugas Anda dengan benar di Perusahaan. Jam kerja normal adalah dari {start_time} hingga {end_time} dan Anda</p>\n\n <p>diharapkan bekerja tidak kurang dari {total_hours} jam setiap minggu, dan jika perlu untuk jam tambahan tergantung pada</p>\n\n <p>tanggung jawab.</p>\n\n\n\n <p>6. Cuti/Libur</p>\n\n <p>6.1 Anda berhak atas cuti biasa selama 12 hari.</p>\n\n <p>6.2 Anda berhak atas 12 hari kerja cuti sakit berbayar.</p>\n\n <p>6.3 Perusahaan akan memberitahukan daftar hari libur yang diumumkan pada awal setiap tahun.</p>\n\n\n\n <p>7. Sifat tugas</p>\n\n <p>Anda akan melakukan yang terbaik dari kemampuan Anda semua tugas yang melekat pada jabatan Anda dan tugas tambahan seperti perusahaan</p>\n\n <p>dapat memanggil Anda untuk tampil, dari waktu ke waktu. Tugas khusus Anda ditetapkan dalam Jadwal II di sini.</p>\n\n\n\n <p>8. Properti perusahaan</p>\n\n <p>Anda akan selalu menjaga properti Perusahaan dalam kondisi baik, yang dapat dipercayakan kepada Anda untuk penggunaan resmi selama</p>\n\n <p>pekerjaan Anda, dan akan mengembalikan semua properti tersebut kepada Perusahaan sebelum melepaskan biaya Anda, jika tidak ada biayanya</p>\n\n <p>yang sama akan dipulihkan dari Anda oleh Perusahaan.</p>\n\n\n\n <p>9. Meminjam/menerima hadiah</p>\n\n <p>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</p>\n\n <p>di bawah kewajiban uang kepada setiap orang/klien dengan siapa Anda mungkin memiliki hubungan resmi.</p>\n <p>10. Penghentian</p>\n\n <p>10.1 Penunjukan Anda dapat diakhiri oleh Perusahaan, tanpa alasan apa pun, dengan memberi Anda tidak kurang dari [Pemberitahuan] bulan sebelumnya</p>\n\n <p>pemberitahuan secara tertulis atau gaji sebagai penggantinya. Untuk maksud pasal ini, gaji berarti gaji pokok.</p>\n\n <p>10.2 Anda dapat memutuskan hubungan kerja Anda dengan Perusahaan, tanpa alasan apa pun, dengan memberikan tidak kurang dari [Pemberitahuan Karyawan]</p>\n\n <p>pemberitahuan atau gaji bulan sebelumnya untuk periode yang belum disimpan, yang tersisa setelah penyesuaian cuti yang tertunda, pada tanggal.</p>\n\n <p>10.3 Perusahaan berhak untuk mengakhiri hubungan kerja Anda dengan segera tanpa pemberitahuan jangka waktu atau pembayaran pemutusan hubungan kerja</p>\n\n <p>jika memiliki alasan yang masuk akal untuk meyakini bahwa Anda bersalah atas kesalahan atau kelalaian, atau telah melakukan pelanggaran mendasar apa pun terhadap</p>\n\n <p>kontrak, atau menyebabkan kerugian bagi Perusahaan.</p>\n\n <p>10. 4 Pada pemutusan hubungan kerja Anda karena alasan apa pun, Anda akan mengembalikan semua properti kepada Perusahaan; dokumen, dan</p>\n\n <p>kertas, baik asli maupun salinannya, termasuk contoh, literatur, kontrak, catatan, daftar, gambar, cetak biru,</p>\n\n <p>surat, catatan, data dan sejenisnya; dan Informasi Rahasia, yang Anda miliki atau di bawah kendali Anda terkait dengan</p>\n\n <p>pekerjaan atau untuk urusan bisnis klien.</p>\n <p>11. Informasi Rahasia</p>\n\n <p>11. 1 Selama bekerja di Perusahaan, Anda akan mencurahkan seluruh waktu, perhatian, dan keterampilan Anda sebaik mungkin untuk</p>\n\n <p>bisnisnya. Anda tidak boleh, secara langsung atau tidak langsung, terlibat atau mengasosiasikan diri Anda dengan, terhubung dengan, terkait, dipekerjakan, atau</p>\n\n <p>waktu atau mengikuti program studi apapun, tanpa izin sebelumnya dari Perusahaan.terlibat dalam bisnis lain atau</p>\n\n <p>kegiatan atau pos atau pekerjaan paruh waktu lainnya atau mengejar program studi apa pun, tanpa izin sebelumnya dari</p>\n\n <p>Perusahaan.</p>\n\n <p>11.2 Anda harus selalu menjaga tingkat kerahasiaan tertinggi dan merahasiakan catatan, dokumen, dan lainnya</p>\n\n <p>Informasi Rahasia yang berkaitan dengan bisnis Perusahaan yang mungkin Anda ketahui atau rahasiakan kepada Anda dengan cara apa pun</p>\n\n <p>dan Anda akan menggunakan catatan, dokumen, dan informasi tersebut hanya dengan cara yang sah untuk kepentingan Perusahaan. Untuk</p>\n\n <p>tujuan klausul ini Informasi Rahasia berarti informasi tentang bisnis Perusahaan dan pelanggannya</p>\n\n <p>yang tidak tersedia untuk masyarakat umum dan yang mungkin Anda pelajari selama masa kerja Anda. Ini termasuk,</p>\n\n <p>tetapi tidak terbatas pada, informasi yang berkaitan dengan organisasi, daftar pelanggannya, kebijakan ketenagakerjaan, personel, dan informasi</p>\n\n <p>tentang produk Perusahaan, proses termasuk ide, konsep, proyeksi, teknologi, manual, gambar, desain,</p>\n\n <p>spesifikasi, dan semua makalah, resume, catatan dan dokumen lain yang berisi Informasi Rahasia tersebut.</p>\n\n <p>11.3 Kapan pun Anda akan menghapus Informasi Rahasia apa pun dari kantor tanpa izin.</p>\n\n <p>11.4 Kewajiban Anda untuk melindungi dan tidak mengungkapkan</p>\n\n <p>e Informasi Rahasia akan tetap berlaku setelah berakhirnya atau pengakhiran Perjanjian ini dan/atau hubungan kerja Anda dengan Perusahaan.</p>\n\n <p>11.5 Pelanggaran terhadap ketentuan klausul ini akan membuat Anda bertanggung jawab atas pemecatan singkat berdasarkan klausul di atas selain dari:</p>\n\n <p>upaya hukum lain yang mungkin dimiliki Perusahaan terhadap Anda secara hukum.</p>\n <p>12. Pemberitahuan</p>\n\n <p>Pemberitahuan dapat diberikan oleh Anda kepada Perusahaan di alamat kantor terdaftarnya. Pemberitahuan dapat diberikan oleh Perusahaan kepada Anda di</p>\n\n <p>alamat yang diberitahukan oleh Anda dalam catatan resmi.</p>\n\n\n\n <p>13. Keberlakuan Kebijakan Perusahaan</p>\n\n <p>Perusahaan berhak untuk membuat pernyataan kebijakan dari waktu ke waktu berkaitan dengan hal-hal seperti hak cuti, persalinan</p>\n\n <p>cuti, tunjangan karyawan, jam kerja, kebijakan transfer, dll., dan dapat mengubahnya dari waktu ke waktu atas kebijakannya sendiri.</p>\n\n <p>Semua keputusan kebijakan Perusahaan tersebut akan mengikat Anda dan akan mengesampingkan Perjanjian ini sejauh itu.</p>\n\n\n\n <p>14. Hukum/Yurisdiksi yang Mengatur</p>\n\n <p>Pekerjaan Anda dengan Perusahaan tunduk pada undang-undang Negara. Semua perselisihan akan tunduk pada yurisdiksi Pengadilan Tinggi</p>\n\n <p>Gujarat saja.</p>\n\n\n\n <p>15. Penerimaan penawaran kami</p>\n\n <p>Harap konfirmasikan penerimaan Anda atas Kontrak Kerja ini dengan menandatangani dan mengembalikan salinan duplikatnya.</p>\n\n\n\n <p>Kami menyambut Anda dan berharap untuk menerima penerimaan Anda dan bekerja sama dengan Anda.</p>\n\n\n\n <p>Dengan hormat,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (34, 'it', '<h3 style=\"text-align: center;\">Lettera di adesione</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Oggetto: Appuntamento alla carica di {designation}</p>\n\n\n <p>Gentile {employee_name},</p>\n\n <p>Siamo lieti di offrirti la posizione di {designation} con {app_name} la \"Società\" alle seguenti condizioni e</p>\n\n <p>condizioni:</p>\n\n\n <p>1. Inizio del rapporto di lavoro</p>\n\n <p>Il tuo impiego sarà effettivo a partire da {start_date}</p>\n\n\n\n <p>2. Titolo di lavoro</p>\n\n <p>Il tuo titolo di lavoro sarà {designation}.</p>\n\n <p>3. Stipendio</p>\n\n <p>Il tuo stipendio e altri benefici saranno come indicato nellAllegato 1, qui di seguito.</p>\n\n\n\n <p>4. Luogo di invio</p>\n\n <p>Sarai inviato a {branch}. Tuttavia, potrebbe essere richiesto di lavorare in qualsiasi luogo di attività che la Società ha, o</p>\n\n <p>potrà successivamente acquisire.</p>\n\n\n\n <p>5. Orario di lavoro</p>\n\n <p>I normali giorni lavorativi sono dal lunedì al venerdì. Ti verrà richiesto di lavorare per le ore necessarie per il</p>\n\n <p>corretto adempimento dei propri doveri nei confronti della Società. Lorario di lavoro normale va da {start_time} a {end_time} e tu lo sei</p>\n\n <p>dovrebbe lavorare non meno di {total_hours} ore ogni settimana e, se necessario, per ore aggiuntive a seconda del tuo</p>\n\n <p>responsabilità.</p>\n\n\n\n <p>6. Permessi/Festività</p>\n\n <p>6.1 Hai diritto a un congedo occasionale di 12 giorni.</p>\n\n <p>6.2 Hai diritto a 12 giorni lavorativi di congedo per malattia retribuito.</p>\n\n <p>6.3 La Società comunica allinizio di ogni anno un elenco delle festività dichiarate.</p>\n\n\n\n <p>7. Natura degli incarichi</p>\n\n <p>Eseguirai al meglio delle tue capacità tutti i compiti inerenti al tuo incarico e compiti aggiuntivi come lazienda</p>\n\n <p>può invitarti a esibirti, di tanto in tanto. I tuoi doveri specifici sono stabiliti nellAllegato II del presente documento.</p>\n\n\n\n <p>8. Proprietà aziendale</p>\n\n <p>Manterrete sempre in buono stato i beni dellAzienda, che nel corso dellanno potrebbero esservi affidati per uso ufficiale</p>\n\n <p>il tuo impiego, e restituirà tutte queste proprietà alla Società prima della rinuncia al tuo addebito, in caso contrario il costo</p>\n\n <p>degli stessi saranno da voi recuperati dalla Società.</p>\n\n\n\n <p>9. Prendere in prestito/accettare regali</p>\n\n <p>Non prenderai in prestito né accetterai denaro, dono, ricompensa o compenso per i tuoi guadagni personali da o altrimenti collocato te stesso</p>\n\n <p>sotto obbligazione pecuniaria nei confronti di qualsiasi persona/cliente con cui potresti avere rapporti ufficiali.</p>\n <p>10. Cessazione</p>\n\n <p>10.1 Il tuo incarico può essere risolto dalla Società, senza alcun motivo, dandoti non meno di [Avviso] mesi prima</p>\n\n <p>avviso scritto o stipendio in sostituzione di esso. Ai fini della presente clausola, per stipendio si intende lo stipendio base.</p>\n\n <p>10.2 È possibile terminare il proprio rapporto di lavoro con la Società, senza alcuna causa, fornendo non meno di [Avviso per il dipendente]</p>\n\n <p>mesi di preavviso o stipendio per il periodo non risparmiato, lasciato dopo ladeguamento delle ferie pendenti, come alla data.</p>\n\n <p>10.3 La Società si riserva il diritto di terminare il rapporto di lavoro sommariamente senza alcun periodo di preavviso o pagamento di cessazione</p>\n\n <p>se ha fondati motivi per ritenere che tu sia colpevole di cattiva condotta o negligenza, o abbia commesso una violazione fondamentale</p>\n\n <p>contratto, o ha causato danni alla Società.</p>\n\n <p>10. 4 Alla cessazione del rapporto di lavoro per qualsiasi motivo, restituirete alla Società tutti i beni; documenti, e</p>\n\n <p>carta, sia in originale che in copia, inclusi eventuali campioni, letteratura, contratti, registrazioni, elenchi, disegni, progetti,</p>\n\n <p>lettere, note, dati e simili; e Informazioni Riservate, in tuo possesso o sotto il tuo controllo, relative alla tua</p>\n\n <p>lavoro o agli affari dei clienti.</p>\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (35, 'ja', '<h3 style=\"text-align: center;\">入会の手紙</h3>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>件名: {designation} の役職への任命</p>\n\n\n\n <p>{employee_name} 様</p>\n\n\n <p>{app_name} の {designation} の地位を以下の条件で「会社」として提供できることをうれしく思います。</p>\n\n <p>条件:</p>\n\n\n <p>1. 雇用開始</p>\n\n <p>あなたの雇用は {start_date} から有効になります</p>\n\n\n <p>2. 役職</p>\n\n <p>あなたの役職は{designation}になります。</p>\n\n\n <p>3. 給与</p>\n\n <p>あなたの給与およびその他の福利厚生は、本明細書のスケジュール 1 に記載されているとおりです。</p>\n\n\n <p>4. 掲示場所</p>\n\n <p>{branch} に掲載されます。ただし、会社が所有する事業所で働く必要がある場合があります。</p>\n\n <p>後で取得する場合があります。</p>\n\n\n\n <p>5. 労働時間</p>\n\n <p>通常の営業日は月曜日から金曜日です。あなたは、そのために必要な時間働く必要があります。</p>\n\n <p>会社に対するあなたの義務の適切な遂行。通常の勤務時間は {start_time} から {end_time} までで、あなたは</p>\n\n <p>毎週 {total_hours} 時間以上の勤務が期待される</p>\n\n <p>責任。</p>\n\n\n\n <p>6.休暇・休日</p>\n\n <p>6.1 12 日間の臨時休暇を取得する権利があります。</p>\n\n <p>6.2 12 日間の有給病気休暇を取る権利があります。</p>\n\n <p>6.3 当社は、毎年の初めに宣言された休日のリストを通知するものとします。</p>\n\n\n\n <p>7. 職務内容</p>\n\n <p>あなたは、自分のポストに固有のすべての義務と、会社としての追加の義務を最大限に遂行します。</p>\n\n <p>時々あなたに演奏を依頼するかもしれません。あなたの特定の義務は、本明細書のスケジュール II に記載されています。</p>\n\n\n\n <p>8. 会社財産</p>\n\n <p>あなたは、会社の所有物を常に良好な状態に維持するものとします。</p>\n\n <p>あなたの雇用を放棄し、あなたの料金を放棄する前に、そのようなすべての財産を会社に返還するものとします。</p>\n\n <p>同じのは、会社によってあなたから回収されます。</p>\n\n\n\n <p>9. 貸出・贈答品の受け取り</p>\n\n <p>あなたは、あなた自身から、または他の方法であなた自身の場所から個人的な利益を得るための金銭、贈り物、報酬、または補償を借りたり、受け取ったりしません。</p>\n\n <p>あなたが公式の取引をしている可能性のある人物/クライアントに対する金銭的義務の下で。</p>\n <p>10. 終了</p>\n\n <p>10.1 少なくとも [通知] か月前に通知することにより、理由のいかんを問わず、会社はあなたの任命を終了することができます。</p>\n\n <p>書面による通知またはその代わりの給与。この条項の目的上、給与とは基本給を意味するものとします。</p>\n\n <p>10.2 あなたは、少なくとも [従業員通知] を提出することにより、理由のいかんを問わず、会社での雇用を終了することができます。</p>\n\n <p>保留中の休暇の調整後に残された、保存されていない期間の数か月前の通知または給与は、日付のとおりです。</p>\n\n <p>10.3 当社は、通知期間や解雇補償金なしに、あなたの雇用を即座に終了させる権利を留保します。</p>\n\n <p>あなたが不正行為または過失で有罪であると信じる合理的な根拠がある場合、または基本的な違反を犯した場合</p>\n\n <p>契約、または当社に損害を与えた。</p>\n\n <p>10. 4 何らかの理由で雇用が終了した場合、あなたは会社にすべての財産を返還するものとします。ドキュメント、および</p>\n\n <p>サンプル、文献、契約書、記録、リスト、図面、青写真を含む、原本とコピーの両方の紙、</p>\n\n <p>手紙、メモ、データなど。あなたが所有する、またはあなたの管理下にある機密情報。</p>\n\n <p>雇用またはクライアントの業務に。</p>\n <p>11. 機密情報</p>\n\n <p>11. 1 当社での雇用期間中、あなたは自分の全時間、注意、およびスキルを、自分の能力の限りを尽くして捧げます。</p>\n\n <p>そのビジネス。あなたは、直接的または間接的に、関与したり、関連付けたり、接続したり、関係したり、雇用したり、または</p>\n\n <p>会社の事前の許可なしに、時間や学習コースを追求すること。他のビジネスに従事すること、または</p>\n\n <p>の事前の許可なしに、活動またはその他の投稿またはアルバイトをしたり、何らかの研究コースを追求したりすること。</p>\n\n <p>会社。</p>\n\n <p>11.2 常に最高度の機密性を維持し、記録、文書、およびその他の情報を機密として保持する必要があります。</p>\n\n <p>お客様が知っている、または何らかの方法でお客様に内密にされている可能性がある、当社の事業に関連する機密情報</p>\n\n <p>また、あなたは、会社の利益のために正当に承認された方法でのみ、そのような記録、文書、および情報を使用するものとします。為に</p>\n\n <p>この条項の目的 「機密情報」とは、会社の事業および顧客の事業に関する情報を意味します。</p>\n\n <p>これは一般には公開されておらず、雇用の過程で学習する可能性があります。これも、</p>\n\n <p>組織、その顧客リスト、雇用方針、人事、および情報に関連する情報に限定されません</p>\n\n <p>当社の製品、アイデアを含むプロセス、コンセプト、予測、技術、マニュアル、図面、デザイン、</p>\n\n <p>仕様、およびそのような機密情報を含むすべての書類、履歴書、記録、およびその他の文書。</p>\n\n <p>11.3 いかなる時も、許可なくオフィスから機密情報を削除しないでください。</p>\n\n <p>11.4 保護し、開示しないというあなたの義務</p>\n\n <p>e 機密情報は、本契約および/または当社との雇用の満了または終了後も存続します。</p>\n\n <p>11.5 この条項の条件に違反した場合、上記の条項に基づく略式解雇の対象となります。</p>\n\n <p>会社が法律であなたに対して持つことができるその他の救済。</p>\n <p>12. 通知</p>\n\n <p>通知は、登録された事務所の住所で会社に提出することができます。通知は、当社からお客様に提供される場合があります。</p>\n\n <p>公式記録であなたがほのめかした住所。</p>\n\n\n\n <p>13. 会社方針の適用性</p>\n\n <p>会社は、休暇の資格、出産などの事項に関して、随時方針を宣言する権利を有するものとします。</p>\n\n <p>休暇、従業員の福利厚生、勤務時間、異動ポリシーなどであり、独自の裁量により随時変更される場合があります。</p>\n\n <p>当社のそのようなポリシー決定はすべて、あなたを拘束し、その範囲で本契約を無効にするものとします。</p>\n\n\n\n <p>14. 準拠法・裁判管轄</p>\n\n <p>当社でのあなたの雇用は、国の法律の対象となります。すべての紛争は、高等裁判所の管轄に服するものとします</p>\n\n <p>グジャラートのみ。</p>\n\n\n\n <p>15. オファーの受諾</p>\n\n <p>副本に署名して返送することにより、この雇用契約に同意したことを確認してください。</p>\n\n\n\n <p>私たちはあなたを歓迎し、あなたの受け入れを受け取り、あなたと一緒に働くことを楽しみにしています.</p>\n\n\n\n <p>敬具、</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (36, 'nl', '<h3 style=\"text-align: center;\">Deelnemende brief</h3>\n\n <p>{date}</p>\n\n <p>{employee}</p>\n\n <p>{address}</p>\n\n <p>Onderwerp: Benoeming voor de functie van {designation}</p>\n\n <p>Beste {employee_name},</p>\n\n <p>We zijn verheugd u de positie van {designation} bij {app_name} het Bedrijf aan te bieden onder de volgende voorwaarden en</p>\n\n <p>conditie:</p>\n\n\n <p>1. Indiensttreding</p>\n <p>Uw dienstverband gaat in op {start_date}</p>\n\n\n <p>2. Functietitel</p>\n\n <p>Uw functietitel wordt {designation}.</p>\n\n <p>3. Salaris</p>\n\n <p>Uw salaris en andere voordelen zijn zoals uiteengezet in Schema 1 hierbij.</p>\n\n <p>4. Plaats van detachering</p>\n\n <p>Je wordt geplaatst op {branch}. Het kan echter zijn dat u moet werken op een bedrijfslocatie die het Bedrijf heeft, of</p>\n\n <p>later kan verwerven.</p>\n\n\n\n <p>5. Werkuren</p>\n\n <p>De normale werkdagen zijn van maandag tot en met vrijdag. Je zal de uren moeten werken die nodig zijn voor de</p>\n\n <p>correcte uitvoering van uw taken jegens het bedrijf. De normale werkuren zijn van {start_time} tot {end_time} en jij bent</p>\n\n <p>naar verwachting niet minder dan {total_hours} uur per week werken, en indien nodig voor extra uren, afhankelijk van uw</p>\n\n <p>verantwoordelijkheden.</p>\n\n\n\n <p>6. Verlof/Vakantie</p>\n\n <p>6.1 Je hebt recht op tijdelijk verlof van 12 dagen.</p>\n\n <p>6.2 U heeft recht op 12 werkdagen betaald ziekteverlof.</p>\n\n <p>6.3 De Maatschappij stelt aan het begin van elk jaar een lijst van verklaarde feestdagen op.</p>\n\n\n\n <p>7. Aard van de taken</p>\n\n <p>Je voert alle taken die inherent zijn aan je functie en bijkomende taken zoals het bedrijf naar beste vermogen uit;</p>\n\n <p>kan van tijd tot tijd een beroep op u doen om op te treden. Uw specifieke taken zijn uiteengezet in Bijlage II hierbij.</p>\n\n\n\n <p>8. Bedrijfseigendommen</p>\n\n <p>U onderhoudt bedrijfseigendommen, die u in de loop van</p>\n\n <p>uw dienstverband, en zal al deze eigendommen aan het Bedrijf teruggeven voordat afstand wordt gedaan van uw kosten, bij gebreke waarvan de kosten</p>\n\n <p>hiervan zal door het Bedrijf van u worden verhaald.</p>\n\n\n\n <p>9. Geschenken lenen/aannemen</p>\n\n <p>U zult geen geld, geschenken, beloningen of vergoedingen voor uw persoonlijk gewin lenen of accepteren van uzelf of uzelf op een andere manier plaatsen</p>\n\n <p>onder geldelijke verplichting jegens een persoon/klant met wie u mogelijk officiële betrekkingen heeft.</p>\n <p>10. Beëindiging</p>\n\n <p>10.1 Uw aanstelling kan door het Bedrijf zonder opgaaf van reden worden beëindigd door u minimaal [Opzegging] maanden van tevoren</p>\n\n <p>schriftelijke opzegging of daarvoor in de plaats komend salaris. In dit artikel wordt onder salaris verstaan het basissalaris.</p>\n\n <p>10.2 U kunt uw dienstverband bij het Bedrijf beëindigen, zonder enige reden, door niet minder dan [Mededeling van de werknemer]</p>\n\n <p>maanden opzegtermijn of salaris voor de niet gespaarde periode, overgebleven na aanpassing van hangende verlofdagen, zoals op datum.</p>\n\n <p>10.3 Het bedrijf behoudt zich het recht voor om uw dienstverband op staande voet te beëindigen zonder enige opzegtermijn of beëindigingsvergoeding</p>\n\n <p>als het redelijke grond heeft om aan te nemen dat u zich schuldig heeft gemaakt aan wangedrag of nalatigheid, of een fundamentele schending van</p>\n\n <p>contract, of enig verlies voor het Bedrijf veroorzaakt.</p>\n\n <p>10. 4 Bij beëindiging van uw dienstverband om welke reden dan ook, geeft u alle eigendommen terug aan het Bedrijf; documenten, en</p>\n\n <p>papier, zowel origineel als kopieën daarvan, inclusief eventuele monsters, literatuur, contracten, bescheiden, lijsten, tekeningen, blauwdrukken,</p>\n\n <p>brieven, notities, gegevens en dergelijke; en Vertrouwelijke informatie, in uw bezit of onder uw controle met betrekking tot uw</p>\n\n <p>werkgelegenheid of de zakelijke aangelegenheden van klanten.</p>\n <p>11. Vertrouwelijke informatie</p>\n\n <p>11. 1 Tijdens uw dienstverband bij het Bedrijf besteedt u al uw tijd, aandacht en vaardigheden naar uw beste vermogen aan:</p>\n\n <p>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</p>\n\n <p>tijd doorbrengen of een studie volgen, zonder voorafgaande toestemming van het bedrijf.bezig met een ander bedrijf of</p>\n\n <p>werkzaamheden of enige andere functie of werk in deeltijd of het volgen van welke opleiding dan ook, zonder voorafgaande toestemming van de</p>\n\n <p>Bedrijf.</p>\n\n <p>11.2 U moet altijd de hoogste graad van vertrouwelijkheid handhaven en de records, documenten en andere</p>\n\n <p>Vertrouwelijke informatie met betrekking tot het bedrijf van het bedrijf die u op enigerlei wijze bekend is of in vertrouwen is genomen</p>\n\n <p>en u zult dergelijke records, documenten en informatie alleen gebruiken op een naar behoren gemachtigde manier in het belang van het bedrijf. Voor</p>\n\n <p>de doeleinden van deze clausule Vertrouwelijke informatiebetekent informatie over het bedrijf van het bedrijf en dat van zijn klanten</p>\n\n <p>die niet beschikbaar is voor het grote publiek en die u tijdens uw dienstverband kunt leren. Dit bevat,</p>\n\n <p>maar is niet beperkt tot informatie met betrekking tot de organisatie, haar klantenlijsten, werkgelegenheidsbeleid, personeel en informatie</p>\n\n <p>over de producten, processen van het bedrijf, inclusief ideeën, concepten, projecties, technologie, handleidingen, tekeningen, ontwerpen,</p>\n\n <p>specificaties, en alle papieren, cvs, dossiers en andere documenten die dergelijke vertrouwelijke informatie bevatten.</p>\n\n <p>11.3 U verwijdert nooit vertrouwelijke informatie van het kantoor zonder toestemming.</p>\n\n <p>11.4 Uw plicht om te beschermen en niet openbaar te maken</p>\n\n <p>e Vertrouwelijke informatie blijft van kracht na het verstrijken of beëindigen van deze Overeenkomst en/of uw dienstverband bij het Bedrijf.</p>\n\n <p>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:</p>\n\n <p>ander rechtsmiddel dat het Bedrijf volgens de wet tegen u heeft.</p>\n <p>12. Kennisgevingen</p>\n\n <p>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:</p>\n\n <p>het door u opgegeven adres in de officiële administratie.</p>\n\n\n\n <p>13. Toepasselijkheid van het bedrijfsbeleid</p>\n\n <p>Het bedrijf heeft het recht om van tijd tot tijd beleidsverklaringen af te leggen met betrekking tot zaken als verlofrecht, moederschap</p>\n\n <p>verlof, werknemersvoordelen, werkuren, transferbeleid, enz., en kan deze van tijd tot tijd naar eigen goeddunken wijzigen.</p>\n\n <p>Al dergelijke beleidsbeslissingen van het Bedrijf zijn bindend voor u en hebben voorrang op deze Overeenkomst in die mate.</p>\n\n\n\n <p>14. Toepasselijk recht/jurisdictie</p>\n\n <p>Uw dienstverband bij het bedrijf is onderworpen aan de landelijke wetgeving. Alle geschillen zijn onderworpen aan de jurisdictie van de High Court</p>\n\n <p>Alleen Gujarat.</p>\n\n\n\n <p>15. Aanvaarding van ons aanbod</p>\n\n <p>Bevestig uw aanvaarding van deze arbeidsovereenkomst door het duplicaat te ondertekenen en terug te sturen.</p>\n\n\n\n <p>Wij heten u van harte welkom en kijken ernaar uit uw acceptatie te ontvangen en met u samen te werken.</p>\n\n\n\n <p>Hoogachtend,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (37, 'pl', '<h3 style=\"text-align: center;\">Dołączanie listu</h3>\n\n <p>{date }</p>\n\n <p>{employee_name }</p>\n\n <p>{address }</p>\n\n\n <p>Dotyczy: mianowania na stanowisko {designation}</p>\n\n <p>Szanowny {employee_name },</p>\n\n <p>Mamy przyjemność zaoferować Państwu, stanowisko {designation} z {app_name } \"Spółka\" na poniższych warunkach i</p>\n <p>warunki:</p>\n\n <p>1. Rozpoczęcie pracy</p>\n\n <p>Twoje zatrudnienie będzie skuteczne, jak na {start_date }</p>\n\n <p>2. Tytuł zadania</p>\n <p>Twój tytuł pracy to {designation}.</p>\n\n <p>3. Salary</p>\n\n <p>Twoje wynagrodzenie i inne świadczenia będą określone w Zestawieniu 1, do niniejszego rozporządzenia.</p>\n\n\n <p>4. Miejsce delegowania</p>\n <p>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ć.</p>\n\n <p>5. Godziny pracy</p>\n <p>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</p>\n <p>odpowiedzialności.</p>\n\n <p>6. Urlop/Wakacje</p>\n\n <p>6.1 Przysługuje prawo do urlopu dorywczego w ciągu 12 dni.</p>\n\n <p>6.2 Użytkownik ma prawo do 12 dni roboczych od wypłatnego zwolnienia chorobowego.</p>\n\n <p>6.3 Spółka powiadamia na początku każdego roku wykaz ogłoszonych świąt. </p>\n\n\n\n <p>7. Rodzaj obowiązków</p>\n\n <p>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.</p>\n\n\n\n <p>8. Właściwość przedsiębiorstwa</p>\n\n <p>Zawsze będziesz utrzymywać w dobrej kondycji Firmy, która może być powierzona do użytku służbowego w trakcie trwania</p>\n\n <p>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ę.</p>\n\n <p>9. Wypożyczanie/akceptowanie prezentów</p>\n\n <p>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.</p>\n <p>10. Zakończenie</p>\n\n <p>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.</p>\n\n <p>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ń.</p>\n\n <p>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. </p>\n\n <p>10. 4 W sprawie rozwiązania stosunku pracy z jakiegokolwiek powodu, powrócisz do Spółki wszystkie nieruchomości; dokumenty, i </p>\n\n <p>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,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informacje poufne</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Firma.</p>\n\n <p>11.2 Zawsze musisz zachować najwyższy stopień poufności i zachować jako poufny akt, dokumenty, i inne </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>specyfikacje, a także wszystkie dokumenty, życiorysy, zapisy i inne dokumenty zawierające takie informacje poufne.</p>\n\n <p>11.3 W żadnym momencie nie usunie Pan żadnych Informacji Poufnych z urzędu bez zezwolenia.</p>\n\n <p>11.4 Twój obowiązek ochrony a nie disclos</p>\n\n <p>Informacje poufne przetrwają wygaśnięcie lub rozwiązanie niniejszej Umowy i/lub Twoje zatrudnienie w Spółce.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Uwagi</p>\n\n <p>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.</p>\n\n\n\n <p>13. Stosowność polityki firmy</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Wszystkie takie decyzje polityczne Spółki są wiążące dla Państwa i przesłaniają niniejszą Umowę w tym zakresie.</p>\n\n\n\n <p>14. Prawo właściwe/jurysdykcja</p>\n\n <p>Twoje zatrudnienie ze Spółką podlega prawu krajowi. Wszelkie spory podlegają właściwości Sądu Najwyższego</p>\n\n <p>Tylko Gujarat.</p>\n\n\n\n <p>15. Akceptacja naszej oferty</p>\n\n <p>Prosimy o potwierdzenie przyjęcia niniejszej Umowy o pracę poprzez podpisanie i zwrócenie duplikatu.</p>\n\n\n\n <p>Zapraszamy Państwa i czekamy na Państwa przyjęcie i współpracę z Tobą.</p>\n\n\n\n <p>Z Państwa Sincerely,</p>\n\n <p>{app_name }</p>\n\n <p>{date }</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (38, 'pt', '<h3 style=\"text-align: center;\">Carta De Adesão</h3>\n\n <p>{data}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n <p>Assunto: Nomeação para o cargo de {designation}</p>\n\n <p>Querido {employee_name},</p>\n\n\n <p>Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e</p>\n <p>condições:</p>\n\n\n <p>1. Comentamento do emprego</p>\n\n <p>Seu emprego será efetivo, a partir de {start_date}</p>\n\n\n <p>2. Título do emprego</p>\n\n <p>Seu cargo de trabalho será {designation}.</p>\n\n <p>3. Salário</p>\n\n <p>Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.</p>\n\n <p>4. Local de postagem</p>\n\n <p>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.</p>\n\n <p>5. Horas de Trabalho</p>\n\n <p>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</p>\n <p>responsabilidades.</p>\n\n <p>6. Leave / Holidays</p>\n\n <p>6,1 Você tem direito a licença casual de 12 dias.</p>\n\n <p>6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.</p>\n\n <p>6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. </p>\n\n\n\n <p>7. Natureza dos deveres</p>\n\n <p>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.</p>\n\n\n\n <p>8. Propriedade da empresa</p>\n\n <p>Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de</p>\n\n <p>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.</p>\n\n\n\n <p>9. Borremir / aceitar presentes</p>\n\n <p>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.</p>\n\n\n\n <p>10. Terminação</p>\n\n <p>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.</p>\n\n <p>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.</p>\n\n <p>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. </p>\n\n <p>10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e </p>\n\n <p>papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informações Confidenciais</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Empresa.</p>\n\n <p>11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.</p>\n\n <p>11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.</p>\n\n <p>11,4 O seu dever de salvaguardar e não os desclos</p>\n\n <p>Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Notices</p>\n\n <p>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.</p>\n\n\n\n <p>13. Aplicabilidade da Política da Empresa</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.</p>\n\n\n\n <p>14. Direito / Jurisdição</p>\n\n <p>Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior</p>\n\n <p>Gujarat apenas.</p>\n\n\n\n <p>15. Aceitação da nossa oferta</p>\n\n <p>Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.</p>\n\n\n\n <p>Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.</p>\n\n\n\n <p>Seu Sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{data}</p>\n ', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (39, 'ru', '<h3 style=\"text-align: center;\">Присоединение к письму</h3>\n\n <p>{date}</p>\n\n <p>{ employee_name }</p>\n <p>{address}</p>\n\n <p>Тема: Назначение на должность {designation}</p>\n\n <p>Уважаемый { employee_name },</p>\n\n <p>Мы рады предложить Вам, позицию {designation} с { app_name } Компания на следующих условиях и</p>\n\n <p>условия:</p>\n\n\n <p>1. Начало работы</p>\n\n <p>Ваше трудоустройство будет эффективным, начиная с { start_date }</p>\n\n\n <p>2. Название должности</p>\n <p>Ваш заголовок задания будет {designation}.</p>\n\n <p>3. Зарплата</p>\n <p>Ваши оклады и другие пособия будут установлены в соответствии с расписанием, изложенным в приложении 1 к настоящему.</p>\n\n <p>4. Место размещения</p>\n <p>Вы будете работать в { branch }. Вы, однако, можете работать в любом месте, которое компания имеет или может впоследствии приобрести.</p>\n\n\n\n <p>5. Часы работы</p>\n <p>Обычные рабочие дни-с понедельника по пятницу. Вы должны будете работать в течение таких часов, как это необходимо для надлежащего выполнения Ваших обязанностей перед компанией. Обычные рабочие часы-от { start_time } до { end_time }, и вы, как ожидается, будут работать не менее { total_hours } часов каждую неделю, и при необходимости в течение дополнительных часов в зависимости от вашего</p>\n <p>ответственности.</p>\n <p>6. Отпуск/Праздники</p>\n\n <p>6.1 Вы имеете право на случайный отпуск продолжительностью 12 дней.</p>\n\n <p>6.2 Вы имеете право на 12 рабочих дней оплачиваемого отпуска по болезни.</p>\n\n <p>6.3 Компания в начале каждого года уведомляет об объявленных праздниках. </p>\n\n\n\n <p>7. Характер обязанностей</p>\n\n <p>Вы будете выполнять все обязанности, присующие вам, и такие дополнительные обязанности, которые компания может призвать к вам, время от времени. Ваши конкретные обязанности изложены в приложении II к настоящему.</p>\n\n\n\n <p>8. Свойство компании</p>\n\n <p>Вы всегда будете поддерживать в хорошем состоянии имущество Компании, которое может быть доверено Вам для служебного пользования в течение</p>\n\n <p>вашей занятости, и возвратит все это имущество Компании до отказа от вашего заряда, при отсутствии которого стоимость одного и того же имущества будет взыскана с Вас компанией.</p>\n\n\n\n <p>9. Боровить/принять подарки</p>\n\n <p>Вы не будете брать взаймы или принимать какие-либо деньги, подарки, вознаграждение или компенсацию за ваши личные доходы от или в ином месте под денежный долг любому лицу/клиенту, с которым у вас могут быть официальные сделки.</p>\n\n\n\n <p>10. Прекращение</p>\n\n <p>10.1 Ваше назначение может быть прекращено компанией без каких бы то ни было оснований, предоставляя Вам не менее [ Уведомление] месяцев, предшея уведомлению в письменной форме или окладе вместо них. Для целей этого положения заработная плата означает базовый оклад.</p>\n\n <p>10.2 Вы можете прекратить свою трудовую деятельность с компанией без каких-либо причин, предоставляя не меньше, чем [ Employee Notice] months предварительное уведомление или оклад за несохраненный период, оставатся после корректировки отложенных листьев, как на сегодняшний день.</p>\n\n <p>10.3 Компания оставляет за собой право прекратить вашу работу в суммарном порядке без какого-либо уведомления о сроке или увольнении, если у нее есть достаточные основания полагать, что вы виновны в проступке или халатности, или совершили какое-либо существенное нарушение договора, или причинило убытки Компании. </p>\n\n <p>10. 4 О прекращении вашей работы по какой бы то ни было причине вы вернетесь в Компании все имущество; документы, а </p>\n\n <p>бумаги, как оригинальные, так и их копии, включая любые образцы, литературу, контракты, записи, списки, чертежи, чертежи,</p>\n\n <p>письма, заметки, данные и тому подобное; и Конфиденциальная информация, в вашем распоряжении или под вашим контролем, связанным с вашей работой или деловыми делами клиентов. </p>\n\n\n\n <p>11. Конфиденциальная информация</p>\n\n <p>11. 1 Во время вашего трудоустройства с компанией Вы посвяте все свое время, внимание, умение максимально</p>\n\n <p>Его бизнес. Вы не должны, прямо или косвенно, заниматься или ассоциировать себя с заинтересованными, занятым, занятым, или временем, или продолжать любой курс обучения, без предварительного разрешения Компани.заниматься каким-либо другим бизнесом или деятельностью или любой другой пост или работать неполный рабочий день или заниматься какой бы то ни было исследованием, без предварительного разрешения</p>\n\n <p>Компания.</p>\n\n <p>11.2 Вы всегда должны сохранять наивысшую степень конфиденциальности и хранить в качестве конфиденциальной записи, документы и другие </p>\n\n <p>Конфиденциальная информация, касающаяся бизнеса Компании, которая может быть вам известна или конфиденциальна любым способом, и Вы будете использовать такие записи, документы и информацию только в установленном порядке в интересах Компании. Для целей настоящей статьи \"Конфиденциальная информация\" означает информацию о бизнесе Компании и о ее клиентах, которая недоступна для широкой общественности и которая может быть изучилась Вами в ходе вашей работы. Это включает в себя:</p>\n\n <p>но не ограничивается информацией, касающейся организации, ее списков клиентов, политики в области занятости, персонала и информации о продуктах Компании, процессах, включая идеи, концепции, прогнозы, технологии, руководства, чертеж, чертеж, </p>\n\n <p>спецификации, и все бумаги, резюме, записи и другие документы, содержащие такую Конфиденциальную Информацию.</p>\n\n <p>11.3 В любое время вы не будете удалять конфиденциальную информацию из офиса без разрешения.</p>\n\n <p>11.4 Ваш долг защищать и не отсосать</p>\n\n <p>e Конфиденциальная информация выдержит срок действия или прекращения действия настоящего Соглашения и/или вашей работы с компанией.</p>\n\n <p>11.5 Нарушение условий, изложенных в настоящем положении, приведет к тому, что в дополнение к любым другим средствам правовой защиты, которые компания может иметь против вас, в соответствии с вышеприведенным положением, вы можете получить краткое увольнение в соответствии с этим положением.</p>\n\n\n\n <p>12. Замечания</p>\n\n <p>Уведомления могут быть даны Вами Компании по адресу ее зарегистрированного офиса. Извещения могут быть даны компанией Вам по адресу, с которым вы в официальных отчетах.</p>\n\n\n\n <p>13. Применимость политики компании</p>\n\n <p>Компания вправе время от времени делать политические заявления по таким вопросам, как право на отпуск, материнство</p>\n\n <p>отпуска, пособия для работников, продолжительность рабочего дня, трансферная политика и т.д. и время от времени могут изменяться исключительно по своему усмотрению.</p>\n\n <p>Все такие принципиальные решения Компании являются обязательными для Вас и переопределяют это Соглашение в такой степени.</p>\n\n\n\n <p>14. Регулирующий Право/юрисдикция</p>\n\n <p>Ваше трудоустройство с компанией подпадает под действие законов страны. Все споры подлежат юрисдикции Высокого суда</p>\n\n <p>Только Гуджарат.</p>\n\n\n\n <p>15. Принятие нашего предложения</p>\n\n <p>Пожалуйста, подтвердите свое согласие с этим Договором о занятости, подписав и возвращая дубликат копии.</p>\n\n\n\n <p>Мы приветствуем Вас и надеемся на то, что Вы принимаете свое согласие и работаете с Вами.</p>\n\n\n\n <p>Искренне Ваш,</p>\n\n <p>{ app_name }</p>\n\n <p>{date}</p>\n ', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (40, 'ar', '<h2 style=\"text-align: center;\"><strong>خطاب الانضمام</strong></h2>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>الموضوع: موعد لوظيفة {designation}</p>\n <p>عزيزي {employee_name} ،</p>\n <p>يسعدنا أن نقدم لك منصب {designation} مع {app_name} \"الشركة\" وفقًا للشروط التالية و</p>\n <p>الظروف:</p>\n <p>1. بدء العمل</p>\n <p>سيصبح عملك ساريًا اعتبارًا من {start_date}</p>\n <p>2. المسمى الوظيفي</p>\n <p>سيكون المسمى الوظيفي الخاص بك هو {designation}.</p>\n <p>3. الراتب</p>\n <p>سيكون راتبك والمزايا الأخرى على النحو المبين في الجدول 1 ، طيه.</p>\n <p>4. مكان الإرسال</p>\n <p>سيتم إرسالك إلى {branch}. ومع ذلك ، قد يُطلب منك العمل في أي مكان عمل تمتلكه الشركة ، أو</p>\n <p>قد تحصل لاحقًا.</p>\n <p>5. ساعات العمل</p>\n <p>أيام العمل العادية هي من الاثنين إلى الجمعة. سيُطلب منك العمل لساعات حسب الضرورة لـ</p>\n <p>أداء واجباتك على النحو الصحيح تجاه الشركة. ساعات العمل العادية من {start_time} إلى {end_time} وأنت</p>\n <p>من المتوقع أن يعمل ما لا يقل عن {total_hours} ساعة كل أسبوع ، وإذا لزم الأمر لساعات إضافية اعتمادًا على</p>\n <p>المسؤوليات.</p>\n <p>6. الإجازة / العطل</p>\n <p>6.1 يحق لك الحصول على إجازة غير رسمية مدتها 12 يومًا.</p>\n <p>6.2 يحق لك الحصول على إجازة مرضية مدفوعة الأجر لمدة 12 يوم عمل.</p>\n <p>6.3 تخطر الشركة بقائمة الإجازات المعلنة في بداية كل عام.</p>\n <p>7. طبيعة الواجبات</p>\n <p>ستقوم بأداء أفضل ما لديك من واجبات متأصلة في منصبك ومهام إضافية مثل الشركة</p>\n <p>قد يدعوك لأداء ، من وقت لآخر. واجباتك المحددة منصوص عليها في الجدول الثاني بهذه الرسالة.</p>\n <p>8. ممتلكات الشركة</p>\n <p>ستحافظ دائمًا على ممتلكات الشركة في حالة جيدة ، والتي قد يتم تكليفك بها للاستخدام الرسمي خلال فترة عملها</p>\n <p>عملك ، ويجب أن تعيد جميع هذه الممتلكات إلى الشركة قبل التخلي عن الرسوم الخاصة بك ، وإلا فإن التكلفة</p>\n <p>نفس الشيء سوف تسترده منك الشركة.</p>\n <p>9. الاقتراض / قبول الهدايا</p>\n <p>لن تقترض أو تقبل أي أموال أو هدية أو مكافأة أو تعويض مقابل مكاسبك الشخصية من أو تضع نفسك بأي طريقة أخرى</p>\n <p>بموجب التزام مالي تجاه أي شخص / عميل قد تكون لديك تعاملات رسمية معه.</p>\n <p>10. الإنهاء</p>\n <p>10.1 يمكن للشركة إنهاء موعدك ، دون أي سبب ، من خلال إعطائك ما لا يقل عن [إشعار] قبل أشهر</p>\n <p>إشعار خطي أو راتب بدلاً منه. لغرض هذا البند ، يقصد بالراتب المرتب الأساسي.</p>\n <p>10.2 إنهاء عملك مع الشركة ، دون أي سبب ، من خلال تقديم ما لا يقل عن إشعار الموظف</p>\n <p>أشهر الإخطار أو الراتب عن الفترة غير المحفوظة ، المتبقية بعد تعديل الإجازات المعلقة ، كما في التاريخ.</p>\n <p>10.3 تحتفظ الشركة بالحق في إنهاء عملك بإيجاز دون أي فترة إشعار أو مدفوعات إنهاء</p>\n <p>إذا كان لديه سبب معقول للاعتقاد بأنك مذنب بسوء السلوك أو الإهمال ، أو ارتكبت أي خرق جوهري لـ</p>\n <p>العقد ، أو تسبب في أي خسارة للشركة.</p>\n <p>10. 4 عند إنهاء عملك لأي سبب من الأسباب ، ستعيد إلى الشركة جميع ممتلكاتك ؛ المستندات و</p>\n <p>الأوراق الأصلية ونسخها ، بما في ذلك أي عينات ، وأدبيات ، وعقود ، وسجلات ، وقوائم ، ورسومات ، ومخططات ،</p>\n <p>الرسائل والملاحظات والبيانات وما شابه ذلك ؛ والمعلومات السرية التي بحوزتك أو تحت سيطرتك والمتعلقة بك</p>\n <p>التوظيف أو الشؤون التجارية للعملاء.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11. المعلومات السرية</p>\n <p>11. 1 أثناء عملك في الشركة ، سوف تكرس وقتك واهتمامك ومهارتك كلها بأفضل ما لديك من قدرات</p>\n <p>عملها. لا يجوز لك ، بشكل مباشر أو غير مباشر ، الانخراط أو الارتباط بنفسك ، أو الارتباط به ، أو القلق ، أو التوظيف ، أو</p>\n <p>الوقت أو متابعة أي دورة دراسية على الإطلاق ، دون الحصول على إذن مسبق من الشركة أو الانخراط في أي عمل آخر أو</p>\n <p>الأنشطة أو أي وظيفة أخرى أو العمل بدوام جزئي أو متابعة أي دورة دراسية على الإطلاق ، دون إذن مسبق من</p>\n <p>شركة.</p>\n <p>11.2 يجب عليك دائمًا الحفاظ على أعلى درجة من السرية والحفاظ على سرية السجلات والوثائق وغيرها</p>\n <p>المعلومات السرية المتعلقة بأعمال الشركة والتي قد تكون معروفة لك أو مخولة لك بأي وسيلة</p>\n <p>ولن تستخدم هذه السجلات والمستندات والمعلومات إلا بالطريقة المصرح بها حسب الأصول لصالح الشركة. إلى عن على</p>\n <p>أغراض هذا البند \"المعلومات السرية\" تعني المعلومات المتعلقة بأعمال الشركة وعملائها</p>\n <p>التي لا تتوفر لعامة الناس والتي قد تتعلمها أثناء عملك. هذا يشمل،</p>\n <p>على سبيل المثال لا الحصر ، المعلومات المتعلقة بالمنظمة وقوائم العملاء وسياسات التوظيف والموظفين والمعلومات</p>\n <p>حول منتجات الشركة وعملياتها بما في ذلك الأفكار والمفاهيم والإسقاطات والتكنولوجيا والكتيبات والرسم والتصاميم ،</p>\n <p>المواصفات وجميع الأوراق والسير الذاتية والسجلات والمستندات الأخرى التي تحتوي على هذه المعلومات السرية.</p>\n <p>11.3 لن تقوم في أي وقت بإزالة أي معلومات سرية من المكتب دون إذن.</p>\n\n <p>11.4 واجبك في الحماية وعدم الإفشاء</p>\n\n <p>تظل المعلومات السرية سارية بعد انتهاء أو إنهاء هذه الاتفاقية و / أو عملك مع الشركة.</p>\n\n <p>11.5 سوف يجعلك خرق شروط هذا البند عرضة للفصل بإجراءات موجزة بموجب الفقرة أعلاه بالإضافة إلى أي</p>\n\n <p>أي تعويض آخر قد يكون للشركة ضدك في القانون.</p>\n\n <p>12. الإخطارات</p>\n\n <p>يجوز لك إرسال إخطارات إلى الشركة على عنوان مكتبها المسجل. يمكن أن ترسل لك الشركة إشعارات على</p>\n\n <p>العنوان الذي أشرت إليه في السجلات الرسمية.</p>\n\n\n\n <p>13. تطبيق سياسة الشركة</p>\n\n <p>يحق للشركة تقديم إعلانات السياسة من وقت لآخر فيما يتعلق بمسائل مثل استحقاق الإجازة والأمومة</p>\n\n <p>الإجازة ، ومزايا الموظفين ، وساعات العمل ، وسياسات النقل ، وما إلى ذلك ، ويمكن تغييرها من وقت لآخر وفقًا لتقديرها الخاص.</p>\n\n <p>جميع قرارات سياسة الشركة هذه ملزمة لك ويجب أن تلغي هذه الاتفاقية إلى هذا الحد.</p>\n\n\n\n <p>14. القانون الحاكم / الاختصاص القضائي</p>\n\n <p>يخضع عملك في الشركة لقوانين الدولة. تخضع جميع النزاعات للاختصاص القضائي للمحكمة العليا</p>\n\n <p>غوجارات فقط.</p>\n\n\n\n <p>15. قبول عرضنا</p>\n\n <p>يرجى تأكيد قبولك لعقد العمل هذا من خلال التوقيع وإعادة النسخة المكررة.</p>\n\n\n\n <p>نرحب بكم ونتطلع إلى تلقي موافقتكم والعمل معكم.</p>\n\n\n\n <p>تفضلوا بقبول فائق الاحترام،</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (41, 'da', '<h3 style=\"text-align: center;\"><strong>Tilslutningsbrev</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Emne: Udnævnelse til stillingen som {designation}</p>\n\n\n\n\n\n\n\n <p>Kære {employee_name}</p>\n\n\n\n <p>Vi er glade for at kunne tilbyde dig stillingen som {designation} hos {app_name} \"Virksomheden\" på følgende vilkår og</p>\n\n <p>betingelser:</p>\n\n\n <p>1. Påbegyndelse af ansættelse</p>\n\n <p>Din ansættelse træder i kraft fra {start_date}</p>\n\n\n\n <p>2. Jobtitel</p>\n\n\n <p>Din jobtitel vil være {designation}.</p>\n\n\n\n <p>3. Løn</p>\n\n <p>Din løn og andre goder vil være som angivet i skema 1, hertil.</p>\n\n\n\n <p>4. Udstationeringssted</p>\n\n <p>Du vil blive slået op på {branch}. Du kan dog blive bedt om at arbejde på ethvert forretningssted, som virksomheden har, eller</p>\n\n <p>senere kan erhverve.</p>\n\n\n <p>5. Arbejdstimer</p>\n\n <p>De normale arbejdsdage er mandag til fredag. Du vil blive forpligtet til at arbejde i de timer, som er nødvendige for</p>\n\n <p>behørig varetagelse af dine pligter over for virksomheden. Den normale arbejdstid er fra {start_time} til {end_time}, og det er du</p>\n\n <p>forventes at arbejde ikke mindre end {total_hours} timer hver uge, og om nødvendigt yderligere timer afhængigt af din</p>\n\n <p>ansvar.</p>\n\n\n\n <p>6. Orlov/Ferie</p>\n\n <p>6.1 Du har ret til tilfældig ferie på 12 dage.</p>\n\n <p>6.2 Du har ret til 12 arbejdsdages sygefravær med løn.</p>\n\n <p>6.3 Virksomheden skal meddele en liste over erklærede helligdage i begyndelsen af hvert år.</p>\n\n\n\n <p>7. Arbejdsopgavernes art</p>\n\n <p>Du vil efter bedste evne udføre alle de opgaver, der er iboende i din stilling og sådanne yderligere opgaver som virksomheden</p>\n\n <p>kan opfordre dig til at optræde, fra tid til anden. Dine specifikke pligter er beskrevet i skema II hertil.</p>\n\n\n <p>8. Firmaejendom</p>\n\n <p>Du vil altid vedligeholde virksomhedens ejendom i god stand, som kan blive overdraget til dig til officiel brug i løbet af</p>\n\n <p>din ansættelse, og skal returnere al sådan ejendom til virksomheden, før du opgiver din afgift, i modsat fald vil omkostningerne</p>\n\n <p>af samme vil blive inddrevet fra dig af virksomheden.</p>\n\n\n\n <p>9. Lån/modtagelse af gaver</p>\n\n <p>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</p>\n\n <p>under en økonomisk forpligtelse over for enhver person/kunde, som du måtte have officielle forbindelser med.</p>\n\n <p>10. Opsigelse</p>\n\n <p>10.1 Din ansættelse kan opsiges af virksomheden uden nogen grund ved at give dig mindst [varsel] måneder før</p>\n\n <p>skriftligt varsel eller løn i stedet herfor. Ved løn forstås i denne paragraf grundløn.</p>\n\n <p>10.2 Du kan opsige dit ansættelsesforhold i virksomheden uden nogen grund ved at give mindst [Medarbejdermeddelelse]</p>\n\n <p>måneders forudgående varsel eller løn for den ikke-opsparede periode, tilbage efter regulering af afventende orlov, som på dato.</p>\n\n <p>10.3 Virksomheden forbeholder sig retten til at opsige dit ansættelsesforhold midlertidigt uden opsigelsesfrist eller opsigelsesbetaling</p>\n\n <p>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å</p>\n\n <p>kontrakt, eller forårsaget tab for virksomheden.</p>\n\n <p>10. 4 Ved ophør af din ansættelse uanset årsag, vil du returnere al ejendom til virksomheden; dokumenter, og</p>\n\n <p>papir, både originale og kopier heraf, inklusive prøver, litteratur, kontrakter, optegnelser, lister, tegninger, tegninger,</p>\n\n <p>breve, notater, data og lignende; og fortrolige oplysninger, i din besiddelse eller under din kontrol vedrørende din</p>\n\n <p>ansættelse eller til kunders forretningsforhold.</p>\n <p>11. Fortrolige oplysninger</p>\n\n <p>11. 1 Under din ansættelse i virksomheden vil du bruge al din tid, opmærksomhed og dygtighed efter bedste evne til</p>\n\n <p>sin virksomhed. Du må ikke, direkte eller indirekte, engagere eller associere dig med, være forbundet med, bekymret, ansat eller</p>\n\n <p>tid eller forfølge et hvilket som helst studieforløb uden forudgående tilladelse fra virksomheden. involveret i anden virksomhed eller</p>\n\n <p>aktiviteter eller enhver anden stilling eller arbejde på deltid eller forfølge ethvert studieforløb uden forudgående tilladelse fra</p>\n\n <p>Selskab.</p>\n <p>11.2 Du skal altid opretholde den højeste grad af fortrolighed og opbevare optegnelser, dokumenter og andre fortrolige oplysninger.</p>\n\n <p>Fortrolige oplysninger vedrørende virksomhedens virksomhed, som kan være kendt af dig eller betroet dig på nogen måde</p>\n\n <p>og du vil kun bruge sådanne optegnelser, dokumenter og oplysninger på en behørigt autoriseret måde i virksomhedens interesse. Til</p>\n\n <p>formålene med denne paragraf \"Fortrolige oplysninger\" betyder oplysninger om virksomhedens og dets kunders forretning</p>\n\n <p>som ikke er tilgængelig for offentligheden, og som du kan lære i løbet af din ansættelse. Dette inkluderer,</p>\n\n <p>men er ikke begrænset til information vedrørende organisationen, dens kundelister, ansættelsespolitikker, personale og information</p>\n\n <p>om virksomhedens produkter, processer, herunder ideer, koncepter, projektioner, teknologi, manualer, tegning, design,</p>\n\n <p>specifikationer og alle papirer, CVer, optegnelser og andre dokumenter, der indeholder sådanne fortrolige oplysninger.</p>\n\n <p>11.3 Du vil på intet tidspunkt fjerne fortrolige oplysninger fra kontoret uden tilladelse.</p>\n\n <p>11.4 Din pligt til at beskytte og ikke oplyse</p>\n\n <p>e Fortrolige oplysninger vil overleve udløbet eller opsigelsen af denne aftale og/eller din ansættelse hos virksomheden.</p>\n\n <p>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.</p>\n\n <p>andre retsmidler, som virksomheden måtte have mod dig i henhold til loven.</p>\n <p>12. Meddelelser</p>\n\n <p>Meddelelser kan gives af dig til virksomheden på dets registrerede kontoradresse. Meddelelser kan gives af virksomheden til dig på</p>\n\n <p>den adresse, du har angivet i de officielle optegnelser.</p>\n\n\n\n <p>13. Anvendelse af virksomhedens politik</p>\n\n <p>Virksomheden er berettiget til fra tid til anden at afgive politiske erklæringer vedrørende sager som ret til orlov, barsel</p>\n\n <p>orlov, ansattes ydelser, arbejdstider, overførselspolitikker osv., og kan ændre det samme fra tid til anden efter eget skøn.</p>\n\n <p>Alle sådanne politiske beslutninger fra virksomheden er bindende for dig og tilsidesætter denne aftale i det omfang.</p>\n\n\n\n <p>14. Gældende lov/Jurisdiktion</p>\n\n <p>Din ansættelse hos virksomheden er underlagt landets love. Alle tvister er underlagt High Courts jurisdiktion</p>\n\n <p>Kun Gujarat.</p>\n\n\n\n <p>15. Accept af vores tilbud</p>\n\n <p>Bekræft venligst din accept af denne ansættelseskontrakt ved at underskrive og returnere kopien.</p>\n\n\n\n <p>Vi byder dig velkommen og ser frem til at modtage din accept og til at arbejde sammen med dig.</p>\n\n\n\n <p>Venlig hilsen,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (42, 'de', '<h3 style=\"text-align: center;\"><strong>Beitrittsbrief</strong></h3>\n\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n\n <p>Betreff: Ernennung für die Stelle von {designation}</p>\n\n\n\n\n\n\n\n <p>Sehr geehrter {employee_name},</p>\n\n\n\n <p>Wir freuen uns, Ihnen die Position von {designation} bei {app_name} dem „Unternehmen“ zu den folgenden Bedingungen anbieten zu können</p>\n\n <p>Bedingungen:</p>\n\n\n <p>1. Aufnahme des Arbeitsverhältnisses</p>\n\n <p>Ihre Anstellung gilt ab dem {start_date}</p>\n\n\n <p>2. Berufsbezeichnung</p>\n\n <p>Ihre Berufsbezeichnung lautet {designation}.</p>\n\n\n <p>3. Gehalt</p>\n\n <p>Ihr Gehalt und andere Leistungen sind in Anhang 1 zu diesem Dokument aufgeführt.</p>\n\n\n <p>4. Postort</p>\n\n <p>Sie werden bei {branch} eingestellt. Es kann jedoch erforderlich sein, dass Sie an jedem Geschäftssitz arbeiten, den das Unternehmen hat, oder</p>\n\n <p>später erwerben kann.</p>\n\n\n <p>5. Arbeitszeit</p>\n <p>Die normalen Arbeitstage sind Montag bis Freitag. Sie müssen so viele Stunden arbeiten, wie es für die erforderlich ist</p>\n <p>ordnungsgemäße Erfüllung Ihrer Pflichten gegenüber dem Unternehmen. Die normalen Arbeitszeiten sind von {start_time} bis {end_time} und Sie sind es</p>\n <p>voraussichtlich nicht weniger als {total_hours} Stunden pro Woche arbeiten, und falls erforderlich, abhängig von Ihren zusätzlichen Stunden</p>\n <p>Verantwortlichkeiten.</p>\n\n\n\n <p>6. Urlaub/Urlaub</p>\n\n <p>6.1 Sie haben Anspruch auf Freizeiturlaub von 12 Tagen.</p>\n\n <p>6.2 Sie haben Anspruch auf 12 Arbeitstage bezahlten Krankenurlaub.</p>\n\n <p>6.3 Das Unternehmen teilt zu Beginn jedes Jahres eine Liste der erklärten Feiertage mit.</p>\n\n\n\n <p>7. Art der Pflichten</p>\n\n <p>Sie werden alle Aufgaben, die mit Ihrer Funktion verbunden sind, sowie alle zusätzlichen Aufgaben als Unternehmen nach besten Kräften erfüllen</p>\n\n <p>kann Sie von Zeit zu Zeit zur Leistung auffordern. Ihre spezifischen Pflichten sind in Anhang II zu diesem Dokument aufgeführt.</p>\n\n\n\n <p>8. Firmeneigentum</p>\n\n <p>Sie werden das Firmeneigentum, das Ihnen im Laufe der Zeit für offizielle Zwecke anvertraut werden kann, stets in gutem Zustand halten</p>\n\n <p>Ihrer Anstellung und muss all dieses Eigentum an das Unternehmen zurückgeben, bevor Sie Ihre Gebühr aufgeben, andernfalls die Kosten</p>\n\n <p>derselben werden von der Gesellschaft von Ihnen zurückgefordert.</p>\n\n\n\n <p>9. Leihen/Annehmen von Geschenken</p>\n\n <p>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</p>\n\n <p>unter finanzieller Verpflichtung gegenüber Personen/Kunden, mit denen Sie möglicherweise dienstliche Beziehungen unterhalten.</p>\n\n <p>10. Kündigung</p>\n\n <p>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</p>\n\n <p>schriftliche Kündigung oder Gehalt statt dessen. Gehalt im Sinne dieser Klausel bedeutet Grundgehalt.</p>\n\n <p>10.2 Sie können Ihre Anstellung beim Unternehmen ohne Angabe von Gründen kündigen, indem Sie mindestens [Mitarbeitermitteilung]</p>\n\n <p>Kündigungsfrist von Monaten oder Gehalt für den nicht angesparten Zeitraum, der nach Anpassung der anstehenden Urlaubstage übrig bleibt, zum Stichtag.</p>\n\n <p>10.3 Das Unternehmen behält sich das Recht vor, Ihr Arbeitsverhältnis ohne Kündigungsfrist oder Abfindungszahlung fristlos zu kündigen</p>\n\n <p>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</p>\n\n <p>oder dem Unternehmen Verluste verursacht haben.</p>\n\n <p>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</p>\n\n <p>Papier, sowohl Original als auch Kopien davon, einschließlich aller Muster, Literatur, Verträge, Aufzeichnungen, Listen, Zeichnungen, Blaupausen,</p>\n\n <p>Briefe, Notizen, Daten und dergleichen; und vertrauliche Informationen, die sich in Ihrem Besitz oder unter Ihrer Kontrolle befinden und sich auf Sie beziehen</p>\n\n <p>Beschäftigung oder für die geschäftlichen Angelegenheiten der Kunden.</p>\n\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (43, 'en', '<h3 style=\"text-align: center;\">Joining Letter</h3>\n <p>{date}</p>\n <p>{employee_name}</p>\n <p>{address}</p>\n <p>Subject: Appointment for the post of {designation}</p>\n <p>Dear {employee_name},</p>\n <p>We are pleased to offer you the position of {designation} with {app_name} theCompany on the following terms and</p>\n <p>conditions:</p>\n <p>1. Commencement of employment</p>\n <p>Your employment will be effective, as of {start_date}</p>\n <p>2. Job title</p>\n <p>Your job title will be{designation}.</p>\n <p>3. Salary</p>\n <p>Your salary and other benefits will be as set out in Schedule 1, hereto.</p>\n <p>4. Place of posting</p>\n <p>You will be posted at {branch}. You may however be required to work at any place of business which the Company has, or</p>\n <p>may later acquire.</p>\n <p>5. Hours of Work</p>\n <p>The normal working days are Monday through Friday. You will be required to work for such hours as necessary for the</p>\n <p>proper discharge of your duties to the Company. The normal working hours are from {start_time} to {end_time} and you are</p>\n <p>expected to work not less than {total_hours} hours each week, and if necessary for additional hours depending on your</p>\n <p>responsibilities.</p>\n <p>6. Leave/Holidays</p>\n <p>6.1 You are entitled to casual leave of 12 days.</p>\n <p>6.2 You are entitled to 12 working days of paid sick leave.</p>\n <p>6.3 The Company shall notify a list of declared holidays at the beginning of each year.</p>\n <p>7. Nature of duties</p>\n <p>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</p>\n <p>may call upon you to perform, from time to time. Your specific duties are set out in Schedule II hereto.</p>\n <p>8. Company property</p>\n <p>You will always maintain in good condition Company property, which may be entrusted to you for official use during the course of</p>\n <p>your employment, and shall return all such property to the Company prior to relinquishment of your charge, failing which the cost</p>\n <p>of the same will be recovered from you by the Company.</p>\n <p>9. Borrowing/accepting gifts</p>\n <p>You will not borrow or accept any money, gift, reward, or compensation for your personal gains from or otherwise place yourself</p>\n <p>under pecuniary obligation to any person/client with whom you may be having official dealings.</p>\n <p>10. Termination</p>\n <p>10.1 Your appointment can be terminated by the Company, without any reason, by giving you not less than [Notice] months prior</p>\n <p>notice in writing or salary in lieu thereof. For the purpose of this clause, salary shall mean basic salary.</p>\n <p>10.2 You may terminate your employment with the Company, without any cause, by giving no less than [Employee Notice]</p>\n <p>months prior notice or salary for the unsaved period, left after adjustment of pending leaves, as on date.</p>\n <p>10.3 The Company reserves the right to terminate your employment summarily without any notice period or termination payment</p>\n <p>if it has reasonable ground to believe you are guilty of misconduct or negligence, or have committed any fundamental breach of</p>\n <p>contract, or caused any loss to the Company.</p>\n <p>10. 4 On the termination of your employment for whatever reason, you will return to the Company all property; documents, and</p>\n <p>paper, both original and copies thereof, including any samples, literature, contracts, records, lists, drawings, blueprints,</p>\n <p>letters, notes, data and the like; and Confidential Information, in your possession or under your control relating to your</p>\n <p>employment or to clients business affairs.</p>\n <p>11. Confidential Information</p>\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n <p>Company.</p>\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other</p>\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n <p>the purposes of this clauseConfidential Information means information about the Companys business and that of its customers</p>\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n <p>about the Companys products, processes including ideas, concepts, projections, technology, manuals, drawing, designs,</p>\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n <p>11.4 Your duty to safeguard and not disclos</p>\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n <p>the address intimated by you in the official records.</p>\n <p>13. Applicability of Company Policy</p>\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n <p>leave, employees benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n <p>14. Governing Law/Jurisdiction</p>\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n <p>Gujarat only.</p>\n <p>15. Acceptance of our offer</p>\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n <p>Yours Sincerely,</p>\n <p>{app_name}</p>\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (44, 'es', '<h3 style=\"text-align: center;\"><strong>Carta de unión</strong></h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Asunto: Nombramiento para el puesto de {designation}</p>\n\n\n\n <p>Estimado {employee_name},</p>\n\n <p>Nos complace ofrecerle el puesto de {designation} con {app_name}, la Compañía en los siguientes términos y</p>\n\n <p>condiciones:</p>\n\n\n <p>1. Comienzo del empleo</p>\n\n <p>Su empleo será efectivo a partir del {start_date}</p>\n\n\n <p>2. Título del trabajo</p>\n <p>El título de su trabajo será {designation}.</p>\n\n <p>3. Salario</p>\n\n <p>Su salario y otros beneficios serán los establecidos en el Anexo 1 del presente.</p>\n\n\n <p>4. Lugar de destino</p>\n <p>Se le publicará en {branch}. Sin embargo, es posible que deba trabajar en cualquier lugar de negocios que tenga la Compañía, o</p>\n\n <p>puede adquirir posteriormente.</p>\n\n\n\n <p>5. Horas de trabajo</p>\n\n <p>Los días normales de trabajo son de lunes a viernes. Se le pedirá que trabaje las horas que sean necesarias para el</p>\n\n <p>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á</p>\n\n <p>se espera que trabaje no menos de {total_hours} horas cada semana y, si es necesario, horas adicionales dependiendo de su</p>\n\n <p>responsabilidades.</p>\n\n\n\n <p>6. Licencia/Vacaciones</p>\n\n <p>6.1 Tiene derecho a un permiso eventual de 12 días.</p>\n\n <p>6.2 Tiene derecho a 12 días laborables de baja por enfermedad remunerada.</p>\n\n <p>6.3 La Compañía deberá notificar una lista de días festivos declarados al comienzo de cada año.</p>\n\n\n\n <p>7. Naturaleza de los deberes</p>\n\n <p>Desempeñará lo mejor que pueda todas las funciones inherentes a su puesto y aquellas funciones adicionales que la empresa</p>\n\n <p>puede pedirte que actúes, de vez en cuando. Sus deberes específicos se establecen en el Anexo II del presente.</p>\n\n\n\n <p>8. Propiedad de la empresa</p>\n\n <p>Siempre mantendrá en buenas condiciones la propiedad de la Compañía, que se le puede confiar para uso oficial durante el curso de</p>\n\n <p>su empleo, y devolverá todos esos bienes a la Compañía antes de renunciar a su cargo, en caso contrario, el costo</p>\n\n <p>de la misma será recuperada de usted por la Compañía.</p>\n\n\n\n <p>9. Tomar prestado/aceptar regalos</p>\n\n <p>No pedirá prestado ni aceptará dinero, obsequios, recompensas o compensaciones por sus ganancias personales o se colocará de otra manera</p>\n\n <p>bajo obligación pecuniaria a cualquier persona/cliente con quien pueda tener tratos oficiales.</p>\n <p>10. Terminación</p>\n\n <p>10.1 Su nombramiento puede ser rescindido por la Compañía, sin ningún motivo, al darle no menos de [Aviso] meses antes</p>\n\n <p>aviso por escrito o salario en su lugar. Para los efectos de esta cláusula, se entenderá por salario el salario base.</p>\n\n <p>10.2 Puede rescindir su empleo con la Compañía, sin ninguna causa, dando no menos de [Aviso al empleado]</p>\n\n <p>meses de preaviso o salario por el período no ahorrado, remanente después del ajuste de licencias pendientes, a la fecha.</p>\n\n <p>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</p>\n\n <p>si tiene motivos razonables para creer que usted es culpable de mala conducta o negligencia, o ha cometido una violación fundamental de</p>\n\n <p>contrato, o causado cualquier pérdida a la Compañía.</p>\n\n <p>10. 4 A la terminación de su empleo por cualquier motivo, devolverá a la Compañía todos los bienes; documentos, y</p>\n\n <p>papel, tanto en original como en copia del mismo, incluyendo cualquier muestra, literatura, contratos, registros, listas, dibujos, planos,</p>\n\n <p>cartas, notas, datos y similares; e Información confidencial, en su posesión o bajo su control en relación con su</p>\n\n <p>empleo o a los asuntos comerciales de los clientes.</p>\n <p>11. Información confidencial</p>\n\n <p>11. 1 Durante su empleo en la Compañía, dedicará todo su tiempo, atención y habilidad lo mejor que pueda para</p>\n\n <p>son negocios. Usted no deberá, directa o indirectamente, comprometerse o asociarse con, estar conectado, interesado, empleado o</p>\n\n <p>tiempo o seguir cualquier curso de estudio, sin el permiso previo de la Compañía. participar en cualquier otro negocio o</p>\n\n <p>actividades o cualquier otro puesto o trabajo a tiempo parcial o seguir cualquier curso de estudio, sin el permiso previo de la</p>\n\n <p>Compañía.</p>\n\n <p>11.2 Siempre debe mantener el más alto grado de confidencialidad y mantener como confidenciales los registros, documentos y otros</p>\n\n <p>Información confidencial relacionada con el negocio de la Compañía que usted pueda conocer o confiarle por cualquier medio</p>\n\n <p>y utilizará dichos registros, documentos e información solo de manera debidamente autorizada en interés de la Compañía. Para</p>\n\n <p>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.</p>\n\n <p>que no está disponible para el público en general y que usted puede aprender en el curso de su empleo. Esto incluye,</p>\n\n <p>pero no se limita a, información relacionada con la organización, sus listas de clientes, políticas de empleo, personal e información</p>\n\n <p>sobre los productos de la Compañía, procesos que incluyen ideas, conceptos, proyecciones, tecnología, manuales, dibujos, diseños,</p>\n\n <p>especificaciones, y todos los papeles, currículos, registros y otros documentos que contengan dicha Información Confidencial.</p>\n\n <p>11.3 En ningún momento, sacará ninguna Información Confidencial de la oficina sin permiso.</p>\n\n <p>11.4 Su deber de salvaguardar y no divulgar</p>\n\n <p>La Información Confidencial sobrevivirá a la expiración o terminación de este Acuerdo y/o su empleo con la Compañía.</p>\n\n <p>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</p>\n\n <p>otro recurso que la Compañía pueda tener contra usted por ley.</p>\n <p>12. Avisos</p>\n\n <p>Usted puede enviar notificaciones a la Compañía a su domicilio social. La Compañía puede enviarle notificaciones a usted en</p>\n\n <p>la dirección indicada por usted en los registros oficiales.</p>\n\n\n\n <p>13. Aplicabilidad de la política de la empresa</p>\n\n <p>La Compañía tendrá derecho a hacer declaraciones de política de vez en cuando relacionadas con asuntos como el derecho a licencia, maternidad</p>\n\n <p>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.</p>\n\n <p>Todas las decisiones políticas de la Compañía serán vinculantes para usted y anularán este Acuerdo en esa medida.</p>\n\n\n\n <p>14. Ley aplicable/Jurisdicción</p>\n\n <p>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</p>\n\n <p>Sólo Gujarat.</p>\n\n\n\n <p>15. Aceptación de nuestra oferta</p>\n\n <p>Por favor, confirme su aceptación de este Contrato de Empleo firmando y devolviendo el duplicado.</p>\n\n\n\n <p>Le damos la bienvenida y esperamos recibir su aceptación y trabajar con usted.</p>\n\n\n\n <p>Tuyo sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (45, 'fr', '<h3 style=\"text-align: center;\">Lettre dadhésion</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n <p>{address}</p>\n\n\n <p>Objet : Nomination pour le poste de {designation}</p>\n\n\n\n <p>Cher {employee_name},</p>\n\n\n <p>Nous sommes heureux de vous proposer le poste de {designation} avec {app_name} la \"Société\" selon les conditions suivantes et</p>\n\n <p>les conditions:</p>\n\n <p>1. Entrée en fonction</p>\n\n <p>Votre emploi sera effectif à partir du {start_date}</p>\n\n\n\n <p>2. Intitulé du poste</p>\n\n <p>Votre titre de poste sera {designation}.</p>\n\n\n\n <p>3. Salaire</p>\n\n <p>Votre salaire et vos autres avantages seront tels quindiqués à lannexe 1 ci-jointe.</p>\n\n\n <p>4. Lieu de détachement</p>\n <p>Vous serez affecté à {branch}. Vous pouvez cependant être tenu de travailler dans nimporte quel lieu daffaires que la Société a, ou</p>\n\n <p>pourra acquérir plus tard.</p>\n\n\n\n <p>5. Heures de travail</p>\n\n <p>Les jours ouvrables normaux sont du lundi au vendredi. Vous devrez travailler les heures nécessaires à la</p>\n\n <p>lexercice correct de vos fonctions envers la Société. Les heures normales de travail vont de {start_time} à {end_time} et vous êtes</p>\n\n <p>devrait travailler au moins {total_hours} heures par semaine, et si nécessaire des heures supplémentaires en fonction de votre</p>\n\n <p>responsabilités.</p>\n\n <p>6. Congés/Vacances</p>\n\n <p>6.1 Vous avez droit à un congé occasionnel de 12 jours.</p>\n\n <p>6.2 Vous avez droit à 12 jours ouvrables de congé de maladie payé.</p>\n\n <p>6.3 La Société communiquera une liste des jours fériés déclarés au début de chaque année.</p>\n\n\n\n <p>7. Nature des fonctions</p>\n\n <p>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</p>\n\n <p>peut faire appel à vous pour effectuer, de temps à autre. Vos fonctions spécifiques sont énoncées à lannexe II ci-jointe.</p>\n\n\n\n <p>8. Biens sociaux</p>\n\n <p>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</p>\n\n <p>votre emploi, et doit restituer tous ces biens à la Société avant labandon de votre charge, à défaut de quoi le coût</p>\n\n <p>de même seront récupérés auprès de vous par la Société.</p>\n\n\n\n <p>9. Emprunter/accepter des cadeaux</p>\n\n <p>Vous nemprunterez ni naccepterez dargent, de cadeau, de récompense ou de compensation pour vos gains personnels ou vous placerez autrement</p>\n\n <p>sous obligation pécuniaire envers toute personne/client avec qui vous pourriez avoir des relations officielles.</p>\n <p>10. Résiliation</p>\n\n <p>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</p>\n\n <p>un préavis écrit ou un salaire en tenant lieu. Aux fins de la présente clause, salaire sentend du salaire de base.</p>\n\n <p>10.2 Vous pouvez résilier votre emploi au sein de la Société, sans motif, en donnant au moins [Avis à lemployé]</p>\n\n <p>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.</p>\n\n <p>10.3 La Société se réserve le droit de résilier votre emploi sans préavis ni indemnité de licenciement.</p>\n\n <p>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</p>\n\n <p>contrat, ou causé une perte à la Société.</p>\n\n <p>10. 4 À la fin de votre emploi pour quelque raison que ce soit, vous restituerez à la Société tous les biens ; document, et</p>\n\n <p>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,</p>\n\n <p>lettres, notes, données et similaires; et Informations confidentielles, en votre possession ou sous votre contrôle relatives à votre</p>\n\n <p>lemploi ou aux affaires commerciales des clients.</p>\n <p>11. Informations confidentielles</p>\n\n <p>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</p>\n\n <p>son affaire. Vous ne devez pas, directement ou indirectement, vous engager ou vous associer à, être lié à, concerné, employé ou</p>\n\n <p>temps ou poursuivre quelque programme détudes que ce soit, sans lautorisation préalable de la Société. engagé dans toute autre entreprise ou</p>\n\n <p>activités ou tout autre poste ou travail à temps partiel ou poursuivre des études quelconques, sans lautorisation préalable du</p>\n\n <p>Compagnie.</p>\n\n <p>11.2 Vous devez toujours maintenir le plus haut degré de confidentialité et garder confidentiels les dossiers, documents et autres</p>\n\n <p>Informations confidentielles relatives à lactivité de la Société dont vous pourriez avoir connaissance ou qui vous seraient confiées par tout moyen</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>qui nest pas accessible au grand public et dont vous pourriez avoir connaissance dans le cadre de votre emploi. Ceci comprend,</p>\n\n <p>mais sans sy limiter, les informations relatives à lorganisation, ses listes de clients, ses politiques demploi, son personnel et les informations</p>\n\n <p>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,</p>\n\n <p>spécifications, et tous les papiers, curriculum vitae, dossiers et autres documents contenant de telles informations confidentielles.</p>\n\n <p>11.3 À aucun moment, vous ne retirerez des informations confidentielles du bureau sans autorisation.</p>\n\n <p>11.4 Votre devoir de protéger et de ne pas divulguer</p>\n\n <p>Les Informations confidentielles survivront à lexpiration ou à la résiliation du présent Contrat et/ou à votre emploi au sein de la Société.</p>\n\n <p>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</p>\n\n <p>autre recours que la Société peut avoir contre vous en droit.</p>\n <p>12. Avis</p>\n\n <p>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é à</p>\n\n <p>ladresse que vous avez indiquée dans les registres officiels.</p>\n\n\n\n <p>13. Applicabilité de la politique de lentreprise</p>\n\n <p>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é</p>\n\n <p>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.</p>\n\n <p>Toutes ces décisions politiques de la Société vous lieront et prévaudront sur le présent Contrat dans cette mesure.</p>\n\n\n\n <p>14. Droit applicable/juridiction</p>\n\n <p>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</p>\n\n <p>Gujarat uniquement.</p>\n\n\n\n <p>15. Acceptation de notre offre</p>\n\n <p>Veuillez confirmer votre acceptation de ce contrat de travail en signant et en renvoyant le duplicata.</p>\n\n\n\n <p>Nous vous souhaitons la bienvenue et nous nous réjouissons de recevoir votre acceptation et de travailler avec vous.</p>\n\n\n\n <p>Cordialement,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (46, 'id', '<h3 style=\"text-align: center;\">Surat Bergabung</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>Perihal: Pengangkatan untuk jabatan {designation}</p>\n\n\n <p>{employee_name} yang terhormat,</p>\n\n <p>Kami dengan senang hati menawarkan kepada Anda, posisi {designation} dengan {app_name} sebagai Perusahaan dengan persyaratan dan</p>\n\n <p>kondisi:</p>\n\n\n\n <p>1. Mulai bekerja</p>\n\n <p>Pekerjaan Anda akan efektif, mulai {start_date}</p>\n\n\n <p>2. Jabatan</p>\n <p>Jabatan Anda adalah {designation}.</p>\n\n <p>3. Gaji</p>\n <p>Gaji Anda dan tunjangan lainnya akan diatur dalam Jadwal 1, di sini.</p>\n\n\n <p>4. Tempat posting</p>\n\n <p>Anda akan diposkan di {branch}. Namun Anda mungkin diminta untuk bekerja di tempat bisnis mana pun yang dimiliki Perusahaan, atau</p>\n\n <p>nantinya dapat memperoleh.</p>\n\n\n\n <p>5. Jam Kerja</p>\n\n <p>Hari kerja normal adalah Senin sampai Jumat. Anda akan diminta untuk bekerja selama jam-jam yang diperlukan untuk</p>\n\n <p>pelaksanaan tugas Anda dengan benar di Perusahaan. Jam kerja normal adalah dari {start_time} hingga {end_time} dan Anda</p>\n\n <p>diharapkan bekerja tidak kurang dari {total_hours} jam setiap minggu, dan jika perlu untuk jam tambahan tergantung pada</p>\n\n <p>tanggung jawab.</p>\n\n\n\n <p>6. Cuti/Libur</p>\n\n <p>6.1 Anda berhak atas cuti biasa selama 12 hari.</p>\n\n <p>6.2 Anda berhak atas 12 hari kerja cuti sakit berbayar.</p>\n\n <p>6.3 Perusahaan akan memberitahukan daftar hari libur yang diumumkan pada awal setiap tahun.</p>\n\n\n\n <p>7. Sifat tugas</p>\n\n <p>Anda akan melakukan yang terbaik dari kemampuan Anda semua tugas yang melekat pada jabatan Anda dan tugas tambahan seperti perusahaan</p>\n\n <p>dapat memanggil Anda untuk tampil, dari waktu ke waktu. Tugas khusus Anda ditetapkan dalam Jadwal II di sini.</p>\n\n\n\n <p>8. Properti perusahaan</p>\n\n <p>Anda akan selalu menjaga properti Perusahaan dalam kondisi baik, yang dapat dipercayakan kepada Anda untuk penggunaan resmi selama</p>\n\n <p>pekerjaan Anda, dan akan mengembalikan semua properti tersebut kepada Perusahaan sebelum melepaskan biaya Anda, jika tidak ada biayanya</p>\n\n <p>yang sama akan dipulihkan dari Anda oleh Perusahaan.</p>\n\n\n\n <p>9. Meminjam/menerima hadiah</p>\n\n <p>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</p>\n\n <p>di bawah kewajiban uang kepada setiap orang/klien dengan siapa Anda mungkin memiliki hubungan resmi.</p>\n <p>10. Penghentian</p>\n\n <p>10.1 Penunjukan Anda dapat diakhiri oleh Perusahaan, tanpa alasan apa pun, dengan memberi Anda tidak kurang dari [Pemberitahuan] bulan sebelumnya</p>\n\n <p>pemberitahuan secara tertulis atau gaji sebagai penggantinya. Untuk maksud pasal ini, gaji berarti gaji pokok.</p>\n\n <p>10.2 Anda dapat memutuskan hubungan kerja Anda dengan Perusahaan, tanpa alasan apa pun, dengan memberikan tidak kurang dari [Pemberitahuan Karyawan]</p>\n\n <p>pemberitahuan atau gaji bulan sebelumnya untuk periode yang belum disimpan, yang tersisa setelah penyesuaian cuti yang tertunda, pada tanggal.</p>\n\n <p>10.3 Perusahaan berhak untuk mengakhiri hubungan kerja Anda dengan segera tanpa pemberitahuan jangka waktu atau pembayaran pemutusan hubungan kerja</p>\n\n <p>jika memiliki alasan yang masuk akal untuk meyakini bahwa Anda bersalah atas kesalahan atau kelalaian, atau telah melakukan pelanggaran mendasar apa pun terhadap</p>\n\n <p>kontrak, atau menyebabkan kerugian bagi Perusahaan.</p>\n\n <p>10. 4 Pada pemutusan hubungan kerja Anda karena alasan apa pun, Anda akan mengembalikan semua properti kepada Perusahaan; dokumen, dan</p>\n\n <p>kertas, baik asli maupun salinannya, termasuk contoh, literatur, kontrak, catatan, daftar, gambar, cetak biru,</p>\n\n <p>surat, catatan, data dan sejenisnya; dan Informasi Rahasia, yang Anda miliki atau di bawah kendali Anda terkait dengan</p>\n\n <p>pekerjaan atau untuk urusan bisnis klien.</p>\n <p>11. Informasi Rahasia</p>\n\n <p>11. 1 Selama bekerja di Perusahaan, Anda akan mencurahkan seluruh waktu, perhatian, dan keterampilan Anda sebaik mungkin untuk</p>\n\n <p>bisnisnya. Anda tidak boleh, secara langsung atau tidak langsung, terlibat atau mengasosiasikan diri Anda dengan, terhubung dengan, terkait, dipekerjakan, atau</p>\n\n <p>waktu atau mengikuti program studi apapun, tanpa izin sebelumnya dari Perusahaan.terlibat dalam bisnis lain atau</p>\n\n <p>kegiatan atau pos atau pekerjaan paruh waktu lainnya atau mengejar program studi apa pun, tanpa izin sebelumnya dari</p>\n\n <p>Perusahaan.</p>\n\n <p>11.2 Anda harus selalu menjaga tingkat kerahasiaan tertinggi dan merahasiakan catatan, dokumen, dan lainnya</p>\n\n <p>Informasi Rahasia yang berkaitan dengan bisnis Perusahaan yang mungkin Anda ketahui atau rahasiakan kepada Anda dengan cara apa pun</p>\n\n <p>dan Anda akan menggunakan catatan, dokumen, dan informasi tersebut hanya dengan cara yang sah untuk kepentingan Perusahaan. Untuk</p>\n\n <p>tujuan klausul ini Informasi Rahasia berarti informasi tentang bisnis Perusahaan dan pelanggannya</p>\n\n <p>yang tidak tersedia untuk masyarakat umum dan yang mungkin Anda pelajari selama masa kerja Anda. Ini termasuk,</p>\n\n <p>tetapi tidak terbatas pada, informasi yang berkaitan dengan organisasi, daftar pelanggannya, kebijakan ketenagakerjaan, personel, dan informasi</p>\n\n <p>tentang produk Perusahaan, proses termasuk ide, konsep, proyeksi, teknologi, manual, gambar, desain,</p>\n\n <p>spesifikasi, dan semua makalah, resume, catatan dan dokumen lain yang berisi Informasi Rahasia tersebut.</p>\n\n <p>11.3 Kapan pun Anda akan menghapus Informasi Rahasia apa pun dari kantor tanpa izin.</p>\n\n <p>11.4 Kewajiban Anda untuk melindungi dan tidak mengungkapkan</p>\n\n <p>e Informasi Rahasia akan tetap berlaku setelah berakhirnya atau pengakhiran Perjanjian ini dan/atau hubungan kerja Anda dengan Perusahaan.</p>\n\n <p>11.5 Pelanggaran terhadap ketentuan klausul ini akan membuat Anda bertanggung jawab atas pemecatan singkat berdasarkan klausul di atas selain dari:</p>\n\n <p>upaya hukum lain yang mungkin dimiliki Perusahaan terhadap Anda secara hukum.</p>\n <p>12. Pemberitahuan</p>\n\n <p>Pemberitahuan dapat diberikan oleh Anda kepada Perusahaan di alamat kantor terdaftarnya. Pemberitahuan dapat diberikan oleh Perusahaan kepada Anda di</p>\n\n <p>alamat yang diberitahukan oleh Anda dalam catatan resmi.</p>\n\n\n\n <p>13. Keberlakuan Kebijakan Perusahaan</p>\n\n <p>Perusahaan berhak untuk membuat pernyataan kebijakan dari waktu ke waktu berkaitan dengan hal-hal seperti hak cuti, persalinan</p>\n\n <p>cuti, tunjangan karyawan, jam kerja, kebijakan transfer, dll., dan dapat mengubahnya dari waktu ke waktu atas kebijakannya sendiri.</p>\n\n <p>Semua keputusan kebijakan Perusahaan tersebut akan mengikat Anda dan akan mengesampingkan Perjanjian ini sejauh itu.</p>\n\n\n\n <p>14. Hukum/Yurisdiksi yang Mengatur</p>\n\n <p>Pekerjaan Anda dengan Perusahaan tunduk pada undang-undang Negara. Semua perselisihan akan tunduk pada yurisdiksi Pengadilan Tinggi</p>\n\n <p>Gujarat saja.</p>\n\n\n\n <p>15. Penerimaan penawaran kami</p>\n\n <p>Harap konfirmasikan penerimaan Anda atas Kontrak Kerja ini dengan menandatangani dan mengembalikan salinan duplikatnya.</p>\n\n\n\n <p>Kami menyambut Anda dan berharap untuk menerima penerimaan Anda dan bekerja sama dengan Anda.</p>\n\n\n\n <p>Dengan hormat,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (47, 'it', '<h3 style=\"text-align: center;\">Lettera di adesione</h3>\n\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n <p>Oggetto: Appuntamento alla carica di {designation}</p>\n\n\n <p>Gentile {employee_name},</p>\n\n <p>Siamo lieti di offrirti la posizione di {designation} con {app_name} la \"Società\" alle seguenti condizioni e</p>\n\n <p>condizioni:</p>\n\n\n <p>1. Inizio del rapporto di lavoro</p>\n\n <p>Il tuo impiego sarà effettivo a partire da {start_date}</p>\n\n\n\n <p>2. Titolo di lavoro</p>\n\n <p>Il tuo titolo di lavoro sarà {designation}.</p>\n\n <p>3. Stipendio</p>\n\n <p>Il tuo stipendio e altri benefici saranno come indicato nellAllegato 1, qui di seguito.</p>\n\n\n\n <p>4. Luogo di invio</p>\n\n <p>Sarai inviato a {branch}. Tuttavia, potrebbe essere richiesto di lavorare in qualsiasi luogo di attività che la Società ha, o</p>\n\n <p>potrà successivamente acquisire.</p>\n\n\n\n <p>5. Orario di lavoro</p>\n\n <p>I normali giorni lavorativi sono dal lunedì al venerdì. Ti verrà richiesto di lavorare per le ore necessarie per il</p>\n\n <p>corretto adempimento dei propri doveri nei confronti della Società. Lorario di lavoro normale va da {start_time} a {end_time} e tu lo sei</p>\n\n <p>dovrebbe lavorare non meno di {total_hours} ore ogni settimana e, se necessario, per ore aggiuntive a seconda del tuo</p>\n\n <p>responsabilità.</p>\n\n\n\n <p>6. Permessi/Festività</p>\n\n <p>6.1 Hai diritto a un congedo occasionale di 12 giorni.</p>\n\n <p>6.2 Hai diritto a 12 giorni lavorativi di congedo per malattia retribuito.</p>\n\n <p>6.3 La Società comunica allinizio di ogni anno un elenco delle festività dichiarate.</p>\n\n\n\n <p>7. Natura degli incarichi</p>\n\n <p>Eseguirai al meglio delle tue capacità tutti i compiti inerenti al tuo incarico e compiti aggiuntivi come lazienda</p>\n\n <p>può invitarti a esibirti, di tanto in tanto. I tuoi doveri specifici sono stabiliti nellAllegato II del presente documento.</p>\n\n\n\n <p>8. Proprietà aziendale</p>\n\n <p>Manterrete sempre in buono stato i beni dellAzienda, che nel corso dellanno potrebbero esservi affidati per uso ufficiale</p>\n\n <p>il tuo impiego, e restituirà tutte queste proprietà alla Società prima della rinuncia al tuo addebito, in caso contrario il costo</p>\n\n <p>degli stessi saranno da voi recuperati dalla Società.</p>\n\n\n\n <p>9. Prendere in prestito/accettare regali</p>\n\n <p>Non prenderai in prestito né accetterai denaro, dono, ricompensa o compenso per i tuoi guadagni personali da o altrimenti collocato te stesso</p>\n\n <p>sotto obbligazione pecuniaria nei confronti di qualsiasi persona/cliente con cui potresti avere rapporti ufficiali.</p>\n <p>10. Cessazione</p>\n\n <p>10.1 Il tuo incarico può essere risolto dalla Società, senza alcun motivo, dandoti non meno di [Avviso] mesi prima</p>\n\n <p>avviso scritto o stipendio in sostituzione di esso. Ai fini della presente clausola, per stipendio si intende lo stipendio base.</p>\n\n <p>10.2 È possibile terminare il proprio rapporto di lavoro con la Società, senza alcuna causa, fornendo non meno di [Avviso per il dipendente]</p>\n\n <p>mesi di preavviso o stipendio per il periodo non risparmiato, lasciato dopo ladeguamento delle ferie pendenti, come alla data.</p>\n\n <p>10.3 La Società si riserva il diritto di terminare il rapporto di lavoro sommariamente senza alcun periodo di preavviso o pagamento di cessazione</p>\n\n <p>se ha fondati motivi per ritenere che tu sia colpevole di cattiva condotta o negligenza, o abbia commesso una violazione fondamentale</p>\n\n <p>contratto, o ha causato danni alla Società.</p>\n\n <p>10. 4 Alla cessazione del rapporto di lavoro per qualsiasi motivo, restituirete alla Società tutti i beni; documenti, e</p>\n\n <p>carta, sia in originale che in copia, inclusi eventuali campioni, letteratura, contratti, registrazioni, elenchi, disegni, progetti,</p>\n\n <p>lettere, note, dati e simili; e Informazioni Riservate, in tuo possesso o sotto il tuo controllo, relative alla tua</p>\n\n <p>lavoro o agli affari dei clienti.</p>\n <p>11. Confidential Information</p>\n\n <p>11. 1 During your employment with the Company you will devote your whole time, attention, and skill to the best of your ability for</p>\n\n <p>its business. You shall not, directly or indirectly, engage or associate yourself with, be connected with, concerned, employed, or</p>\n\n <p>time or pursue any course of study whatsoever, without the prior permission of the Company.engaged in any other business or</p>\n\n <p>activities or any other post or work part-time or pursue any course of study whatsoever, without the prior permission of the</p>\n\n <p>Company.</p>\n\n <p>11.2 You must always maintain the highest degree of confidentiality and keep as confidential the records, documents, and other </p>\n\n <p>Confidential Information relating to the business of the Company which may be known to you or confided in you by any means</p>\n\n <p>and you will use such records, documents and information only in a duly authorized manner in the interest of the Company. For</p>\n\n <p>the purposes of this clause ‘Confidential Information’ means information about the Company’s business and that of its customers</p>\n\n <p>which is not available to the general public and which may be learned by you in the course of your employment. This includes,</p>\n\n <p>but is not limited to, information relating to the organization, its customer lists, employment policies, personnel, and information</p>\n\n <p>about the Company’s products, processes including ideas, concepts, projections, technology, manuals, drawing, designs, </p>\n\n <p>specifications, and all papers, resumes, records and other documents containing such Confidential Information.</p>\n\n <p>11.3 At no time, will you remove any Confidential Information from the office without permission.</p>\n\n <p>11.4 Your duty to safeguard and not disclos</p>\n\n <p>e Confidential Information will survive the expiration or termination of this Agreement and/or your employment with the Company.</p>\n\n <p>11.5 Breach of the conditions of this clause will render you liable to summary dismissal under the clause above in addition to any</p>\n\n <p>other remedy the Company may have against you in law.</p>\n <p>12. Notices</p>\n\n <p>Notices may be given by you to the Company at its registered office address. Notices may be given by the Company to you at</p>\n\n <p>the address intimated by you in the official records.</p>\n\n\n\n <p>13. Applicability of Company Policy</p>\n\n <p>The Company shall be entitled to make policy declarations from time to time pertaining to matters like leave entitlement,maternity</p>\n\n <p>leave, employees’ benefits, working hours, transfer policies, etc., and may alter the same from time to time at its sole discretion.</p>\n\n <p>All such policy decisions of the Company shall be binding on you and shall override this Agreement to that extent.</p>\n\n\n\n <p>14. Governing Law/Jurisdiction</p>\n\n <p>Your employment with the Company is subject to Country laws. All disputes shall be subject to the jurisdiction of High Court</p>\n\n <p>Gujarat only.</p>\n\n\n\n <p>15. Acceptance of our offer</p>\n\n <p>Please confirm your acceptance of this Contract of Employment by signing and returning the duplicate copy.</p>\n\n\n\n <p>We welcome you and look forward to receiving your acceptance and to working with you.</p>\n\n\n\n <p>Yours Sincerely,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>\n ', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (48, 'ja', '<h3 style=\"text-align: center;\">入会の手紙</h3>\n\n <p>{date}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n\n <p>件名: {designation} の役職への任命</p>\n\n\n\n <p>{employee_name} 様</p>\n\n\n <p>{app_name} の {designation} の地位を以下の条件で「会社」として提供できることをうれしく思います。</p>\n\n <p>条件:</p>\n\n\n <p>1. 雇用開始</p>\n\n <p>あなたの雇用は {start_date} から有効になります</p>\n\n\n <p>2. 役職</p>\n\n <p>あなたの役職は{designation}になります。</p>\n\n\n <p>3. 給与</p>\n\n <p>あなたの給与およびその他の福利厚生は、本明細書のスケジュール 1 に記載されているとおりです。</p>\n\n\n <p>4. 掲示場所</p>\n\n <p>{branch} に掲載されます。ただし、会社が所有する事業所で働く必要がある場合があります。</p>\n\n <p>後で取得する場合があります。</p>\n\n\n\n <p>5. 労働時間</p>\n\n <p>通常の営業日は月曜日から金曜日です。あなたは、そのために必要な時間働く必要があります。</p>\n\n <p>会社に対するあなたの義務の適切な遂行。通常の勤務時間は {start_time} から {end_time} までで、あなたは</p>\n\n <p>毎週 {total_hours} 時間以上の勤務が期待される</p>\n\n <p>責任。</p>\n\n\n\n <p>6.休暇・休日</p>\n\n <p>6.1 12 日間の臨時休暇を取得する権利があります。</p>\n\n <p>6.2 12 日間の有給病気休暇を取る権利があります。</p>\n\n <p>6.3 当社は、毎年の初めに宣言された休日のリストを通知するものとします。</p>\n\n\n\n <p>7. 職務内容</p>\n\n <p>あなたは、自分のポストに固有のすべての義務と、会社としての追加の義務を最大限に遂行します。</p>\n\n <p>時々あなたに演奏を依頼するかもしれません。あなたの特定の義務は、本明細書のスケジュール II に記載されています。</p>\n\n\n\n <p>8. 会社財産</p>\n\n <p>あなたは、会社の所有物を常に良好な状態に維持するものとします。</p>\n\n <p>あなたの雇用を放棄し、あなたの料金を放棄する前に、そのようなすべての財産を会社に返還するものとします。</p>\n\n <p>同じのは、会社によってあなたから回収されます。</p>\n\n\n\n <p>9. 貸出・贈答品の受け取り</p>\n\n <p>あなたは、あなた自身から、または他の方法であなた自身の場所から個人的な利益を得るための金銭、贈り物、報酬、または補償を借りたり、受け取ったりしません。</p>\n\n <p>あなたが公式の取引をしている可能性のある人物/クライアントに対する金銭的義務の下で。</p>\n <p>10. 終了</p>\n\n <p>10.1 少なくとも [通知] か月前に通知することにより、理由のいかんを問わず、会社はあなたの任命を終了することができます。</p>\n\n <p>書面による通知またはその代わりの給与。この条項の目的上、給与とは基本給を意味するものとします。</p>\n\n <p>10.2 あなたは、少なくとも [従業員通知] を提出することにより、理由のいかんを問わず、会社での雇用を終了することができます。</p>\n\n <p>保留中の休暇の調整後に残された、保存されていない期間の数か月前の通知または給与は、日付のとおりです。</p>\n\n <p>10.3 当社は、通知期間や解雇補償金なしに、あなたの雇用を即座に終了させる権利を留保します。</p>\n\n <p>あなたが不正行為または過失で有罪であると信じる合理的な根拠がある場合、または基本的な違反を犯した場合</p>\n\n <p>契約、または当社に損害を与えた。</p>\n\n <p>10. 4 何らかの理由で雇用が終了した場合、あなたは会社にすべての財産を返還するものとします。ドキュメント、および</p>\n\n <p>サンプル、文献、契約書、記録、リスト、図面、青写真を含む、原本とコピーの両方の紙、</p>\n\n <p>手紙、メモ、データなど。あなたが所有する、またはあなたの管理下にある機密情報。</p>\n\n <p>雇用またはクライアントの業務に。</p>\n <p>11. 機密情報</p>\n\n <p>11. 1 当社での雇用期間中、あなたは自分の全時間、注意、およびスキルを、自分の能力の限りを尽くして捧げます。</p>\n\n <p>そのビジネス。あなたは、直接的または間接的に、関与したり、関連付けたり、接続したり、関係したり、雇用したり、または</p>\n\n <p>会社の事前の許可なしに、時間や学習コースを追求すること。他のビジネスに従事すること、または</p>\n\n <p>の事前の許可なしに、活動またはその他の投稿またはアルバイトをしたり、何らかの研究コースを追求したりすること。</p>\n\n <p>会社。</p>\n\n <p>11.2 常に最高度の機密性を維持し、記録、文書、およびその他の情報を機密として保持する必要があります。</p>\n\n <p>お客様が知っている、または何らかの方法でお客様に内密にされている可能性がある、当社の事業に関連する機密情報</p>\n\n <p>また、あなたは、会社の利益のために正当に承認された方法でのみ、そのような記録、文書、および情報を使用するものとします。為に</p>\n\n <p>この条項の目的 「機密情報」とは、会社の事業および顧客の事業に関する情報を意味します。</p>\n\n <p>これは一般には公開されておらず、雇用の過程で学習する可能性があります。これも、</p>\n\n <p>組織、その顧客リスト、雇用方針、人事、および情報に関連する情報に限定されません</p>\n\n <p>当社の製品、アイデアを含むプロセス、コンセプト、予測、技術、マニュアル、図面、デザイン、</p>\n\n <p>仕様、およびそのような機密情報を含むすべての書類、履歴書、記録、およびその他の文書。</p>\n\n <p>11.3 いかなる時も、許可なくオフィスから機密情報を削除しないでください。</p>\n\n <p>11.4 保護し、開示しないというあなたの義務</p>\n\n <p>e 機密情報は、本契約および/または当社との雇用の満了または終了後も存続します。</p>\n\n <p>11.5 この条項の条件に違反した場合、上記の条項に基づく略式解雇の対象となります。</p>\n\n <p>会社が法律であなたに対して持つことができるその他の救済。</p>\n <p>12. 通知</p>\n\n <p>通知は、登録された事務所の住所で会社に提出することができます。通知は、当社からお客様に提供される場合があります。</p>\n\n <p>公式記録であなたがほのめかした住所。</p>\n\n\n\n <p>13. 会社方針の適用性</p>\n\n <p>会社は、休暇の資格、出産などの事項に関して、随時方針を宣言する権利を有するものとします。</p>\n\n <p>休暇、従業員の福利厚生、勤務時間、異動ポリシーなどであり、独自の裁量により随時変更される場合があります。</p>\n\n <p>当社のそのようなポリシー決定はすべて、あなたを拘束し、その範囲で本契約を無効にするものとします。</p>\n\n\n\n <p>14. 準拠法・裁判管轄</p>\n\n <p>当社でのあなたの雇用は、国の法律の対象となります。すべての紛争は、高等裁判所の管轄に服するものとします</p>\n\n <p>グジャラートのみ。</p>\n\n\n\n <p>15. オファーの受諾</p>\n\n <p>副本に署名して返送することにより、この雇用契約に同意したことを確認してください。</p>\n\n\n\n <p>私たちはあなたを歓迎し、あなたの受け入れを受け取り、あなたと一緒に働くことを楽しみにしています.</p>\n\n\n\n <p>敬具、</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); INSERT INTO `joining_letters` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (49, 'nl', '<h3 style=\"text-align: center;\">Deelnemende brief</h3>\n\n <p>{date}</p>\n\n <p>{employee}</p>\n\n <p>{address}</p>\n\n <p>Onderwerp: Benoeming voor de functie van {designation}</p>\n\n <p>Beste {employee_name},</p>\n\n <p>We zijn verheugd u de positie van {designation} bij {app_name} het Bedrijf aan te bieden onder de volgende voorwaarden en</p>\n\n <p>conditie:</p>\n\n\n <p>1. Indiensttreding</p>\n <p>Uw dienstverband gaat in op {start_date}</p>\n\n\n <p>2. Functietitel</p>\n\n <p>Uw functietitel wordt {designation}.</p>\n\n <p>3. Salaris</p>\n\n <p>Uw salaris en andere voordelen zijn zoals uiteengezet in Schema 1 hierbij.</p>\n\n <p>4. Plaats van detachering</p>\n\n <p>Je wordt geplaatst op {branch}. Het kan echter zijn dat u moet werken op een bedrijfslocatie die het Bedrijf heeft, of</p>\n\n <p>later kan verwerven.</p>\n\n\n\n <p>5. Werkuren</p>\n\n <p>De normale werkdagen zijn van maandag tot en met vrijdag. Je zal de uren moeten werken die nodig zijn voor de</p>\n\n <p>correcte uitvoering van uw taken jegens het bedrijf. De normale werkuren zijn van {start_time} tot {end_time} en jij bent</p>\n\n <p>naar verwachting niet minder dan {total_hours} uur per week werken, en indien nodig voor extra uren, afhankelijk van uw</p>\n\n <p>verantwoordelijkheden.</p>\n\n\n\n <p>6. Verlof/Vakantie</p>\n\n <p>6.1 Je hebt recht op tijdelijk verlof van 12 dagen.</p>\n\n <p>6.2 U heeft recht op 12 werkdagen betaald ziekteverlof.</p>\n\n <p>6.3 De Maatschappij stelt aan het begin van elk jaar een lijst van verklaarde feestdagen op.</p>\n\n\n\n <p>7. Aard van de taken</p>\n\n <p>Je voert alle taken die inherent zijn aan je functie en bijkomende taken zoals het bedrijf naar beste vermogen uit;</p>\n\n <p>kan van tijd tot tijd een beroep op u doen om op te treden. Uw specifieke taken zijn uiteengezet in Bijlage II hierbij.</p>\n\n\n\n <p>8. Bedrijfseigendommen</p>\n\n <p>U onderhoudt bedrijfseigendommen, die u in de loop van</p>\n\n <p>uw dienstverband, en zal al deze eigendommen aan het Bedrijf teruggeven voordat afstand wordt gedaan van uw kosten, bij gebreke waarvan de kosten</p>\n\n <p>hiervan zal door het Bedrijf van u worden verhaald.</p>\n\n\n\n <p>9. Geschenken lenen/aannemen</p>\n\n <p>U zult geen geld, geschenken, beloningen of vergoedingen voor uw persoonlijk gewin lenen of accepteren van uzelf of uzelf op een andere manier plaatsen</p>\n\n <p>onder geldelijke verplichting jegens een persoon/klant met wie u mogelijk officiële betrekkingen heeft.</p>\n <p>10. Beëindiging</p>\n\n <p>10.1 Uw aanstelling kan door het Bedrijf zonder opgaaf van reden worden beëindigd door u minimaal [Opzegging] maanden van tevoren</p>\n\n <p>schriftelijke opzegging of daarvoor in de plaats komend salaris. In dit artikel wordt onder salaris verstaan het basissalaris.</p>\n\n <p>10.2 U kunt uw dienstverband bij het Bedrijf beëindigen, zonder enige reden, door niet minder dan [Mededeling van de werknemer]</p>\n\n <p>maanden opzegtermijn of salaris voor de niet gespaarde periode, overgebleven na aanpassing van hangende verlofdagen, zoals op datum.</p>\n\n <p>10.3 Het bedrijf behoudt zich het recht voor om uw dienstverband op staande voet te beëindigen zonder enige opzegtermijn of beëindigingsvergoeding</p>\n\n <p>als het redelijke grond heeft om aan te nemen dat u zich schuldig heeft gemaakt aan wangedrag of nalatigheid, of een fundamentele schending van</p>\n\n <p>contract, of enig verlies voor het Bedrijf veroorzaakt.</p>\n\n <p>10. 4 Bij beëindiging van uw dienstverband om welke reden dan ook, geeft u alle eigendommen terug aan het Bedrijf; documenten, en</p>\n\n <p>papier, zowel origineel als kopieën daarvan, inclusief eventuele monsters, literatuur, contracten, bescheiden, lijsten, tekeningen, blauwdrukken,</p>\n\n <p>brieven, notities, gegevens en dergelijke; en Vertrouwelijke informatie, in uw bezit of onder uw controle met betrekking tot uw</p>\n\n <p>werkgelegenheid of de zakelijke aangelegenheden van klanten.</p>\n <p>11. Vertrouwelijke informatie</p>\n\n <p>11. 1 Tijdens uw dienstverband bij het Bedrijf besteedt u al uw tijd, aandacht en vaardigheden naar uw beste vermogen aan:</p>\n\n <p>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</p>\n\n <p>tijd doorbrengen of een studie volgen, zonder voorafgaande toestemming van het bedrijf.bezig met een ander bedrijf of</p>\n\n <p>werkzaamheden of enige andere functie of werk in deeltijd of het volgen van welke opleiding dan ook, zonder voorafgaande toestemming van de</p>\n\n <p>Bedrijf.</p>\n\n <p>11.2 U moet altijd de hoogste graad van vertrouwelijkheid handhaven en de records, documenten en andere</p>\n\n <p>Vertrouwelijke informatie met betrekking tot het bedrijf van het bedrijf die u op enigerlei wijze bekend is of in vertrouwen is genomen</p>\n\n <p>en u zult dergelijke records, documenten en informatie alleen gebruiken op een naar behoren gemachtigde manier in het belang van het bedrijf. Voor</p>\n\n <p>de doeleinden van deze clausule Vertrouwelijke informatiebetekent informatie over het bedrijf van het bedrijf en dat van zijn klanten</p>\n\n <p>die niet beschikbaar is voor het grote publiek en die u tijdens uw dienstverband kunt leren. Dit bevat,</p>\n\n <p>maar is niet beperkt tot informatie met betrekking tot de organisatie, haar klantenlijsten, werkgelegenheidsbeleid, personeel en informatie</p>\n\n <p>over de producten, processen van het bedrijf, inclusief ideeën, concepten, projecties, technologie, handleidingen, tekeningen, ontwerpen,</p>\n\n <p>specificaties, en alle papieren, cvs, dossiers en andere documenten die dergelijke vertrouwelijke informatie bevatten.</p>\n\n <p>11.3 U verwijdert nooit vertrouwelijke informatie van het kantoor zonder toestemming.</p>\n\n <p>11.4 Uw plicht om te beschermen en niet openbaar te maken</p>\n\n <p>e Vertrouwelijke informatie blijft van kracht na het verstrijken of beëindigen van deze Overeenkomst en/of uw dienstverband bij het Bedrijf.</p>\n\n <p>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:</p>\n\n <p>ander rechtsmiddel dat het Bedrijf volgens de wet tegen u heeft.</p>\n <p>12. Kennisgevingen</p>\n\n <p>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:</p>\n\n <p>het door u opgegeven adres in de officiële administratie.</p>\n\n\n\n <p>13. Toepasselijkheid van het bedrijfsbeleid</p>\n\n <p>Het bedrijf heeft het recht om van tijd tot tijd beleidsverklaringen af te leggen met betrekking tot zaken als verlofrecht, moederschap</p>\n\n <p>verlof, werknemersvoordelen, werkuren, transferbeleid, enz., en kan deze van tijd tot tijd naar eigen goeddunken wijzigen.</p>\n\n <p>Al dergelijke beleidsbeslissingen van het Bedrijf zijn bindend voor u en hebben voorrang op deze Overeenkomst in die mate.</p>\n\n\n\n <p>14. Toepasselijk recht/jurisdictie</p>\n\n <p>Uw dienstverband bij het bedrijf is onderworpen aan de landelijke wetgeving. Alle geschillen zijn onderworpen aan de jurisdictie van de High Court</p>\n\n <p>Alleen Gujarat.</p>\n\n\n\n <p>15. Aanvaarding van ons aanbod</p>\n\n <p>Bevestig uw aanvaarding van deze arbeidsovereenkomst door het duplicaat te ondertekenen en terug te sturen.</p>\n\n\n\n <p>Wij heten u van harte welkom en kijken ernaar uit uw acceptatie te ontvangen en met u samen te werken.</p>\n\n\n\n <p>Hoogachtend,</p>\n\n <p>{app_name}</p>\n\n <p>{date}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (50, 'pl', '<h3 style=\"text-align: center;\">Dołączanie listu</h3>\n\n <p>{date }</p>\n\n <p>{employee_name }</p>\n\n <p>{address }</p>\n\n\n <p>Dotyczy: mianowania na stanowisko {designation}</p>\n\n <p>Szanowny {employee_name },</p>\n\n <p>Mamy przyjemność zaoferować Państwu, stanowisko {designation} z {app_name } \"Spółka\" na poniższych warunkach i</p>\n <p>warunki:</p>\n\n <p>1. Rozpoczęcie pracy</p>\n\n <p>Twoje zatrudnienie będzie skuteczne, jak na {start_date }</p>\n\n <p>2. Tytuł zadania</p>\n <p>Twój tytuł pracy to {designation}.</p>\n\n <p>3. Salary</p>\n\n <p>Twoje wynagrodzenie i inne świadczenia będą określone w Zestawieniu 1, do niniejszego rozporządzenia.</p>\n\n\n <p>4. Miejsce delegowania</p>\n <p>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ć.</p>\n\n <p>5. Godziny pracy</p>\n <p>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</p>\n <p>odpowiedzialności.</p>\n\n <p>6. Urlop/Wakacje</p>\n\n <p>6.1 Przysługuje prawo do urlopu dorywczego w ciągu 12 dni.</p>\n\n <p>6.2 Użytkownik ma prawo do 12 dni roboczych od wypłatnego zwolnienia chorobowego.</p>\n\n <p>6.3 Spółka powiadamia na początku każdego roku wykaz ogłoszonych świąt. </p>\n\n\n\n <p>7. Rodzaj obowiązków</p>\n\n <p>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.</p>\n\n\n\n <p>8. Właściwość przedsiębiorstwa</p>\n\n <p>Zawsze będziesz utrzymywać w dobrej kondycji Firmy, która może być powierzona do użytku służbowego w trakcie trwania</p>\n\n <p>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ę.</p>\n\n <p>9. Wypożyczanie/akceptowanie prezentów</p>\n\n <p>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.</p>\n <p>10. Zakończenie</p>\n\n <p>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.</p>\n\n <p>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ń.</p>\n\n <p>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. </p>\n\n <p>10. 4 W sprawie rozwiązania stosunku pracy z jakiegokolwiek powodu, powrócisz do Spółki wszystkie nieruchomości; dokumenty, i </p>\n\n <p>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,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informacje poufne</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Firma.</p>\n\n <p>11.2 Zawsze musisz zachować najwyższy stopień poufności i zachować jako poufny akt, dokumenty, i inne </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>specyfikacje, a także wszystkie dokumenty, życiorysy, zapisy i inne dokumenty zawierające takie informacje poufne.</p>\n\n <p>11.3 W żadnym momencie nie usunie Pan żadnych Informacji Poufnych z urzędu bez zezwolenia.</p>\n\n <p>11.4 Twój obowiązek ochrony a nie disclos</p>\n\n <p>Informacje poufne przetrwają wygaśnięcie lub rozwiązanie niniejszej Umowy i/lub Twoje zatrudnienie w Spółce.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Uwagi</p>\n\n <p>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.</p>\n\n\n\n <p>13. Stosowność polityki firmy</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Wszystkie takie decyzje polityczne Spółki są wiążące dla Państwa i przesłaniają niniejszą Umowę w tym zakresie.</p>\n\n\n\n <p>14. Prawo właściwe/jurysdykcja</p>\n\n <p>Twoje zatrudnienie ze Spółką podlega prawu krajowi. Wszelkie spory podlegają właściwości Sądu Najwyższego</p>\n\n <p>Tylko Gujarat.</p>\n\n\n\n <p>15. Akceptacja naszej oferty</p>\n\n <p>Prosimy o potwierdzenie przyjęcia niniejszej Umowy o pracę poprzez podpisanie i zwrócenie duplikatu.</p>\n\n\n\n <p>Zapraszamy Państwa i czekamy na Państwa przyjęcie i współpracę z Tobą.</p>\n\n\n\n <p>Z Państwa Sincerely,</p>\n\n <p>{app_name }</p>\n\n <p>{date }</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (51, 'pt', '<h3 style=\"text-align: center;\">Carta De Adesão</h3>\n\n <p>{data}</p>\n\n <p>{employee_name}</p>\n\n <p>{address}</p>\n\n\n <p>Assunto: Nomeação para o cargo de {designation}</p>\n\n <p>Querido {employee_name},</p>\n\n\n <p>Temos o prazer de oferecê-lo, a posição de {designation} com {app_name} a Empresa nos seguintes termos e</p>\n <p>condições:</p>\n\n\n <p>1. Comentamento do emprego</p>\n\n <p>Seu emprego será efetivo, a partir de {start_date}</p>\n\n\n <p>2. Título do emprego</p>\n\n <p>Seu cargo de trabalho será {designation}.</p>\n\n <p>3. Salário</p>\n\n <p>Seu salário e outros benefícios serão conforme estabelecido no Planejamento 1, hereto.</p>\n\n <p>4. Local de postagem</p>\n\n <p>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.</p>\n\n <p>5. Horas de Trabalho</p>\n\n <p>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</p>\n <p>responsabilidades.</p>\n\n <p>6. Leave / Holidays</p>\n\n <p>6,1 Você tem direito a licença casual de 12 dias.</p>\n\n <p>6,2 Você tem direito a 12 dias úteis de licença remunerada remunerada.</p>\n\n <p>6,3 Companhia notificará uma lista de feriados declarados no início de cada ano. </p>\n\n\n\n <p>7. Natureza dos deveres</p>\n\n <p>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.</p>\n\n\n\n <p>8. Propriedade da empresa</p>\n\n <p>Você sempre manterá em bom estado propriedade Empresa, que poderá ser confiada a você para uso oficial durante o curso de</p>\n\n <p>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.</p>\n\n\n\n <p>9. Borremir / aceitar presentes</p>\n\n <p>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.</p>\n\n\n\n <p>10. Terminação</p>\n\n <p>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.</p>\n\n <p>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.</p>\n\n <p>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. </p>\n\n <p>10. 4 Sobre a rescisão do seu emprego por qualquer motivo, você retornará para a Empresa todos os bens; documentos e </p>\n\n <p>papel, tanto originais como cópias dos mesmos, incluindo quaisquer amostras, literatura, contratos, registros, listas, desenhos, plantas,</p>\n\n <p>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. </p>\n\n\n\n <p>11. Informações Confidenciais</p>\n\n <p>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</p>\n\n <p>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</p>\n\n <p>Empresa.</p>\n\n <p>11,2 É preciso manter sempre o mais alto grau de confidencialidade e manter como confidenciais os registros, documentos e outros </p>\n\n <p>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,</p>\n\n <p>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, </p>\n\n <p>especificações, e todos os papéis, currículos, registros e outros documentos que contenham tais Informações Confidenciais.</p>\n\n <p>11,3 Em nenhum momento, você removerá quaisquer Informações Confidenciais do escritório sem permissão.</p>\n\n <p>11,4 O seu dever de salvaguardar e não os desclos</p>\n\n <p>Informações Confidenciais sobreviverão à expiração ou à rescisão deste Contrato e / ou do seu emprego com a Companhia.</p>\n\n <p>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.</p>\n\n\n\n <p>12. Notices</p>\n\n <p>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.</p>\n\n\n\n <p>13. Aplicabilidade da Política da Empresa</p>\n\n <p>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</p>\n\n <p>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.</p>\n\n <p>Todas essas decisões de política da Companhia devem ser vinculativas para si e substituirão este Acordo nessa medida.</p>\n\n\n\n <p>14. Direito / Jurisdição</p>\n\n <p>Seu emprego com a Companhia está sujeito às leis do País. Todas as disputas estão sujeitas à jurisdição do Tribunal Superior</p>\n\n <p>Gujarat apenas.</p>\n\n\n\n <p>15. Aceitação da nossa oferta</p>\n\n <p>Por favor, confirme sua aceitação deste Contrato de Emprego assinando e retornando a cópia duplicada.</p>\n\n\n\n <p>Nós acolhemos você e estamos ansiosos para receber sua aceitação e para trabalhar com você.</p>\n\n\n\n <p>Seu Sinceramente,</p>\n\n <p>{app_name}</p>\n\n <p>{data}</p>\n ', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (52, 'ru', '<h3 style=\"text-align: center;\">Присоединение к письму</h3>\n\n <p>{date}</p>\n\n <p>{ employee_name }</p>\n <p>{address}</p>\n\n <p>Тема: Назначение на должность {designation}</p>\n\n <p>Уважаемый { employee_name },</p>\n\n <p>Мы рады предложить Вам, позицию {designation} с { app_name } Компания на следующих условиях и</p>\n\n <p>условия:</p>\n\n\n <p>1. Начало работы</p>\n\n <p>Ваше трудоустройство будет эффективным, начиная с { start_date }</p>\n\n\n <p>2. Название должности</p>\n <p>Ваш заголовок задания будет {designation}.</p>\n\n <p>3. Зарплата</p>\n <p>Ваши оклады и другие пособия будут установлены в соответствии с расписанием, изложенным в приложении 1 к настоящему.</p>\n\n <p>4. Место размещения</p>\n <p>Вы будете работать в { branch }. Вы, однако, можете работать в любом месте, которое компания имеет или может впоследствии приобрести.</p>\n\n\n\n <p>5. Часы работы</p>\n <p>Обычные рабочие дни-с понедельника по пятницу. Вы должны будете работать в течение таких часов, как это необходимо для надлежащего выполнения Ваших обязанностей перед компанией. Обычные рабочие часы-от { start_time } до { end_time }, и вы, как ожидается, будут работать не менее { total_hours } часов каждую неделю, и при необходимости в течение дополнительных часов в зависимости от вашего</p>\n <p>ответственности.</p>\n <p>6. Отпуск/Праздники</p>\n\n <p>6.1 Вы имеете право на случайный отпуск продолжительностью 12 дней.</p>\n\n <p>6.2 Вы имеете право на 12 рабочих дней оплачиваемого отпуска по болезни.</p>\n\n <p>6.3 Компания в начале каждого года уведомляет об объявленных праздниках. </p>\n\n\n\n <p>7. Характер обязанностей</p>\n\n <p>Вы будете выполнять все обязанности, присующие вам, и такие дополнительные обязанности, которые компания может призвать к вам, время от времени. Ваши конкретные обязанности изложены в приложении II к настоящему.</p>\n\n\n\n <p>8. Свойство компании</p>\n\n <p>Вы всегда будете поддерживать в хорошем состоянии имущество Компании, которое может быть доверено Вам для служебного пользования в течение</p>\n\n <p>вашей занятости, и возвратит все это имущество Компании до отказа от вашего заряда, при отсутствии которого стоимость одного и того же имущества будет взыскана с Вас компанией.</p>\n\n\n\n <p>9. Боровить/принять подарки</p>\n\n <p>Вы не будете брать взаймы или принимать какие-либо деньги, подарки, вознаграждение или компенсацию за ваши личные доходы от или в ином месте под денежный долг любому лицу/клиенту, с которым у вас могут быть официальные сделки.</p>\n\n\n\n <p>10. Прекращение</p>\n\n <p>10.1 Ваше назначение может быть прекращено компанией без каких бы то ни было оснований, предоставляя Вам не менее [ Уведомление] месяцев, предшея уведомлению в письменной форме или окладе вместо них. Для целей этого положения заработная плата означает базовый оклад.</p>\n\n <p>10.2 Вы можете прекратить свою трудовую деятельность с компанией без каких-либо причин, предоставляя не меньше, чем [ Employee Notice] months предварительное уведомление или оклад за несохраненный период, оставатся после корректировки отложенных листьев, как на сегодняшний день.</p>\n\n <p>10.3 Компания оставляет за собой право прекратить вашу работу в суммарном порядке без какого-либо уведомления о сроке или увольнении, если у нее есть достаточные основания полагать, что вы виновны в проступке или халатности, или совершили какое-либо существенное нарушение договора, или причинило убытки Компании. </p>\n\n <p>10. 4 О прекращении вашей работы по какой бы то ни было причине вы вернетесь в Компании все имущество; документы, а </p>\n\n <p>бумаги, как оригинальные, так и их копии, включая любые образцы, литературу, контракты, записи, списки, чертежи, чертежи,</p>\n\n <p>письма, заметки, данные и тому подобное; и Конфиденциальная информация, в вашем распоряжении или под вашим контролем, связанным с вашей работой или деловыми делами клиентов. </p>\n\n\n\n <p>11. Конфиденциальная информация</p>\n\n <p>11. 1 Во время вашего трудоустройства с компанией Вы посвяте все свое время, внимание, умение максимально</p>\n\n <p>Его бизнес. Вы не должны, прямо или косвенно, заниматься или ассоциировать себя с заинтересованными, занятым, занятым, или временем, или продолжать любой курс обучения, без предварительного разрешения Компани.заниматься каким-либо другим бизнесом или деятельностью или любой другой пост или работать неполный рабочий день или заниматься какой бы то ни было исследованием, без предварительного разрешения</p>\n\n <p>Компания.</p>\n\n <p>11.2 Вы всегда должны сохранять наивысшую степень конфиденциальности и хранить в качестве конфиденциальной записи, документы и другие </p>\n\n <p>Конфиденциальная информация, касающаяся бизнеса Компании, которая может быть вам известна или конфиденциальна любым способом, и Вы будете использовать такие записи, документы и информацию только в установленном порядке в интересах Компании. Для целей настоящей статьи \"Конфиденциальная информация\" означает информацию о бизнесе Компании и о ее клиентах, которая недоступна для широкой общественности и которая может быть изучилась Вами в ходе вашей работы. Это включает в себя:</p>\n\n <p>но не ограничивается информацией, касающейся организации, ее списков клиентов, политики в области занятости, персонала и информации о продуктах Компании, процессах, включая идеи, концепции, прогнозы, технологии, руководства, чертеж, чертеж, </p>\n\n <p>спецификации, и все бумаги, резюме, записи и другие документы, содержащие такую Конфиденциальную Информацию.</p>\n\n <p>11.3 В любое время вы не будете удалять конфиденциальную информацию из офиса без разрешения.</p>\n\n <p>11.4 Ваш долг защищать и не отсосать</p>\n\n <p>e Конфиденциальная информация выдержит срок действия или прекращения действия настоящего Соглашения и/или вашей работы с компанией.</p>\n\n <p>11.5 Нарушение условий, изложенных в настоящем положении, приведет к тому, что в дополнение к любым другим средствам правовой защиты, которые компания может иметь против вас, в соответствии с вышеприведенным положением, вы можете получить краткое увольнение в соответствии с этим положением.</p>\n\n\n\n <p>12. Замечания</p>\n\n <p>Уведомления могут быть даны Вами Компании по адресу ее зарегистрированного офиса. Извещения могут быть даны компанией Вам по адресу, с которым вы в официальных отчетах.</p>\n\n\n\n <p>13. Применимость политики компании</p>\n\n <p>Компания вправе время от времени делать политические заявления по таким вопросам, как право на отпуск, материнство</p>\n\n <p>отпуска, пособия для работников, продолжительность рабочего дня, трансферная политика и т.д. и время от времени могут изменяться исключительно по своему усмотрению.</p>\n\n <p>Все такие принципиальные решения Компании являются обязательными для Вас и переопределяют это Соглашение в такой степени.</p>\n\n\n\n <p>14. Регулирующий Право/юрисдикция</p>\n\n <p>Ваше трудоустройство с компанией подпадает под действие законов страны. Все споры подлежат юрисдикции Высокого суда</p>\n\n <p>Только Гуджарат.</p>\n\n\n\n <p>15. Принятие нашего предложения</p>\n\n <p>Пожалуйста, подтвердите свое согласие с этим Договором о занятости, подписав и возвращая дубликат копии.</p>\n\n\n\n <p>Мы приветствуем Вас и надеемся на то, что Вы принимаете свое согласие и работаете с Вами.</p>\n\n\n\n <p>Искренне Ваш,</p>\n\n <p>{ app_name }</p>\n\n <p>{date}</p>\n ', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `join_us` -- CREATE TABLE `join_us` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `labels` -- CREATE TABLE `labels` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL, `pipeline_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `landingpage_pixels` -- CREATE TABLE `landingpage_pixels` ( `id` bigint(20) UNSIGNED NOT NULL, `platform` varchar(255) DEFAULT NULL, `pixel_id` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `landing_page_settings` -- CREATE TABLE `landing_page_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `value` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `landing_page_settings` -- INSERT INTO `landing_page_settings` (`id`, `name`, `value`, `created_at`, `updated_at`) VALUES (1, 'menubar_page', '[{\"template_name\":\"page_content\",\"page_url\":\"\",\"menubar_page_contant\":\"<p>At WorkDo our vision is to become a one-stop destination for all your IT needs by creating disruptive web solutions that remain accessible to all. We diligently work towards bringing our clients IT solutions that transform the way their businesses function. Rather than confuse you with the complexities of web services we focus on bringing our clients simplified web solutions. From Web development, to Web maintenance, we are dedicated to making your IT life easier.<\\/p>\",\"login\":\"on\",\"menubar_page_name\":\"About Us\",\"menubar_page_short_description\":\"WorkDo offers comprehensive web solutions to businesses. We aim to provide products that are beautifully designed, user friendly and a delight to use.\",\"page_slug\":\"about_us\",\"header\":\"on\",\"footer\":\"on\"},{\"menubar_page_name\":\"Terms and Conditions\",\"template_name\":\"page_content\",\"page_slug\":\"terms_and_conditions\",\"menubar_page_short_description\":\"Our Terms and Conditions page outlines user agreement, data protection policies, payment terms, and intellectual property rights.\",\"menubar_page_contant\":\"Service Agreement: Users agree to abide by the terms outlined in the Service Agreement, which governs the use of WorkDo Dash and its features.\\n Data Protection: WorkDo Dash prioritizes user privacy and data protection, adhering to strict policies and regulations to safeguard sensitive information.\\n Payment Terms: Users are responsible for adhering to the payment terms specified in the agreement, ensuring timely payments for services rendered.\\n Intellectual Property Rights: WorkDo Dash respects intellectual property rights and expects users to do the same, refraining from infringing upon copyrights or trademarks associated with the platform.\",\"header\":\"on\",\"footer\":\"on\",\"login\":\"on\"},{\"menubar_page_name\":\"Privacy Policy\",\"page_slug\":\"privacy_policy\",\"template_name\":\"page_content\",\"menubar_page_short_description\":\"Protecting your privacy is our priority at WorkDo Dash, ensuring your data is used transparently and securely.\",\"menubar_page_contant\":\"At WorkDo Dash, we prioritize your privacy and are committed to safeguarding your personal information. Our privacy policy outlines the types of data we collect, how we use it, and the measures we take to protect it. We collect information to enhance user experience, provide personalized services, and ensure the security of our platform. We do not share your personal data with third parties without your consent, except as required by law or to protect our rights. By using WorkDo Dash, you agree to the collection and use of information in accordance with this policy, ensuring transparency and trust in all our interactions.\",\"header\":\"on\",\"footer\":\"on\",\"login\":\"on\"}]', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 'menubar_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (3, 'site_logo', 'site_logo.png', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (4, 'home_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (5, 'home_offer_text', '70% Special Offer1', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (6, 'home_title', 'Home', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (7, 'home_heading', 'With W-Manage ERP Saas , you can take care of each need of your business functions in.one place', '2024-08-11 08:22:55', '2025-06-22 01:22:49'), (8, 'home_description', 'Lay a solid foundation for your brand. Grab a high-converting web powered by a secure backend coupled with an intuitive eCommerce.', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (9, 'home_trusted_by', 'Our best partners and +100 customers worldwide satisfied with our services.', '2024-08-11 08:22:55', '2025-06-22 01:22:49'), (10, 'home_live_demo_link', 'https://erp.w-manage.org', '2024-08-11 08:22:55', '2025-06-22 01:22:49'), (11, 'home_banner', 'uploads/landing_page_image/1750556274-home_banner.jpg', '2024-08-11 08:22:55', '2025-06-22 01:37:54'), (12, 'home_logo', 'c84998f073a83e78c6ef552cde64eb7f_0_438162436_122158164014086755_1035790167117348529_n-removebg-preview.png', '2024-08-11 08:22:55', '2025-06-22 01:29:16'), (13, 'home_link_button_text', 'View Live Demo', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (14, 'feature_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (15, 'feature_title', 'Features', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (16, 'feature_of_features', '[{\"feature_logo\":\"1690960676-feature_logo.png\",\"feature_heading\":\"Free & Open Source\",\"feature_description\":\"<p>Give your customers a quick way to find the products they want. Thanks to a built-in, intuitive search and filtering, they can view only those products that they’re interested in.<\\/p>\",\"feature_more_details_link\":\"#\",\"feature_more_details_button_text\":\"Find Out More\"},{\"feature_logo\":\"1690960805-feature_logo.png\",\"feature_heading\":\"Guaranteed to Grow Your Business\",\"feature_description\":\"<p>Give your customers a quick way to find the products they want. Thanks to a built-in, intuitive search and filtering, they can view only those products that they\\u2019re interested in.<\\/p>\",\"feature_more_details_link\":\"#\",\"feature_more_details_button_text\":\"Find Out More\"},{\"feature_logo\":\"1690960837-feature_logo.png\",\"feature_heading\":\"24\\/7 Support\",\"feature_description\":\"<p>Give your customers a quick way to find the products they want. Thanks to a built-in, intuitive search and filtering, they can view only those products that they’re interested in.<\\/p>\",\"feature_more_details_link\":\"#\",\"feature_more_details_button_text\":\"Find Out More\"}]', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (17, 'highlight_feature_heading', 'Why choose dedicated modules for Your Business?', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (18, 'highlight_feature_description', 'With W-Manage ERP Saas , you can conveniently manage all your business functions from a single location.', '2024-08-11 08:22:55', '2025-06-22 01:23:08'), (19, 'highlight_feature_image', '', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (20, 'other_features', '[{\"other_features_image\":\"uploads\\/landing_page_image\\/1750556411-other_features_image.png\",\"other_features_tag\":\"SALES\",\"other_features_heading\":\"Account Helps You Simplify Your Accounting and Billing\",\"other_featured_description\":\"Manage your billing and accounting without little to no effort! Set financial goals and let the system monitor them for you, automate taxes, and more! - without lifting a finger.\",\"other_feature_buy_now_link\":null,\"cards\":{\"1\":{\"title\":\"Simplify Your Accounting and Billing\",\"description\":\"Simplify your accounting and make it easy to keep an eye on your money. Set financial goals and let the system monitor them for you, automate taxes, and more! - without lifting a finger.\"},\"2\":{\"title\":\"Take Control Of Your Inventory\",\"description\":\"Save time by managing your entire inventory with a few clicks. Easily create categories and add products to them. Modify product prices whenever you want, assign SKUs, create different tax rates, and do so much more!\"},\"3\":{\"title\":\"Take Your Project from Proposal to Payment\",\"description\":\"Land new clients in a flash, and get paid just as fast. Create proposal templates and pitch your future clients. Turn your accepted proposals into payable invoices, send reminders, and get paid fast - all in one place!\"}}},{\"other_features_image\":\"uploads\\/landing_page_image\\/1750556527-other_features_image.png\",\"other_features_tag\":\"SALES\",\"other_features_heading\":\"Everything You Need For a Successful HRM - In One Place\",\"other_featured_description\":\"<p>This feature makes it easier for a company to maintain a record of an employee\\u2019s personal, company, and Bank details along with their essential documentation. Employees could view and manage their profiles.<\\/p>\",\"other_feature_buy_now_link\":null,\"cards\":{\"1\":{\"title\":\"Manage Key Employee Matters Easily\",\"description\":\"Create a profile for every employee, track their key information, and update the information in just a few clicks. Collect and analyze feedback about their work, including warnings and complaints issued by their managers or other employees.\"},\"2\":{\"title\":\"Help Your Employees Become More Productive\",\"description\":\"Empower employee growth. Schedule skills training, track expenses, and watch your employees become better at their work. Boost employee productivity with custom KPIs. Track employee performance, share feedback, and help them reach company targets.\"},\"3\":{\"title\":\"Manage Payroll in Just a Few Clicks\",\"description\":\"Pay your employees for their hard work. Keep data of all workforce costs, transfers, deposits, and other employee-related transactions for future reference. Track employee attendance and overtime to ensure they always receive fair compensation for their work.\"}}},{\"other_features_image\":\"uploads\\/landing_page_image\\/1750556825-other_features_image.png\",\"other_features_tag\":\"SALES\",\"other_features_heading\":\"Easily manage all your projects and keep your business growing.\",\"other_featured_description\":\"<p>Got a big team or working on multiple projects at once? Manage task priorities or even create additional workspaces and use the built-in permission system to separate core projects. Make your team more effective by helping them avoid confusion ensuring they always know what to focus on.<\\/p>\",\"other_feature_buy_now_link\":null,\"cards\":{\"1\":{\"title\":\"Kanban Task Management\",\"description\":\"Whether you need a simple tool to track your tasks, are a Kanban fan, want to create Gantt Charts or are looking for a convenient tool to track your projects - Taskly got you covered.\"},\"2\":{\"title\":\"Creating milestones and assigning subtasks\",\"description\":\"Add a new task to an already existing project and prioritize them according to the need of urgency. Assign the task to team members and set a due date for task completion. Add comments to the task and create a sub-task for ease of completion. Attach necessary files in a required task.\"},\"3\":{\"title\":\"Bugs Resolution\",\"description\":\"Create new bugs and assign users and priority to them. You can write a note in the text box for the bug description. Also, the status of each bug could be changed through an easy drop-down and Kanban drag system.\"}}},{\"other_features_image\":\"uploads\\/landing_page_image\\/1750556852-other_features_image.png\",\"other_features_tag\":\"SALES\",\"other_features_heading\":\"Manage Your Leads Better. Convert Faster.\",\"other_featured_description\":\"<p>Skyrocket your sales with an effective lead management tool. Determine the value of leads and develop promising leads with ease. Get clearer action plans and make smarter and well-informed decisions.<\\/p>\",\"other_feature_buy_now_link\":null,\"cards\":{\"1\":{\"title\":\"Manage All Your Leads Under One Roof\",\"description\":\"Manage your clients, users, and deals from anywhere, and from a single tab. Access a wide range of features, get a graphical representation of your data, and make informed decisions.\"},\"2\":{\"title\":\"Cost-Efficient Lead Management\",\"description\":\"Save money and manage your time effectively to improve your business productivity. Automate your lead management and start closing more deals and making more sales on autopilot.\"},\"3\":{\"title\":\"Get Tailored Reports\",\"description\":\"Easily measure every aspect of your business from an intuitive interface. Generate insights that lead to more effective sales, and manage your leads and deals with a smooth drag-and-drop system.\"}}},{\"other_features_image\":\"uploads\\/landing_page_image\\/1750556872-other_features_image.png\",\"other_features_tag\":\"SALES\",\"other_features_heading\":\"Ease in maintaining customer and vendor details\",\"other_featured_description\":\"<p>POS allows you to create and maintain the data of each customer and vendor. You get access to all essential information through a well-maintained format.<\\/p>\",\"other_feature_buy_now_link\":null,\"cards\":{\"1\":{\"title\":\"Manage vital information from one dashboard\",\"description\":\"Stay on top of your total and monthly purchases and sales. Get an interactive purchase and sales report graph to help you make informed decisions. Get progress reports of each branch, along with to-do lists and event calendars.\"},\"2\":{\"title\":\"Set your sales targets and achieve them faster\",\"description\":\"Create sales targets and keep track of their progress in your dashboard. Use the expense list to cut down on unnecessary expenses, and put more resources into reaching your sales targets.\"},\"3\":{\"title\":\"Manage your products with ease\",\"description\":\"Never stress about managing your inventory ever again! With PosGo, you can create your products and assign them a brand, category, unit and tax rate. You can even modify product descriptions, images, and price whenever you want.\"}}}]', '2024-08-11 08:22:55', '2025-06-22 01:47:52'), (21, 'screenshots_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (22, 'screenshots', '[{\"screenshots\":\"1690966361-screenshots.png\",\"screenshots_heading\":\"Project\"},{\"screenshots\":\"1690966398-screenshots.png\",\"screenshots_heading\":\"POS\"},{\"screenshots\":\"1690966421-screenshots.png\",\"screenshots_heading\":\"CRM\"},{\"screenshots\":\"1690966443-screenshots.png\",\"screenshots_heading\":\"Accounting\"},{\"screenshots\":\"1690966482-screenshots.png\",\"screenshots_heading\":\"HRM\"}]', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (23, 'footer_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (24, 'joinus_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (25, 'joinus_heading', 'Join Our Community', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (26, 'joinus_description', 'We build modern web tools to help you jump-start your daily business work.', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (27, 'footer_logo', '1690967309-footer_logo.png', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (28, 'footer_description', 'We build modern web tools to help you jump-start your daily business work.', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (29, 'footer_live_demo_link', '#', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (30, 'all_rights_reserve_text', 'All Rights Reserved to', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (31, 'footer_support_link', '#', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (32, 'all_rights_reserve_website_name', 'W-manage ERP', '2024-08-11 08:22:55', '2025-06-03 23:46:10'), (33, 'all_rights_reserve_website_url', 'https://erp.w-manage.org/', '2024-08-11 08:22:55', '2025-06-03 23:46:10'), (34, 'footer_sections_details', '[{\"footer_section_heading\":\"Company\",\"footer_section_text\":{\"1\":{\"title\":\"About Us\",\"link\":\"#\"},\"2\":{\"title\":\"Freebies\",\"link\":\"#\"},\"3\":{\"title\":\"Premium\",\"link\":\"#\"},\"4\":{\"title\":\"Blog\",\"link\":\"#\"},\"5\":{\"title\":\"Affiliate Program\",\"link\":\"#\"},\"6\":{\"title\":\"Get coupon\",\"link\":\"#\"}}},{\"footer_section_heading\":\"Help and Support\",\"footer_section_text\":{\"1\":{\"title\":\"Knowledge Center\",\"link\":\"#\"},\"2\":{\"title\":\"Contact Us\",\"link\":\"#\"},\"3\":{\"title\":\"Premium Support\",\"link\":\"#\"},\"4\":{\"title\":\"Sponsorships\",\"link\":\"#\"},\"5\":{\"title\":\"Custom Development\",\"link\":\"#\"}}},{\"footer_section_heading\":\"Help and Support\",\"footer_section_text\":{\"1\":{\"title\":\"Terms & Conditions\",\"link\":\"#\"},\"2\":{\"title\":\"Privacy Policy\",\"link\":\"#\"},\"3\":{\"title\":\"Licenses\",\"link\":\"#\"}}}]', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (35, 'footer_gotoshop_button_text', 'Go to Shop', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (36, 'footer_support_button_text', 'Support', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (37, 'reviews', '[{\"review_header_tag\":\"SOLID FOUNDATION\",\"review_heading\":\"A style theme, together with a dedicated Laravel backend and an intuitive mobile app\",\"review_description\":\"<p>gives your business an unfair advantage. The package doesn\\u2019t just provide you with everything you need to start selling online. It gives you a solid foundation for an eCommerce business for years to come.<\\/p>\",\"review_live_demo_link\":\"https:\\/\\/dash-demo.workdo.io\\/login\",\"review_live_demo_button_text\":\"View Live Demo\"},{\"review_header_tag\":\"SOLID FOUNDATION\",\"review_heading\":\"A style theme, together with a dedicated Laravel backend and an intuitive mobile app\",\"review_description\":\"<p>gives your business an unfair advantage. The package doesn\\u2019t just provide you with everything you need to start selling online. It gives you a solid foundation for an eCommerce business for years to come.<\\/p>\",\"review_live_demo_link\":\"https:\\/\\/dash-demo.workdo.io\\/login\",\"review_live_demo_button_text\":\"View Live Demo\"},{\"review_header_tag\":\"SOLID FOUNDATION\",\"review_heading\":\"A style theme, together with a dedicated Laravel backend and an intuitive mobile app\",\"review_description\":\"<p>gives your business an unfair advantage. The package doesn\\u2019t just provide you with everything you need to start selling online. It gives you a solid foundation for an eCommerce business for years to come.<\\/p>\",\"review_live_demo_link\":\"https:\\/\\/dash-demo.workdo.io\\/login\",\"review_live_demo_button_text\":\"View Live Demo\"},{\"review_header_tag\":\"SOLID FOUNDATION\",\"review_heading\":\"A style theme, together with a dedicated Laravel backend and an intuitive mobile app\",\"review_description\":\"<p>gives your business an unfair advantage. The package doesn\\u2019t just provide you with everything you need to start selling online. It gives you a solid foundation for an eCommerce business for years to come.<\\/p>\",\"review_live_demo_link\":\"https:\\/\\/dash-demo.workdo.io\\/login\",\"review_live_demo_button_text\":\"View Live Demo\"},{\"review_header_tag\":\"SOLID FOUNDATION\",\"review_heading\":\"A style theme, together with a dedicated Laravel backend and an intuitive mobile app\",\"review_description\":\"gives your business an unfair advantage. The package doesn\\u2019t just provide you with everything you need to start selling online. It gives you a solid foundation for an eCommerce business for years to come.\",\"review_live_demo_link\":\"https:\\/\\/dash-demo.workdo.io\\/login\",\"review_live_demo_button_text\":\"View Live Demo\"}]', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (38, 'dedicated_heading', 'Why Choose a Dedicated Fashion Theme for Your Business?', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (39, 'dedicated_description', 'With Alligō, you can take care of the entire partner lifecycle - from onboarding through nurturing, cooperating, and rewarding. Find top performers and let go of those who arent a good fit.', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (40, 'dedicated_live_demo_link', 'https://erp.w-manage.org', '2024-08-11 08:22:55', '2025-06-22 01:24:22'), (41, 'dedicated_link_button_text', 'View Live Demo', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (42, 'dedicated_card_details', '[{\"dedicated_card_logo\":\"1690966583-dedicated_card_logo.png\",\"dedicated_card_heading\":\"High-Performing, Secure PHP Framework\",\"dedicated_card_description\":\"Unlike many frameworks that come and go, the framework stood the test of time. Over the years, it grew to become one of the fastest and most secure frameworks in the market.\",\"dedicated_card_more_details_link\":\"#\",\"dedicated_card_more_details_button_text\":\"Find Out More\"},{\"dedicated_card_logo\":\"1690966606-dedicated_card_logo.png\",\"dedicated_card_heading\":\"Stable Codebase\",\"dedicated_card_description\":\"Some frameworks come and go - but Laravel is here to stay. Laravels active developer community helps keep its codebase up-to-date and stable. This, in turn, helps ensure the stability of your eCommerce website.\",\"dedicated_card_more_details_link\":\"#\",\"dedicated_card_more_details_button_text\":\"Find Out more\"},{\"dedicated_card_logo\":\"1690966638-dedicated_card_logo.png\",\"dedicated_card_heading\":\"Secure Integrations\",\"dedicated_card_description\":\"As you grow, you may want to expand your store with new functionalities or payment methods. Thanks to Laravels flexibility, it\\u2019s easy to add new integrations and customize the store even once its already developed.<\",\"dedicated_card_more_details_link\":\"#\",\"dedicated_card_more_details_button_text\":\"Find Out more\"}]', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (43, 'dedicated_section_status', 'off', '2024-08-11 08:22:55', '2025-06-22 01:24:22'), (44, 'buildtech_heading', 'Built with Technology You Can Trust', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (45, 'buildtech_description', 'Our backend is built with Laravel - one of the most popular and highest-rated web development frameworks. Find out why we chose it - and how it benefits your business.', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (46, 'buildtech_card_details', '[{\"buildtech_card_logo\":\"1690966770-buildtech_card_logo.png\",\"buildtech_card_heading\":\"Sell More Than Your Competitors\",\"buildtech_card_description\":\"Your online store has one goal - to sell your products. Thanks to years of experience in the industry, we know the ins and outs of online sales. And we put that knowledge into every package that we offer. With the Style eCommerce package, you get a store that\\u2019s optimized for helping you sell more in the fashion niche.\",\"buildtech_card_more_details_link\":\"#\",\"buildtech_card_more_details_button_text\":\"Find Out More\"},{\"buildtech_card_logo\":\"1690966899-buildtech_card_logo.png\",\"buildtech_card_heading\":\"Get a Headstart over Your Competitors\",\"buildtech_card_description\":\"In business, you have to act fast. By choosing our Style theme package, you can get everything you need to start selling right away. Hit the market with your product sooner, attract early sales, and build an audience from day one.\",\"buildtech_card_more_details_link\":\"#\",\"buildtech_card_more_details_button_text\":\"Find Out More\"},{\"buildtech_card_logo\":\"1690966833-buildtech_card_logo.png\",\"buildtech_card_heading\":\"Avoid Design Mistakes\",\"buildtech_card_description\":\"When you get a ready-made package, you avoid common design mistakes that could cost your business a fortune. Not only that. Thanks to a higher conversion rate, you can achieve better ROI on your marketing expenses.\",\"buildtech_card_more_details_link\":\"#\",\"buildtech_card_more_details_button_text\":\"Find Out More\"},{\"buildtech_card_logo\":\"1690966858-buildtech_card_logo.png\",\"buildtech_card_heading\":\"Build a Long-Term Asset\",\"buildtech_card_description\":\"The key to success in eCommerce is to scale your store and build an audience of loyal, recurring customers. With our package, you get more than just a store. You get an asset that\\u2019s ready for you to take care of it and grow it for years to come.\",\"buildtech_card_more_details_link\":\"#\",\"buildtech_card_more_details_button_text\":\"Find Out More\"}]', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (47, 'buildtech_section_status', 'on', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (48, 'packagedetails_section_status', 'off', '2024-08-11 08:22:55', '2025-06-22 01:25:12'), (49, 'packagedetails_heading', 'Start an Online Fashion Business with a Complete eCommerce Package', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (50, 'packagedetails_short_description', 'Get a fashion-themed eCommerce store with a secure backend and convenient mobile app. Build a brand, manage your store wherever you are, and grow an online business.', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (51, 'packagedetails_long_description', 'An effective fashion theme should be visually appealing and easy to navigate. A good theme makes it easy for customers to find and buy the items they’re interested in. The theme should also be responsive so that it looks good on all devices.With the Style theme, you get all of the above - and more. The theme gives you everything you need to sell your products and keep your audience coming back for more. Easily customize the theme and adjust its design to your branding needs. Add products, polish product pages, and start growing your online business.', '2024-08-11 08:22:55', '2025-06-22 01:25:12'), (52, 'packagedetails_link', 'https://erp.w-manage.org/pricing', '2024-08-11 08:22:55', '2025-06-22 01:25:12'), (53, 'packagedetails_button_text', 'Get the Package', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (54, 'is_screenshots_section_active', 'off', '2025-06-22 02:01:51', '2025-06-22 02:01:51'), (55, 'is_dedicated_section_active', 'on', '2025-06-22 02:04:03', '2025-06-22 02:04:41'); -- -------------------------------------------------------- -- -- Table structure for table `languages` -- CREATE TABLE `languages` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `status` varchar(255) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `languages` -- INSERT INTO `languages` (`id`, `code`, `name`, `status`, `created_at`, `updated_at`) VALUES (1, 'ar', 'Arabic', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (2, 'da', 'Danish', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (3, 'de', 'German', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (4, 'en', 'English', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (5, 'es', 'Spanish', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (6, 'fr', 'French', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (7, 'it', 'Italian', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (8, 'ja', 'Japanese', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (9, 'nl', 'Dutch', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (10, 'pl', 'Polish', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (11, 'pt', 'Portuguese', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (12, 'ru', 'Russian', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'), (13, 'tr', 'Turkish', '1', '2024-08-11 08:22:11', '2024-08-11 08:22:11'); -- -------------------------------------------------------- -- -- Table structure for table `leads` -- CREATE TABLE `leads` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `user_id` int(11) NOT NULL, `pipeline_id` int(11) NOT NULL, `stage_id` int(11) NOT NULL, `sources` varchar(255) DEFAULT NULL, `products` varchar(255) DEFAULT NULL, `notes` text DEFAULT NULL, `labels` varchar(255) DEFAULT NULL, `order` int(11) NOT NULL DEFAULT 0, `phone` varchar(20) DEFAULT NULL, `created_by` int(11) NOT NULL, `workspace_id` int(11) NOT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `is_converted` int(11) NOT NULL DEFAULT 0, `follow_up_date` date DEFAULT NULL, `date` date DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `leads` -- INSERT INTO `leads` (`id`, `name`, `email`, `subject`, `user_id`, `pipeline_id`, `stage_id`, `sources`, `products`, `notes`, `labels`, `order`, `phone`, `created_by`, `workspace_id`, `is_active`, `is_converted`, `follow_up_date`, `date`, `created_at`, `updated_at`) VALUES (1, 'Ahmed', 'ahmed@gmail.com', 'Medica Plus', 7, 2, 12, NULL, NULL, NULL, NULL, 0, '011452703655', 6, 2, 1, 0, '2024-11-07', '2024-11-06', '2024-11-06 18:01:09', '2024-11-19 14:59:11'), (2, 'Dr. Ayman Abd el Baset', 'ayman@ics.com', 'Pharmacy Store', 11, 2, 9, NULL, NULL, NULL, NULL, 1, '+201024242001', 6, 2, 1, 0, '2025-02-15', '2025-02-14', '2025-02-14 21:45:09', '2025-02-14 21:47:43'), (3, 'Dr Ramy', 'ramy@ics.com', 'Ramy Pharmacies', 11, 2, 9, NULL, NULL, NULL, NULL, 0, '+201014005171', 6, 2, 1, 0, '2025-02-15', '2025-02-14', '2025-02-14 21:47:37', '2025-02-14 21:47:43'); -- -------------------------------------------------------- -- -- Table structure for table `lead_activity_logs` -- CREATE TABLE `lead_activity_logs` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `log_type` varchar(255) NOT NULL, `remark` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `lead_activity_logs` -- INSERT INTO `lead_activity_logs` (`id`, `user_id`, `lead_id`, `log_type`, `remark`, `created_at`, `updated_at`) VALUES (1, 6, 1, 'Move', '{\"title\":\"Ahmed\",\"old_status\":\"Draft\",\"new_status\":\"Sent\"}', '2024-11-06 18:01:14', '2024-11-06 18:01:14'), (2, 6, 1, 'Move', '{\"title\":\"Ahmed\",\"old_status\":\"Sent\",\"new_status\":\"Open\"}', '2024-11-19 14:58:59', '2024-11-19 14:58:59'), (3, 6, 1, 'Move', '{\"title\":\"Ahmed\",\"old_status\":\"Open\",\"new_status\":\"Revised\"}', '2024-11-19 14:59:08', '2024-11-19 14:59:08'), (4, 6, 1, 'Move', '{\"title\":\"Ahmed\",\"old_status\":\"Revised\",\"new_status\":\"Declined\"}', '2024-11-19 14:59:08', '2024-11-19 14:59:08'), (5, 6, 1, 'Move', '{\"title\":\"Ahmed\",\"old_status\":\"Declined\",\"new_status\":\"Accepted\"}', '2024-11-19 14:59:11', '2024-11-19 14:59:11'), (6, 6, 2, 'Move', '{\"title\":\"Dr. Ayman Abd el Baset\",\"old_status\":\"Draft\",\"new_status\":\"Open\"}', '2025-02-14 21:45:23', '2025-02-14 21:45:23'), (7, 6, 3, 'Move', '{\"title\":\"Dr Ramy\",\"old_status\":\"Draft\",\"new_status\":\"Open\"}', '2025-02-14 21:47:43', '2025-02-14 21:47:43'); -- -------------------------------------------------------- -- -- Table structure for table `lead_calls` -- CREATE TABLE `lead_calls` ( `id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `subject` varchar(255) NOT NULL, `call_type` varchar(30) NOT NULL, `duration` varchar(20) NOT NULL, `user_id` int(11) NOT NULL, `description` longtext DEFAULT NULL, `call_result` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_discussions` -- CREATE TABLE `lead_discussions` ( `id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `comment` text NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_emails` -- CREATE TABLE `lead_emails` ( `id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `to` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_files` -- CREATE TABLE `lead_files` ( `id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_stages` -- CREATE TABLE `lead_stages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `pipeline_id` int(11) NOT NULL, `created_by` int(11) NOT NULL, `order` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `lead_stages` -- INSERT INTO `lead_stages` (`id`, `name`, `pipeline_id`, `created_by`, `order`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'Draft', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (2, 'Sent', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (3, 'Open', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (4, 'Revised', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (5, 'Declined', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (6, 'Accepted', 1, 2, 0, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (7, 'Draft', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (8, 'Sent', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (9, 'Open', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (10, 'Revised', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (11, 'Declined', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (12, 'Accepted', 2, 6, 0, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (13, 'Draft', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (14, 'Sent', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (15, 'Open', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (16, 'Revised', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (17, 'Declined', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (18, 'Accepted', 3, 12, 0, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (19, 'Draft', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (20, 'Sent', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (21, 'Open', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (22, 'Revised', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (23, 'Declined', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (24, 'Accepted', 4, 12, 0, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `lead_tasks` -- CREATE TABLE `lead_tasks` ( `id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `date` date NOT NULL, `time` time NOT NULL, `priority` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `workspace` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `leaves` -- CREATE TABLE `leaves` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `user_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(255) NOT NULL, `leave_reason` longtext NOT NULL, `remark` longtext DEFAULT NULL, `status` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `leave_types` -- CREATE TABLE `leave_types` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `days` int(11) NOT NULL, `created_by` int(11) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loans` -- CREATE TABLE `loans` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `loan_option` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `reason` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loan_options` -- CREATE TABLE `loan_options` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `login_details` -- CREATE TABLE `login_details` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` varchar(255) NOT NULL, `ip` varchar(255) NOT NULL, `date` datetime NOT NULL, `details` text NOT NULL, `type` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `workspace` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `login_details` -- INSERT INTO `login_details` (`id`, `user_id`, `ip`, `date`, `details`, `type`, `created_by`, `workspace`, `created_at`, `updated_at`) VALUES (1, '1', '197.36.21.107', '2024-08-11 08:25:39', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.21.107\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-08-11 08:25:39', '2024-08-11 08:25:39'), (2, '2', '197.36.21.107', '2024-08-11 08:36:56', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.21.107\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-08-11 08:36:56', '2024-08-11 08:36:56'), (3, '1', '197.36.183.139', '2024-08-11 13:18:13', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.183.139\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-08-11 13:18:13', '2024-08-11 13:18:13'), (4, '2', '197.36.183.139', '2024-08-11 13:47:57', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.183.139\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-08-11 13:47:57', '2024-08-11 13:47:57'), (5, '1', '197.36.183.139', '2024-08-11 13:58:06', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.183.139\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-08-11 13:58:06', '2024-08-11 13:58:06'), (6, '2', '197.36.183.139', '2024-08-11 14:34:16', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.183.139\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-08-11 14:34:16', '2024-08-11 14:34:16'), (7, '1', '197.36.183.139', '2024-08-11 15:35:12', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.183.139\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-08-11 15:35:12', '2024-08-11 15:35:12'), (8, '2', '197.36.171.203', '2024-08-26 11:43:20', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.171.203\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-08-26 11:43:20', '2024-08-26 11:43:20'), (9, '2', '197.36.242.11', '2024-09-09 08:53:25', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.36.242.11\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-09-09 08:53:25', '2024-09-09 08:53:25'), (10, '2', '41.45.82.99', '2024-09-21 12:40:50', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"41.45.82.99\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-09-21 12:40:50', '2024-09-21 12:40:50'), (11, '2', '197.33.100.3', '2024-09-29 09:58:29', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"DK\",\"regionName\":\"Dakahlia\",\"city\":\"Al Mansurah\",\"zip\":\"\",\"lat\":31.0371,\"lon\":31.3844,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"197.33.100.3\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-09-29 09:58:29', '2024-09-29 09:58:29'), (12, '2', '156.208.159.73', '2024-10-09 11:45:03', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.159.73\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2024-10-09 11:45:03', '2024-10-09 11:45:03'), (13, '1', '196.157.105.106', '2024-10-09 15:15:57', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"Vodafone Data\",\"org\":\"\",\"as\":\"AS36935 Vodafone Data\",\"query\":\"196.157.105.106\",\"browser_name\":\"Safari\",\"os_name\":\"iOS\",\"browser_language\":\"en\",\"device_type\":\"mobile\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-10-09 15:15:57', '2024-10-09 15:15:57'), (14, '1', '156.208.159.73', '2024-10-09 15:16:53', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.159.73\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-10-09 15:16:53', '2024-10-09 15:16:53'), (15, '6', '156.208.159.73', '2024-10-09 15:19:11', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.159.73\",\"browser_name\":\"Edge\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-10-09 15:19:11', '2024-10-09 15:19:11'), (16, '6', '41.232.52.201', '2024-10-09 20:21:28', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"TE Data\",\"as\":\"AS8452 TE-AS\",\"query\":\"41.232.52.201\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"ar\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-10-09 20:21:28', '2024-10-09 20:21:28'), (17, '6', '2c0f:fc89:44:e297:cc70:c424:eff0:5d41', '2024-10-10 11:17:55', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"Etisalat Misr Mobile BB\",\"org\":\"Etisalat Misr\",\"as\":\"AS36992 ETISALAT MISR\",\"query\":\"2c0f:fc89:44:e297:cc70:c424:eff0:5d41\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"ar\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-10-10 11:17:55', '2024-10-10 11:17:55'), (18, '6', '156.208.159.73', '2024-10-10 13:10:11', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.159.73\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-10-10 13:10:11', '2024-10-10 13:10:11'), (19, '1', '156.208.159.73', '2024-10-10 13:45:28', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.159.73\",\"browser_name\":\"Edge\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-10-10 13:45:28', '2024-10-10 13:45:28'), (20, '6', '156.208.159.73', '2024-10-13 07:58:34', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.159.73\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"ar\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-10-13 07:58:34', '2024-10-13 07:58:34'), (21, '6', '156.208.139.180', '2024-11-06 17:59:20', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.139.180\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-11-06 17:59:20', '2024-11-06 17:59:20'), (22, '1', '156.208.139.180', '2024-11-06 18:10:52', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.139.180\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-11-06 18:10:52', '2024-11-06 18:10:52'), (23, '6', '156.208.139.180', '2024-11-07 14:45:49', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.139.180\",\"browser_name\":\"Edge\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-11-07 14:45:49', '2024-11-07 14:45:49'), (24, '1', '156.208.109.207', '2024-11-19 14:39:03', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.109.207\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-11-19 14:39:03', '2024-11-19 14:39:03'), (25, '6', '156.208.109.207', '2024-11-19 14:40:55', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.109.207\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-11-19 14:40:55', '2024-11-19 14:40:55'), (26, '6', '102.44.114.123', '2024-11-19 15:04:02', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"KB\",\"regionName\":\"Qalyubia\",\"city\":\"Banh\\u0101\",\"zip\":\"\",\"lat\":30.4581,\"lon\":31.176,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"102.44.114.123\",\"browser_name\":\"Safari\",\"os_name\":\"iOS\",\"browser_language\":\"en\",\"device_type\":\"mobile\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-11-19 15:04:02', '2024-11-19 15:04:02'), (27, '6', '156.208.109.207', '2024-11-19 17:35:40', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.109.207\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2024-11-19 17:35:40', '2024-11-19 17:35:40'), (28, '1', '156.208.62.178', '2024-11-26 18:36:08', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.62.178\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-11-26 18:36:08', '2024-11-26 18:36:08'), (29, '1', '156.208.215.122', '2024-12-07 18:38:19', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.215.122\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-12-07 18:38:19', '2024-12-07 18:38:19'), (30, '1', '156.208.215.122', '2024-12-07 18:39:15', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.215.122\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-12-07 18:39:15', '2024-12-07 18:39:15'), (31, '1', '2c0f:fc89:80a3:c88d:7866:aa59:ec9a:e2da', '2024-12-07 19:38:39', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"C\",\"regionName\":\"Cairo Governorate\",\"city\":\"Cairo\",\"zip\":\"\",\"lat\":30.0588,\"lon\":31.2268,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"Etisalat Misr\",\"org\":\"Etisalat Misr\",\"as\":\"AS36992 ETISALAT MISR\",\"query\":\"2c0f:fc89:80a3:c88d:7866:aa59:ec9a:e2da\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2024-12-07 19:38:39', '2024-12-07 19:38:39'), (32, '1', '41.42.68.177', '2025-01-17 14:40:06', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"6th of October City\",\"zip\":\"\",\"lat\":29.9436,\"lon\":30.9171,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"41.42.68.177\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-01-17 14:40:06', '2025-01-17 14:40:06'), (33, '6', '41.42.68.177', '2025-01-17 14:46:48', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"6th of October City\",\"zip\":\"\",\"lat\":29.9436,\"lon\":30.9171,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"41.42.68.177\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2025-01-17 14:46:48', '2025-01-17 14:46:48'), (34, '1', '156.193.194.187', '2025-01-25 20:38:15', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.008,\"lon\":31.2194,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.193.194.187\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-01-25 20:38:15', '2025-01-25 20:38:15'), (35, '2', '102.191.76.62', '2025-02-06 14:19:29', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.0046,\"lon\":31.2044,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"Vodafone Data\",\"org\":\"\",\"as\":\"AS24835 Vodafone Data\",\"query\":\"102.191.76.62\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-02-06 14:19:29', '2025-02-06 14:19:29'), (36, '6', '156.193.150.136', '2025-02-14 21:41:06', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.0046,\"lon\":31.2044,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.193.150.136\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2025-02-14 21:41:06', '2025-02-14 21:41:06'), (37, '1', '156.208.96.60', '2025-04-13 09:12:56', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.0046,\"lon\":31.2044,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.96.60\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-04-13 09:12:56', '2025-04-13 09:12:56'), (38, '6', '156.208.96.60', '2025-04-13 09:14:15', '{\"status\":\"success\",\"country\":\"Egypt\",\"countryCode\":\"EG\",\"region\":\"GZ\",\"regionName\":\"Giza\",\"city\":\"Giza\",\"zip\":\"\",\"lat\":30.0046,\"lon\":31.2044,\"timezone\":\"Africa\\/Cairo\",\"isp\":\"TE Data\",\"org\":\"\",\"as\":\"AS8452 TE-AS\",\"query\":\"156.208.96.60\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2025-04-13 09:14:15', '2025-04-13 09:14:15'), (39, '6', '176.28.145.254', '2025-05-12 22:53:18', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.145.254\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2025-05-12 22:53:18', '2025-05-12 22:53:18'), (40, '6', '176.28.136.65', '2025-05-20 23:50:08', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.136.65\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 6, 2, '2025-05-20 23:50:08', '2025-05-20 23:50:08'), (41, '1', '176.28.136.65', '2025-05-21 17:52:44', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.136.65\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-05-21 17:52:44', '2025-05-21 17:52:44'), (42, '12', '176.28.136.65', '2025-05-21 17:56:18', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.136.65\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 12, 3, '2025-05-21 17:56:18', '2025-05-21 17:56:18'), (43, '12', '176.28.139.33', '2025-06-03 07:31:35', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.139.33\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 12, 3, '2025-06-03 07:31:35', '2025-06-03 07:31:35'), (44, '12', '176.28.139.33', '2025-06-03 22:03:55', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.139.33\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 12, 3, '2025-06-03 22:03:55', '2025-06-03 22:03:55'), (45, '1', '176.28.139.33', '2025-06-03 22:11:44', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.139.33\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-06-03 22:11:44', '2025-06-03 22:11:44'), (46, '1', '176.28.139.33', '2025-06-03 22:15:08', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.139.33\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-06-03 22:15:08', '2025-06-03 22:15:08'), (47, '12', '176.28.139.33', '2025-06-03 22:21:01', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.139.33\",\"browser_name\":\"Edge\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 12, 3, '2025-06-03 22:21:01', '2025-06-03 22:21:01'), (48, '2', '176.28.139.33', '2025-06-04 01:25:51', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.139.33\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-06-04 01:25:51', '2025-06-04 01:25:51'), (49, '2', '176.28.141.163', '2025-06-22 01:05:45', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.141.163\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-06-22 01:05:45', '2025-06-22 01:05:45'), (50, '1', '176.28.141.163', '2025-06-22 01:06:42', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.141.163\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-06-22 01:06:42', '2025-06-22 01:06:42'), (51, '1', '176.28.141.163', '2025-06-22 01:18:00', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.141.163\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-06-22 01:18:00', '2025-06-22 01:18:00'), (52, '1', '176.28.141.163', '2025-06-22 03:05:33', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.141.163\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-06-22 03:05:33', '2025-06-22 03:05:33'), (53, '2', '176.28.141.163', '2025-06-22 03:08:36', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.141.163\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-06-22 03:08:36', '2025-06-22 03:08:36'), (54, '1', '176.28.165.244', '2025-06-22 22:58:04', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.165.244\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-06-22 22:58:04', '2025-06-22 22:58:04'), (55, '2', '176.28.165.244', '2025-06-22 22:59:23', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.165.244\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-06-22 22:59:23', '2025-06-22 22:59:23'), (56, '2', '176.28.165.244', '2025-06-28 21:50:25', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.165.244\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-06-28 21:50:25', '2025-06-28 21:50:25'), (57, '2', '176.28.135.245', '2025-07-26 14:22:11', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.135.245\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'company', 2, 1, '2025-07-26 14:22:11', '2025-07-26 14:22:11'), (58, '1', '176.28.135.245', '2025-07-26 16:10:06', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.135.245\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-07-26 16:10:06', '2025-07-26 16:10:06'), (59, '1', '176.28.135.245', '2025-07-29 08:20:21', '{\"status\":\"success\",\"country\":\"Jordan\",\"countryCode\":\"JO\",\"region\":\"AM\",\"regionName\":\"Amman Governorate\",\"city\":\"Amman\",\"zip\":\"\",\"lat\":31.9555,\"lon\":35.9435,\"timezone\":\"Asia\\/Amman\",\"isp\":\"ZAIN\",\"org\":\"\",\"as\":\"AS48832 Jordanian mobile phone services Ltd\",\"query\":\"176.28.135.245\",\"browser_name\":\"Chrome\",\"os_name\":\"Windows\",\"browser_language\":\"en\",\"device_type\":\"desktop\",\"referrer_host\":true,\"referrer_path\":true}', 'super admin', 1, 0, '2025-07-29 08:20:21', '2025-07-29 08:20:21'); -- -------------------------------------------------------- -- -- Table structure for table `marketplace_page_settings` -- CREATE TABLE `marketplace_page_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `value` longtext DEFAULT NULL, `module` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `marketplace_page_settings` -- INSERT INTO `marketplace_page_settings` (`id`, `name`, `value`, `module`, `created_at`, `updated_at`) VALUES (1, 'product_main_banner', 'uploads/marketplace_image/Account/1750557182product_main_banner.jpg', 'Account', '2024-08-11 08:22:55', '2025-06-22 01:53:02'), (2, 'product_main_status', 'on', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (3, 'product_main_heading', 'Accounting', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (4, 'product_main_description', '<p>Account is an account management software that facilitates ease in revenue calculation by keeping a tab on all the accountancy matters of business. Based on Laravel, this accountancy software will make your business operations smooth and convenient. A graphical and tabular representation of various elements will help you make informed decisions for your firm.</p>', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (5, 'product_main_demo_link', '#', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (6, 'product_main_demo_button_text', 'View Live Demo', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (7, 'dedicated_theme_heading', 'ACCOUNTING AND BILLING, SIMPLIFIED', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (8, 'dedicated_theme_description', '<p>Accounting gives you the power to keep an eye on all accounting and inventory matters from one tab. You’ll never have to manage accounting with one tool, and control inventory with another - ever again!</p>', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (9, 'dedicated_theme_sections', '[{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Account Helps You Simplify Your Accounting and Billing\",\"dedicated_theme_section_description\":\"\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Simplify Your Accounting and Billing\",\"description\":\"Simplify your accounting and make it easy to keep an eye on your money. Set financial goals and let the system monitor them for you, automate taxes, and more! - without lifting a finger.\"},\"2\":{\"title\":\"Take Control Of Your Inventory\",\"description\":\"Save time by managing your entire inventory with a few clicks. Easily create categories and add products to them. Modify product prices whenever you want, assign SKUs, create different tax rates, and do so much more!\"},\"3\":{\"title\":\"Take Your Project from Proposal to Payment\",\"description\":\"Land new clients in a flash, and get paid just as fast. Create proposal templates and pitch your future clients. Turn your accepted proposals into payable invoices, send reminders, and get paid fast - all in one place!\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Get All the Critical Tools to Manage Business Finances\",\"dedicated_theme_section_description\":\"\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Manage Accounting Quickly and Easily\",\"description\":\"Manage your billing and accounting without little to no effort! Set financial goals and let the system monitor them for you, automate taxes, and more! - without lifting a finger.\"},\"2\":{\"title\":\"Handle Inventory Tasks Without Stress\",\"description\":\"Easily manage inventory by creating categories and adding products to them. Modify product prices whenever you want, assign SKUs, create different tax rates, and do so much more!\"},\"3\":{\"title\":\"Take Your Project From Proposal To Payment\",\"description\":\"Create proposal templates and pitch your future clients. Turn your accepted proposals into payable invoices, send reminders, and get paid fast - all in one place!\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Reports\",\"dedicated_theme_section_description\":\"<p>Get a report on transactions with an easy filtering option. Download the required account statements in either PDF, CSV, or Excel format. You get duly prepared reports on individual Income, Expenses, Tax, Invoice, and bill summary. Filter them based on Account, category, and customers. Also, a graphical display of the Income VS Expense chart along with a detailed calculation of Profit and Loss will help you make informed decisions. Filter the tax summary and Income VS Expense chart based on financial years.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Budget Planner\",\"dedicated_theme_section_description\":\"<p>A budget is a financial plan for a specified period to keep in check with the working capital. This feature here helps to maintain the capital flow. You can set monthly, quarterly, half-yearly, or yearly budgets according to your business plans and needs. The main categories are “Income” and “Expense” where one can edit /update /delete the sub-categories as well.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}}]', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (10, 'dedicated_theme_sections_heading', '', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (11, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"Accounting\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Accounting\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Accounting\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Accounting\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Accounting\"}]', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (12, 'addon_heading', 'Why choose dedicated modulesfor Your Business?', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (13, 'addon_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (14, 'addon_section_status', 'on', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (15, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (16, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (17, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (18, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (19, 'pricing_plan_demo_link', '#', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (20, 'pricing_plan_demo_button_text', 'View Live Demo', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (21, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (22, 'whychoose_sections_status', 'on', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (23, 'dedicated_theme_section_status', 'on', 'Account', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (24, 'product_main_banner', 'uploads/marketplace_image/Hrm/1750557219product_main_banner.png', 'Hrm', '2024-08-11 08:22:55', '2025-06-22 01:53:39'), (25, 'product_main_status', 'on', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (26, 'product_main_heading', 'HRM', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (27, 'product_main_description', '<p>Your employees are your business’s greatest assets. Whether you employ 5, 50, or 500 people, with HRMGo, you can manage all employee matters. From hiring to performance and salaries - everything under one roof. Customizable, versatile, and easy-to-use complete HRM system.</p>', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (28, 'product_main_demo_link', '#', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (29, 'product_main_demo_button_text', 'View Live Demo', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (30, 'dedicated_theme_heading', 'The Complete HRM System Your Business Needs…', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (31, 'dedicated_theme_description', '<p>With HRMGo, you can manage key employee matters, recruit new candidates, boost employee productivity, and pay your employees for their hard work - Without stress, all from one place. Whether youre a consultant, small business owner, or large corporation - the system is designed for everyone.</p>', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (32, 'dedicated_theme_sections', '[{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Manage Your HR Like a Boss\",\"dedicated_theme_section_description\":\"<p>This comprehensive feature facilitates the activities of HR. It is easy to maintain a record of promotions, transfers, work trips, terminations, warnings, and other important aspects of HR.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Manage Key Employee Matters Easily\",\"description\":\"Create a profile for every employee and track their key information, including position, salary, and career progress. Update and change their information in just a few clicks. Track employee contract status. Transfer them to different departments, branches, or terminate the contract if needed.\"},\"2\":{\"title\":\"Recruit New Candidates and Grow Your Team\",\"description\":\"Speed up your hiring process. Use built-in hiring features to create and manage new job openings and fill your open positions faster. Collect and manage applications from start to finish. Easily compare candidates and pick the best one for the job.\"},\"3\":{\"title\":\"Pay Your Employees for their Hard Work\",\"description\":\"Manage payroll in just a few clicks. Calculate salaries, schedule deposits, and make sure your employees get paid on time. Keep data of all workforce costs, transfers, deposits, and other employee-related transactions for future reference.\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Everything You Need For a Successful HRM - In One Place\",\"dedicated_theme_section_description\":\"<p>This feature makes it easier for a company to maintain a record of an employee’s personal, company, and Bank details along with their essential documentation. Employees could view and manage their profiles.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Say Goodbye To Spending Thousands Of Dollars On Hiring HR Managers\",\"description\":\"Need to fill an open position? Just create a new job opening in HRM and manage the process from start to finish. With HRM, recruit new candidates faster and save time on hiring managers. Create a job opening, collect and manage applications, create a candidate pipeline, and handle interviews.\"},\"2\":{\"title\":\"Help Your Employees Become More Productive\",\"description\":\"Empower employee growth. Schedule skills training, track expenses, and watch your employees become better at their work. Boost employee productivity with custom KPIs. Track employee performance, share feedback, and help them reach company targets.\"},\"3\":{\"title\":\"Manage Payroll in Just a Few Clicks\",\"description\":\"Pay your employees for their hard work. Keep data of all workforce costs, transfers, deposits, and other employee-related transactions for future reference. Track employee attendance and overtime to ensure they always receive fair compensation for their work.\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Manage Payroll Effortlessly\",\"dedicated_theme_section_description\":\"<p>You can generate monthly payslips and make bulk payments through easy clicks. You could also change the status of the payslip with an easy CTA. An employee could view the breakdown of their salary components.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Recruit New Candidates and Grow Your Team\",\"dedicated_theme_section_description\":\"<p>Use built-in hiring features to create and manage new job openings and fill your open positions faster. Schedule interviews, create interview questions and assign interviewers in just a few clicks.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}}]', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (33, 'dedicated_theme_sections_heading', '', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (34, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"HRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"HRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"HRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"HRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"HRM\"}]', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (35, 'addon_heading', 'Why choose dedicated modulesfor Your Business?', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (36, 'addon_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (37, 'addon_section_status', 'on', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (38, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (39, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (40, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (41, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (42, 'pricing_plan_demo_link', '#', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (43, 'pricing_plan_demo_button_text', 'View Live Demo', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (44, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (45, 'whychoose_sections_status', 'on', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (46, 'dedicated_theme_section_status', 'on', 'Hrm', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (47, 'product_main_banner', 'uploads/marketplace_image/Lead/1750557345product_main_banner.png', 'Lead', '2024-08-11 08:22:55', '2025-06-22 01:55:45'), (48, 'product_main_status', 'on', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (49, 'product_main_heading', 'CRM', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (50, 'product_main_description', '<p>Convert your leads to deals with ease. Easily manage multiple leads, track visibility and do a lot more with the ultimate lead management tool.</p>', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (51, 'product_main_demo_link', '#', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (52, 'product_main_demo_button_text', 'View Live Demo', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (53, 'dedicated_theme_heading', '<h2>What People <b>Are Saying</b> About CRM</h2>', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (54, 'dedicated_theme_description', '<p>With Alligō, you can take care of the entire partner lifecycle - from onboarding through nurturing, cooperating, and rewarding. Find top performers and let go of those who aren’t a good fit.</p>', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (55, 'dedicated_theme_sections', '[{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Manage Your Leads Better. Convert Faster.\",\"dedicated_theme_section_description\":\"<p>Skyrocket your sales with an effective lead management tool. Determine the value of leads and develop promising leads with ease. Get clearer action plans and make smarter and well-informed decisions.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Increase Your Reach\",\"description\":\"Expand your business to every nook and cranny of the world. Communicate efficiently with your users in the language that they understand. Utilize a multilingual lead management tool that lets you generate payment in various currencies.\"},\"2\":{\"title\":\"Cost-Efficient Lead Management\",\"description\":\"Save money and manage your time effectively to improve your business productivity. Automate your lead management and start closing more deals and making more sales on autopilot.\"},\"3\":{\"title\":\"Easy Customization\",\"description\":\"Create custom design fields for your products, deals, and users. Easily manage and customize your dashboard to suit your needs. Make your invoices unique by accessing an efficient color palette and choosing from 10 attractive pdf templates.\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Get A Complete View Of All Your Leads\",\"dedicated_theme_section_description\":\"<p>A management tool to maintain precision in lead management. Using this proficient tool you can manage the visibility of your leads at different stages of the pipeline.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Manage All Your Leads Under One Roof\",\"description\":\"Manage your clients, users, and deals from anywhere, and from a single tab. Access a wide range of features, get a graphical representation of your data, and make informed decisions.\"},\"2\":{\"title\":\"Stay In Control\",\"description\":\"Create and manage multiple users for various deals. Assign different roles to them and control their access levels. Upgrade permissions on the go and easily seal deals.\"},\"3\":{\"title\":\"Get Tailored Reports\",\"description\":\"Easily measure every aspect of your business from an intuitive interface. Generate insights that lead to more effective sales, and manage your leads and deals with a smooth drag-and-drop system.\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Kanban Board for Deal Management\",\"dedicated_theme_section_description\":\"<p>Manage deals with an easy drag-and-drop system. Easily relocate the deals to various stages through the Kanban board system.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"CRM is an all-in-one lead management tool.\",\"dedicated_theme_section_description\":\"<p>Get an actionable analysis of all your leads, deals, users, invoices, and products - in one interactive dashboard. Create and implement effective business plans, set a maximum number of deals, payment options and do so much more.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}}]', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (56, 'dedicated_theme_sections_heading', '', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (57, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"CRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"CRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"CRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"CRM\"},{\"screenshots\":\"\",\"screenshots_heading\":\"CRM\"}]', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (58, 'addon_heading', '<h2>Why choose dedicated modules<b> for Your Business?</b></h2>', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (59, 'addon_description', '<p>With W-Manage ERP SaaS, you can conveniently manage all your business functions from a single location.</p>', 'Lead', '2024-08-11 08:22:55', '2025-06-22 01:59:08'), (60, 'addon_section_status', 'on', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (61, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (62, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (63, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (64, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (65, 'pricing_plan_demo_link', '#', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (66, 'pricing_plan_demo_button_text', 'View Live Demo', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (67, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (68, 'whychoose_sections_status', 'on', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (69, 'dedicated_theme_section_status', 'on', 'Lead', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (70, 'product_main_banner', '', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (71, 'product_main_status', 'on', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (72, 'product_main_heading', 'Paypal', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (73, 'product_main_description', '<p>Check out faster, safer and more easily with PayPal, the service that lets you pay, send money, and accept payments without having to enter your financial details each time. PayPal prioritizes enabling secure transactions to allow users to send and receive money electronically. Compared to credit cards, PayPal can be considered as safe.</p>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (74, 'product_main_demo_link', '#', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (75, 'product_main_demo_button_text', 'View Live Demo', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (76, 'dedicated_theme_heading', '<h2>Paypal<b> Payment</b> Getway</h2>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (77, 'dedicated_theme_description', '<p>Compared to credit cards, PayPal can be considered as safe.</p>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (78, 'dedicated_theme_sections', '[{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"What are the benefits of using PayPal?\",\"dedicated_theme_section_description\":\"<p>PayPal is a fast, secure way to pay online. We help you make purchases at millions of online stores in the U.S. and across more than 200 global markets – all without the hassle of converting currency. It’s free to sign up for an account and download our app to receive and send money. We also make it quick and simple to make automatic payments for all your monthly bills and subscriptions.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"The Advantages of Using PayPal\",\"dedicated_theme_section_description\":\"<p>PayPal. It features a robust, widely accessible system. You can create a free PayPal account and start receiving payments within minutes. Of course, using PayPal now and then is one thing, but setting it as your default payment system is another. Assess the platform’s advantages and gauge how they’ll benefit your freelance business.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}}]', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (79, 'dedicated_theme_sections_heading', '', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (80, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"Paypal\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Paypal\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Paypal\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Paypal\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Paypal\"}]', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (81, 'addon_heading', '<h2>Why choose dedicated modules<b> for Your Business?</b></h2>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (82, 'addon_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (83, 'addon_section_status', 'on', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (84, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (85, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (86, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (87, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (88, 'pricing_plan_demo_link', '#', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (89, 'pricing_plan_demo_button_text', 'View Live Demo', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (90, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (91, 'whychoose_sections_status', 'on', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (92, 'dedicated_theme_section_status', 'on', 'Paypal', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (93, 'product_main_banner', '', 'Pos', '2024-08-11 08:22:55', '2025-06-22 01:59:31'), (94, 'product_main_status', 'on', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (95, 'product_main_heading', 'POS', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (96, 'product_main_description', '<p>Welcome to the POS Module in W-Manage ERP SaaS, your ultimate solution for streamlined sales management. Our platform offers a user-friendly dashboard where you can easily navigate through your sales activities. At the heart of the dashboard is a dynamic chart representing your sales reports, providing valuable insights into your business is performance. Whether you are a small retail store or a bustling restaurant, our POS Module empowers you to efficiently manage your sales process from start to finish.</p>', 'Pos', '2024-08-11 08:22:55', '2025-06-22 01:59:31'), (97, 'product_main_demo_link', '#', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (98, 'product_main_demo_button_text', 'View Live Demo', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (99, 'dedicated_theme_heading', '<h2>Dash SaaS POS: Effortless Sales Management</h2>', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (100, 'dedicated_theme_description', '<p>Simplify sales management with Dash SaaS POS. Track revenue, manage products, process orders, and utilize barcode functionality for seamless transactions.</p>', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (101, 'dedicated_theme_sections', '[\n {\n \"dedicated_theme_section_image\": \"\",\n \"dedicated_theme_section_heading\": \"Real-Time Revenue Tracking\",\n \"dedicated_theme_section_description\": \"<p>With the POS Module, tracking your revenue in real time has never been easier. At the top of the dashboard, you will find a dedicated section displaying the total sales amount. This feature allows you to monitor your revenue at a glance, empowering you to make informed decisions about your business is financial health. Whether you are analyzing daily, weekly, or monthly sales trends, our platform provides the tools you need to stay on top of your finances effortlessly.<\\/p>\",\n \"dedicated_theme_section_cards\": {\n \"1\": {\n \"title\": null,\n \"description\": null\n }\n }\n },\n {\n \"dedicated_theme_section_image\": \"\",\n \"dedicated_theme_section_heading\": \"Effortless Product Management\",\n \"dedicated_theme_section_description\": \"<p>Managing your products for sale is a breeze with the POS Module in Dash SaaS. Our platform offers robust product management features, allowing you to add, edit, or remove products with ease. Whether you are introducing new items to your inventory or updating existing ones, our intuitive interface makes the process seamless. With our product management tools, you can ensure that your inventory is always up-to-date, helping you serve your customers more effectively.<\\/p>\",\n \"dedicated_theme_section_cards\": {\n \"1\": {\n \"title\": null,\n \"description\": null\n }\n }\n },\n {\n \"dedicated_theme_section_image\": \"\",\n \"dedicated_theme_section_heading\": \"Efficient Order Processing\",\n \"dedicated_theme_section_description\": \"<p>Streamline your order processing with the POS Module is efficient order management system. Our platform allows you to process orders quickly and accurately, ensuring a seamless experience for both you and your customers. From customizing orders based on customer preferences to tracking order status in real time, our POS Module provides the flexibility and functionality you need to keep your business running smoothly. With our order processing features, you can focus on delivering exceptional service to your customers, every time.<\\/p>\",\n \"dedicated_theme_section_cards\": {\n \"1\": {\n \"title\": null,\n \"description\": null\n }\n }\n },\n {\n \"dedicated_theme_section_image\": \"\",\n \"dedicated_theme_section_heading\": \"Streamlined Barcode Printing\",\n \"dedicated_theme_section_description\": \"<p>Enhance efficiency in your sales workflow with Dash SaaS POS is streamlined barcode printing feature. Easily generate barcodes for products and orders by selecting items and specifying quantities. This functionality simplifies inventory management and accelerates checkout processes. Improve operational productivity by swiftly printing as many barcodes as needed, empowering your business to meet customer demands effectively. Experience convenience and flexibility with Dash SaaS POS is barcode printing capability, tailored to optimize your sales operations.<\\/p>\",\n \"dedicated_theme_section_cards\": {\n \"1\": {\n \"title\": null,\n \"description\": null\n }\n }\n }\n ]', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (102, 'dedicated_theme_sections_heading', '', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (103, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"POS\"},{\"screenshots\":\"\",\"screenshots_heading\":\"POS\"},{\"screenshots\":\"\",\"screenshots_heading\":\"POS\"},{\"screenshots\":\"\",\"screenshots_heading\":\"POS\"},{\"screenshots\":\"\",\"screenshots_heading\":\"POS\"},{\"screenshots\":\"\",\"screenshots_heading\":\"POS\"}]', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (104, 'addon_heading', '<h2>Why choose dedicated modules<b> for Your Business?</b></h2>', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (105, 'addon_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (106, 'addon_section_status', 'on', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (107, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (108, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (109, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (110, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (111, 'pricing_plan_demo_link', '#', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (112, 'pricing_plan_demo_button_text', 'View Live Demo', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (113, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (114, 'whychoose_sections_status', 'on', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (115, 'dedicated_theme_section_status', 'on', 'Pos', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (116, 'product_main_banner', '', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (117, 'product_main_status', 'on', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (118, 'product_main_heading', 'Stripe', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (119, 'product_main_description', '<p>Stripe is an online payment processing and credit card processing platform for businesses. When a customer buys a product online, the funds need to be delivered to the seller Insert Stripe. Stripe allows safe and efficient processing of funds via credit card or bank and transfers those funds to the sellers account.</p>', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (120, 'product_main_demo_link', '#', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (121, 'product_main_demo_button_text', 'View Live Demo', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (122, 'dedicated_theme_heading', 'Stripe Payment Gateway', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (123, 'dedicated_theme_description', '<p>Stripe is an online payment processing and credit card processing platform for businesses.</p>', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (124, 'dedicated_theme_sections', '[{\"dedicated_theme_section_image\":\"\",\n \"dedicated_theme_section_heading\":\"Why use Stripe payment?\",\"dedicated_theme_section_description\":\"<p>Stripe Payments is a powerful payment processor for online sales. It can accept dozens of payment methods and more than 135 currencies. And its advanced developer tools allow you to create a checkout flow that feels custom, provided you know how to use them.<\\/p>\",\n \"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}},\n \n {\"dedicated_theme_section_image\":\"\",\n \"dedicated_theme_section_heading\":\"Stripe payment gateway\",\"dedicated_theme_section_description\":\"<p>Stripe users can accept in-person payments by integrating the company’s point-of-sale option, Stripe Terminal. But if you do most of your business in person, there are better options. For example, other payment processors, such as Square, offer specific restaurant and retail features like end-of-day reports and inventory tracking.That said, Stripe’s flat-rate pricing is easy to understand and there are no monthly fees. In addition, you can cancel at any time if it isn’t a good fit.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}}]', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (125, 'dedicated_theme_sections_heading', '', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (126, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"Stripe\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Stripe\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Stripe\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Stripe\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Stripe\"}]', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (127, 'addon_heading', 'Why choose dedicated modulesfor Your Business?', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (128, 'addon_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (129, 'addon_section_status', 'on', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (130, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (131, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (132, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (133, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (134, 'pricing_plan_demo_link', '#', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (135, 'pricing_plan_demo_button_text', 'View Live Demo', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (136, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (137, 'whychoose_sections_status', 'on', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (138, 'dedicated_theme_section_status', 'on', 'Stripe', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (139, 'product_main_banner', '', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (140, 'product_main_status', 'on', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (141, 'product_main_heading', 'Project', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (142, 'product_main_description', '<p>Get an overview of the total number of projects, tasks, bugs, and members. A visual representation of the task overview and project status can help you estimate the progress on each task. Lastly, you can check the top due task.</p>', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (143, 'product_main_demo_link', '#', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (144, 'product_main_demo_button_text', 'View Live Demo', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (145, 'dedicated_theme_heading', 'ONE TOOL TO MANAGE ALL YOUR PROJECTS AND PEOPLE', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (146, 'dedicated_theme_description', '<p>Simple, yet powerful. Manage projects, work with clients, and collaborate with team members. All in one place.Create new projects and assign teams to each project. Add multiple members to share the projects with clients. You can edit permissions and controls to manage client access.</p>', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (147, 'dedicated_theme_sections', '[{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Feasibility in finding tasks and projects with a search tab on the top\",\"dedicated_theme_section_description\":\"<p>Attach cost and summary to milestones and change the status through the drop-down menu. Get a tab on recent activities of a project and also a graph about progress. Along with that, you can check your tasks’ details under project details with the help of the Gantt Chart.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Collaborate With Anyone, Anywhere.\",\"description\":\"Easily assign tasks, projects, and milestones to team members. Chat with your team in real-time, exchange files, and brainstorm ideas. Invite clients to discuss projects and deliver results.\"},\"2\":{\"title\":\"Easily Manage All Your Projects and Keep Your Business Growing.\",\"description\":\"Got a big team or working on multiple projects at once? Manage task priorities or even create additional workspaces and use the built-in permission system to separate core projects. Make your team more effective by helping them avoid confusion ensuring they always know what to focus on.\"},\"3\":{\"title\":\"Kanban Task Management\",\"description\":\"Whether you need a simple tool to track your tasks, are a Kanban fan, want to create Gantt Charts or are looking for a convenient tool to track your projects - Taskly got you covered.\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Creating milestones and assigning subtasks\",\"dedicated_theme_section_description\":\"<p>Add a new task to an already existing project and prioritize them according to the need of urgency. Assign the task to team members and set a due date for task completion. Add comments to the task and create a sub-task for ease of completion. Attach necessary files in a required task.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":\"Bugs Resolution\",\"description\":\"Create new bugs and assign users and priority to them. You can write a note in the text box for the bug description. Also, the status of each bug could be changed through an easy drop-down and Kanban drag system.\"},\"2\":{\"title\":\"Project Milestone\",\"description\":\"Go beyond short-term project management. Use project milestones to help you define and track progress towards long-term goals.\"},\"3\":{\"title\":\"Kanban Layout\",\"description\":\"Get a better visual overview of all your projects, tasks, and assigned team members. Boost team productivity.\"}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Project Task Prioritization and Commenting\",\"dedicated_theme_section_description\":\"<p>Prioritize tasks to ensure that you and your team members always focus on the most important task in the pipeline. Leave relevant comments, ask questions, and get answers right on the task or project.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}},{\"dedicated_theme_section_image\":\"\",\"dedicated_theme_section_heading\":\"Manage Your Clients With Ease\",\"dedicated_theme_section_description\":\"<p>Manage your clients’ details, collaborate with them, discuss projects, and help them watch your progress. Make it easy for them to pay you for your work.<\\/p>\",\"dedicated_theme_section_cards\":{\"1\":{\"title\":null,\"description\":null}}}]', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (148, 'dedicated_theme_sections_heading', '', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (149, 'screenshots', '[{\"screenshots\":\"\",\"screenshots_heading\":\"Project\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Project\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Project\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Project\"},{\"screenshots\":\"\",\"screenshots_heading\":\"Project\"}]', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (150, 'addon_heading', 'Why choose dedicated modulesfor Your Business?', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (151, 'addon_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (152, 'addon_section_status', 'on', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (153, 'whychoose_heading', 'Why choose dedicated modulesfor Your Business?', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (154, 'whychoose_description', '<p>With Dash, you can conveniently manage all your business functions from a single location.</p>', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (155, 'pricing_plan_heading', 'Empower Your Workforce with DASH', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (156, 'pricing_plan_description', '<p>Access over Premium Add-ons for Accounting, HR, Payments, Leads, Communication, Management, and more, all in one place!</p>', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (157, 'pricing_plan_demo_link', '#', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (158, 'pricing_plan_demo_button_text', 'View Live Demo', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (159, 'pricing_plan_text', '{\"1\":{\"title\":\"Pay-as-you-go\"},\"2\":{\"title\":\"Unlimited installation\"},\"3\":{\"title\":\"Secure cloud storage\"}}', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (160, 'whychoose_sections_status', 'on', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (161, 'dedicated_theme_section_status', 'on', 'Taskly', '2024-08-11 08:22:55', '2024-08-11 08:22:55'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_reset_tokens_table', 1), (3, '2014_10_12_100000_create_password_resets_table', 1), (4, '2019_05_03_000003_create_receipts_table', 1), (5, '2019_05_08_094315_create_user_projects_table', 1), (6, '2019_05_13_061456_create_tasks_table', 1), (7, '2019_05_15_054812_create_task_files_table', 1), (8, '2019_08_19_000000_create_failed_jobs_table', 1), (9, '2019_10_14_220244_create_milestones_table', 1), (10, '2019_10_14_233948_create_sub_tasks_table', 1), (11, '2019_10_18_114133_create_activity_logs_table', 1), (12, '2019_12_14_000001_create_personal_access_tokens_table', 1), (13, '2020_03_23_153638_create_stages_table', 1), (14, '2022_06_16_092727_create_product_services_table', 1), (15, '2022_06_16_101208_create_categories_table', 1), (16, '2022_06_16_105042_create_taxes_table', 1), (17, '2022_06_21_104337_create_projects_table', 1), (18, '2022_07_14_085216_create_bug_stages_table', 1), (19, '2022_07_14_132351_create_comments_table', 1), (20, '2022_07_18_065110_create_bug_reports_table', 1), (21, '2022_07_18_084714_create_bug_comments_table', 1), (22, '2022_07_18_085513_create_bug_files_table', 1), (23, '2022_07_19_060243_create_project_files_table', 1), (24, '2022_07_19_065033_create_client_projects_table', 1), (25, '2022_07_19_065099_create_vender_projects_table', 1), (26, '2022_08_25_110944_create_bank_accounts_table', 1), (27, '2022_08_26_050328_create_bank_transfers_table', 1), (28, '2022_08_29_071056_create_units_table', 1), (29, '2022_08_31_033838_create_customers_table', 1), (30, '2022_09_01_040217_create_venders_table', 1), (31, '2022_09_01_112521_create_revenues_table', 1), (32, '2022_09_02_052135_create_stock_reports_table', 1), (33, '2022_09_05_092207_create_transactions_table', 1), (34, '2022_09_05_115417_create_leads_table', 1), (35, '2022_09_05_125026_create_pipelines_table', 1), (36, '2022_09_06_092036_add_fields_user_tables', 1), (37, '2022_09_07_053233_create_lead_stages_table', 1), (38, '2022_09_07_083901_create_deal_stages_table', 1), (39, '2022_09_07_084035_create_deals_table', 1), (40, '2022_09_07_095211_create_user_deals_table', 1), (41, '2022_09_07_095417_create_user_leads_table', 1), (42, '2022_09_07_110631_create_labels_table', 1), (43, '2022_09_07_124424_create_bills_table', 1), (44, '2022_09_07_125134_create_payments_table', 1), (45, '2022_09_08_053530_create_lead_files_table', 1), (46, '2022_09_08_053708_create_lead_calls_table', 1), (47, '2022_09_08_053744_create_lead_emails_table', 1), (48, '2022_09_08_054005_create_lead_activity_logs_table', 1), (49, '2022_09_08_054051_create_lead_discussions_table', 1), (50, '2022_09_08_060852_create_bill_products_table', 1), (51, '2022_09_08_084653_create_client_deals_table', 1), (52, '2022_09_08_084731_create_deal_discussions_table', 1), (53, '2022_09_08_084757_create_deal_files_table', 1), (54, '2022_09_08_084858_create_deal_calls_table', 1), (55, '2022_09_08_084924_create_deal_emails_table', 1), (56, '2022_09_12_095504_create_sources_table', 1), (57, '2022_09_12_121817_create_debit_notes_table', 1), (58, '2022_09_12_122223_create_bill_payments_table', 1), (59, '2022_09_13_123608_create_deal_tasks_table', 1), (60, '2022_09_13_123624_create_client_permissions_table', 1), (61, '2022_09_14_060053_create_deal_activity_logs_table', 1), (62, '2022_10_19_052610_create_purchase_payments_table', 1), (63, '2022_11_02_070509_create_pos_table', 1), (64, '2022_11_03_105649_create_pos_products_table', 1), (65, '2022_11_03_112845_create_pos_payments_table', 1), (66, '2023_06_05_043450_create_landing_page_settings_table', 1), (67, '2023_06_10_114031_create_join_us_table', 1), (68, '2023_07_28_120345_create_marketplace_page_settings', 1), (69, '2023_09_14_084432_create_chart_of_accounts_table', 1), (70, '2023_09_14_084924_create_chart_of_account_types_table', 1), (71, '2023_09_14_091741_create_chart_of_account_sub_types_table', 1), (72, '2023_09_19_062755_create_bill_accounts', 1), (73, '2023_09_26_091528_create_lead_tasks_table', 1), (74, '2023_09_29_105800_create_bill_attechments_table', 1), (75, '2023_10_18_110722_laratrust_setup_tables', 1), (76, '2023_10_26_070645_create_settings_table', 1), (77, '2023_10_26_070942_create_user_active_modules_table', 1), (78, '2023_10_26_072353_create_work_spaces_table', 1), (79, '2023_10_26_115816_create_add_ons_table', 1), (80, '2023_10_27_035748_create_email_templates_table', 1), (81, '2023_10_27_035958_create_email_template_langs_table', 1), (82, '2023_10_27_063621_create_login_details_table', 1), (83, '2023_10_27_101918_create_currencies_table', 1), (84, '2023_10_27_123013_create_plans_table', 1), (85, '2023_10_30_053134_create_notifications_table', 1), (86, '2023_10_30_064000_create_coupons_table', 1), (87, '2023_10_30_070428_create_user_coupons_table', 1), (88, '2023_10_30_095152_create_orders_table', 1), (89, '2023_10_30_100636_create_api_key_settings_table', 1), (90, '2023_10_30_105809_create_notifications_table', 1), (91, '2023_10_30_105927_create_languages_table', 1), (92, '2023_10_30_999999_create_chatify_favorites_table', 1), (93, '2023_10_30_999999_create_chatify_messages_table', 1), (94, '2023_10_31_041456_create_bank_transfer_payments_table', 1), (95, '2023_10_31_072242_create_helpdesk_tickets_table', 1), (96, '2023_10_31_072305_create_helpdesk_ticket_categories_table', 1), (97, '2023_10_31_072333_create_helpdesk_conversions_table', 1), (98, '2023_11_02_062543_create_invoices_table', 1), (99, '2023_11_02_062628_create_invoice_products_table', 1), (100, '2023_11_02_062704_create_invoice_payments_table', 1), (101, '2023_11_02_062812_create_invoice_attechments_table', 1), (102, '2023_11_02_063132_create_proposals_table', 1), (103, '2023_11_02_063359_create_proposal_products_table', 1), (104, '2023_11_02_063522_create_proposal_attechments_table', 1), (105, '2023_11_02_071606_create_credit_notes_table', 1), (106, '2023_11_09_072722_create_transaction_lines', 1), (107, '2023_11_20_111418_create_documents_table', 1), (108, '2023_11_20_111501_create_branches_table', 1), (109, '2023_11_20_111545_create_departments_table', 1), (110, '2023_11_20_111623_create_designations_table', 1), (111, '2023_11_20_111814_create_employees_table', 1), (112, '2023_11_20_111917_create_document_types_table', 1), (113, '2023_11_20_111959_create_employee_documents_table', 1), (114, '2023_11_20_112555_create_company_policies_table', 1), (115, '2023_11_20_112635_create_leave_types_table', 1), (116, '2023_11_20_112711_create_leaves_table', 1), (117, '2023_11_20_112811_create_award_types_table', 1), (118, '2023_11_20_112848_create_awards_table', 1), (119, '2023_11_20_112925_create_transfers_table', 1), (120, '2023_11_20_113000_create_resignations_table', 1), (121, '2023_11_20_113048_create_attendance_table', 1), (122, '2023_11_20_113122_create_travels_table', 1), (123, '2023_11_20_113158_create_promotions_table', 1), (124, '2023_11_20_113235_create_complaints_table', 1), (125, '2023_11_20_113310_create_warnings_table', 1), (126, '2023_11_20_113355_create_terminations_table', 1), (127, '2023_11_20_113444_create_termination_types_table', 1), (128, '2023_11_20_113642_create_announcements_table', 1), (129, '2023_11_20_113724_create_announcement_employees_table', 1), (130, '2023_11_20_113808_create_holidays_table', 1), (131, '2023_11_20_113843_create_time_sheets_table', 1), (132, '2023_11_20_113916_create_payslip_types_table', 1), (133, '2023_11_20_113949_create_allowance_options_table', 1), (134, '2023_11_20_114025_create_loan_options_table', 1), (135, '2023_11_20_114102_create_deduction_options_table', 1), (136, '2023_11_20_114134_create_allowances_table', 1), (137, '2023_11_20_114208_create_commissions_table', 1), (138, '2023_11_20_114247_create_loans_table', 1), (139, '2023_11_20_114325_create_saturation_deductions_table', 1), (140, '2023_11_20_114402_create_other_payments_table', 1), (141, '2023_11_20_114432_create_overtimes_table', 1), (142, '2023_11_20_114504_create_pay_slips_table', 1), (143, '2023_11_20_114543_create_events_table', 1), (144, '2023_11_20_114614_create_event_employees_table', 1), (145, '2023_11_20_114658_create_joining_letters_table', 1), (146, '2023_11_20_114733_create_experience_certificates_table', 1), (147, '2023_11_20_114807_create_noc_certificates_table', 1), (148, '2023_11_20_114845_create_ip_restricts_table', 1), (149, '2023_11_21_101204_create_login_details_table', 1), (150, '2023_12_21_065145_add_follow_up_date_to_leads_table', 1), (151, '2023_12_26_120003_add_account_type_to_invoices_table', 1), (152, '2023_12_27_053912_add_account_type_to_proposals_table', 1), (153, '2023_12_27_114521_create_purchases_table', 1), (154, '2023_12_28_093848_create_purchase_debit_notes_table', 1), (155, '2023_12_28_094024_create_purchase_attachments_table', 1), (156, '2023_12_28_094303_create_purchase_products_table', 1), (157, '2023_12_28_094358_create_warehouses_table', 1), (158, '2023_12_28_094503_create_warehouse_products_table', 1), (159, '2023_12_28_114925_create_warehouse_transfers_table', 1), (160, '2024_01_01_114153_create_chart_of_account_parent_types', 1), (161, '2024_01_02_045435_add_parent_chart_of_accounts', 1), (162, '2024_01_02_063707_add_bank_branch_to_bank_accounts_table', 1), (163, '2024_01_02_063823_add_swift_to_bank_accounts_table', 1), (164, '2024_01_02_090436_add_from_type_to_bank_transfers_table', 1), (165, '2024_01_02_090455_add_to_type_to_bank_transfers_table', 1), (166, '2024_01_03_095721_add_account_type_to_bills_table', 1), (167, '2024_01_08_043923_add_payment_type_to_bank_transfer_payments_table', 1), (168, '2024_01_08_051737_add_bank_accounts_id_to_bank_transfer_payments_table', 1), (169, '2024_01_08_084957_create_customer_credit_notes_table', 1), (170, '2024_01_09_042731_add_credit_note_balance_to_customers_table', 1), (171, '2024_01_11_032228_update_bank_accounts_table', 1), (172, '2024_01_11_033435_add_bank_type_to_bank_accounts_table', 1), (173, '2024_01_11_040859_add_wallet_type_to_bank_accounts_table', 1), (174, '2024_01_12_094035_add_account_type_to_purchases_table', 1), (175, '2024_01_16_040303_create_customer_debit_notes_table', 1), (176, '2024_01_17_024814_add_debit_note_balance_to_vendors_table', 1), (177, '2024_01_18_103913_add_type_to_category_table', 1), (178, '2024_01_29_064538_change_email_to_leads_table', 1), (179, '2024_01_31_093414_add_domain_to_work_spaces_table', 1), (180, '2024_02_05_030146_create_products_log_times_table', 1), (181, '2024_02_12_034023_create_notification_template_langs_table', 1), (182, '2024_02_16_100551_add_status_to_plans_table', 1), (183, '2024_02_19_071623_add_is_refund_to_orders_table', 1), (184, '2024_02_19_103054_update_plans_package_price_monthly_migration', 1), (185, '2024_02_19_103735_update_plans_package_price_yearly_migration', 1), (186, '2024_02_19_103900_update_plans_price_per_user_monthly_migration', 1), (187, '2024_02_19_103943_update_plans_price_per_user_yearly_migration', 1), (188, '2024_02_19_104028_update_plans_price_per_workspace_monthly_migration', 1), (189, '2024_02_19_104110_update_plans_price_per_workspace_yearly_migration', 1), (190, '2024_02_23_095542_add_account_type_to_employees_table', 1), (191, '2024_02_26_064257_add_warehouse_id_to_product_services_table', 1), (192, '2024_02_26_084938_create_pixels_table', 1), (193, '2024_02_26_084939_terms_and_policy_table', 1), (194, '2024_02_26_092307_add_invoice_template_to_invoices_table', 1), (195, '2024_02_26_113529_add_proposal_template_to_proposals_table', 1), (196, '2024_02_29_055733_update_amount_type_for_allowances_table', 1), (197, '2024_02_29_105058_add_day_type_to_invoices_table', 1), (198, '2024_03_26_091630_create_custom_domain_requests.table', 1), (199, '2024_03_27_063307_add_columns_to_invoice_products_table', 1), (200, '2024_03_27_120330_drop_column_from_table', 1), (201, '2024_04_01_092909_add_passport_country_to_employees_table', 1), (202, '2024_04_02_060829_add_dates_to_commissions_table', 1), (203, '2024_04_02_060906_add_dates_to_overtimes_table', 1), (204, '2024_04_02_114951_create_tax_brackets_table', 1), (205, '2024_04_02_115000_create_tax_rebates_table', 1), (206, '2024_04_02_115008_create_tax_thresholds_table', 1), (207, '2024_04_03_031954_create_allowance_taxs_table', 1), (208, '2024_04_03_064759_add_company_contribution_to_pay_slips_table', 1), (209, '2024_04_05_034309_create_company_contributions_table', 1), (210, '2024_05_06_044524_create_referral_transactions_table', 1), (211, '2024_05_06_044548_create_referral_settings_table', 1), (212, '2024_05_06_044559_create_transaction_orders_table', 1), (213, '2024_05_06_045522_add_type_to_coupons_table', 1), (214, '2024_05_06_090743_add_referral_code_to_users_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `milestones` -- CREATE TABLE `milestones` ( `id` bigint(20) UNSIGNED NOT NULL, `project_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `cost` double(8,2) NOT NULL, `summary` text NOT NULL, `progress` varchar(255) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `noc_certificates` -- CREATE TABLE `noc_certificates` ( `id` bigint(20) UNSIGNED NOT NULL, `lang` varchar(255) NOT NULL, `content` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `noc_certificates` -- INSERT INTO `noc_certificates` (`id`, `lang`, `content`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'ar', '<h3 style=\"text-align: center;\">شهادة عدم ممانعة</h3>\n\n\n\n <p>التاريخ: {date}</p>\n\n\n\n <p>إلى من يهمه الأمر</p>\n\n\n\n <p>هذه الشهادة مخصصة للمطالبة بشهادة عدم ممانعة (NoC) للسيدة / السيد {employee_name} إذا انضمت إلى أي مؤسسة أخرى وقدمت خدماتها / خدماتها. يتم إبلاغه لأنه قام بتصفية جميع أرصدته واستلام أمانه من شركة {app_name}.</p>\n\n\n\n <p>نتمنى لها / لها التوفيق في المستقبل.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (2, 'da', '<h3 style=\"text-align: center;\">Ingen indsigelsesattest</h3>\n\n\n\n <p>Dato: {date}</p>\n\n\n\n <p>Til hvem det måtte vedrøre</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Vi ønsker hende/ham held og lykke i fremtiden.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (3, 'de', '<h3 style=\"text-align: center;\">Kein Einwand-Zertifikat</h3>\n\n\n\n <p>Datum {date}</p>\n\n\n\n <p>Wen auch immer es betrifft</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Wir wünschen ihr/ihm viel Glück für die Zukunft.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (4, 'en', '<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>No Objection Certificate</strong></span></p>\n\n <p>Date: {date}</p>\n\n <p>To Whomsoever It May Concern</p>\n\n <p>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.</p>\n\n <p>We wish her/him good luck in the future.</p>\n\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (5, 'es', '<h3 style=\"text-align: center;\">Certificado de conformidad</h3>\n\n\n\n <p>Fecha: {date}</p>\n\n\n\n <p>A quien corresponda</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Le deseamos buena suerte en el futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (6, 'fr', '<h3 style=\"text-align: center;\">Aucun certificat dopposition</h3>\n\n\n <p>Date : {date}</p>\n\n\n <p>À toute personne concernée</p>\n\n\n <p>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}.</p>\n\n\n <p>Nous lui souhaitons bonne chance pour lavenir.</p>\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (7, 'id', '<h3 style=\"text-align: center;\">Sertifikat Tidak Keberatan</h3>\n\n\n\n <p>Tanggal: {date}</p>\n\n\n\n <p>Kepada Siapa Pun Yang Memprihatinkan</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Kami berharap dia sukses di masa depan.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (8, 'it', '<h3 style=\"text-align: center;\">Certificato di nulla osta</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A chi può interessare</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Le auguriamo buona fortuna per il futuro.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (9, 'ja', '<h3 style=\"text-align: center;\">異議なし証明書</h3>\n\n\n\n <p>日付: {date}</p>\n\n\n\n <p>関係者各位</p>\n\n\n\n <p>この証明書は、Ms. / Mr. {employee_name} が他の組織に参加してサービスを提供する場合に、異議なし証明書 (NoC) を請求するためのものです。彼女/彼/彼がすべての残高を清算し、{app_name} 会社から彼女/彼のセキュリティを受け取ったことが通知されます。</p>\n\n\n\n <p>彼女/彼の今後の幸運を祈っています。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (10, 'nl', '<h3 style=\"text-align: center;\">Geen bezwaarcertificaat</h3>\n\n\n\n <p>Datum: {date}</p>\n\n\n\n <p>Aan wie het ook aangaat</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>We wensen haar/hem veel succes in de toekomst.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (11, 'pl', '<h3 style=\"text-align: center;\">Certyfikat braku sprzeciwu</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>Do kogo to może dotyczyć</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Życzymy jej/jej powodzenia w przyszłości.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (12, 'pt', '<h3 style=\"text-align: center;\">Certificado de não objeção</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A quem interessar</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Desejamos-lhe boa sorte no futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (13, 'ru', '<h3 style=\"text-align: center;\">Сертификат об отсутствии возражений</h3>\n\n\n\n <p>Дата: {date}</p>\n\n\n\n <p>Кого бы это ни касалось</p>\n\n\n\n <p>Этот сертификат предназначен для получения Сертификата об отсутствии возражений (NoC) для г-жи / г-на {employee_name}, если она / он присоединяется и предоставляет свои услуги любой другой организации. Сообщается, что она/он очистила все свои балансы и получила свою безопасность от компании {app_name}.</p>\n\n\n\n <p>Мы желаем ей/ему удачи в будущем.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 1, 2, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (14, 'ar', '<h3 style=\"text-align: center;\">شهادة عدم ممانعة</h3>\n\n\n\n <p>التاريخ: {date}</p>\n\n\n\n <p>إلى من يهمه الأمر</p>\n\n\n\n <p>هذه الشهادة مخصصة للمطالبة بشهادة عدم ممانعة (NoC) للسيدة / السيد {employee_name} إذا انضمت إلى أي مؤسسة أخرى وقدمت خدماتها / خدماتها. يتم إبلاغه لأنه قام بتصفية جميع أرصدته واستلام أمانه من شركة {app_name}.</p>\n\n\n\n <p>نتمنى لها / لها التوفيق في المستقبل.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (15, 'da', '<h3 style=\"text-align: center;\">Ingen indsigelsesattest</h3>\n\n\n\n <p>Dato: {date}</p>\n\n\n\n <p>Til hvem det måtte vedrøre</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Vi ønsker hende/ham held og lykke i fremtiden.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (16, 'de', '<h3 style=\"text-align: center;\">Kein Einwand-Zertifikat</h3>\n\n\n\n <p>Datum {date}</p>\n\n\n\n <p>Wen auch immer es betrifft</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Wir wünschen ihr/ihm viel Glück für die Zukunft.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (17, 'en', '<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>No Objection Certificate</strong></span></p>\n\n <p>Date: {date}</p>\n\n <p>To Whomsoever It May Concern</p>\n\n <p>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.</p>\n\n <p>We wish her/him good luck in the future.</p>\n\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (18, 'es', '<h3 style=\"text-align: center;\">Certificado de conformidad</h3>\n\n\n\n <p>Fecha: {date}</p>\n\n\n\n <p>A quien corresponda</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Le deseamos buena suerte en el futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (19, 'fr', '<h3 style=\"text-align: center;\">Aucun certificat dopposition</h3>\n\n\n <p>Date : {date}</p>\n\n\n <p>À toute personne concernée</p>\n\n\n <p>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}.</p>\n\n\n <p>Nous lui souhaitons bonne chance pour lavenir.</p>\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (20, 'id', '<h3 style=\"text-align: center;\">Sertifikat Tidak Keberatan</h3>\n\n\n\n <p>Tanggal: {date}</p>\n\n\n\n <p>Kepada Siapa Pun Yang Memprihatinkan</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Kami berharap dia sukses di masa depan.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (21, 'it', '<h3 style=\"text-align: center;\">Certificato di nulla osta</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A chi può interessare</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Le auguriamo buona fortuna per il futuro.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (22, 'ja', '<h3 style=\"text-align: center;\">異議なし証明書</h3>\n\n\n\n <p>日付: {date}</p>\n\n\n\n <p>関係者各位</p>\n\n\n\n <p>この証明書は、Ms. / Mr. {employee_name} が他の組織に参加してサービスを提供する場合に、異議なし証明書 (NoC) を請求するためのものです。彼女/彼/彼がすべての残高を清算し、{app_name} 会社から彼女/彼のセキュリティを受け取ったことが通知されます。</p>\n\n\n\n <p>彼女/彼の今後の幸運を祈っています。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (23, 'nl', '<h3 style=\"text-align: center;\">Geen bezwaarcertificaat</h3>\n\n\n\n <p>Datum: {date}</p>\n\n\n\n <p>Aan wie het ook aangaat</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>We wensen haar/hem veel succes in de toekomst.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (24, 'pl', '<h3 style=\"text-align: center;\">Certyfikat braku sprzeciwu</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>Do kogo to może dotyczyć</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Życzymy jej/jej powodzenia w przyszłości.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (25, 'pt', '<h3 style=\"text-align: center;\">Certificado de não objeção</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A quem interessar</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Desejamos-lhe boa sorte no futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (26, 'ru', '<h3 style=\"text-align: center;\">Сертификат об отсутствии возражений</h3>\n\n\n\n <p>Дата: {date}</p>\n\n\n\n <p>Кого бы это ни касалось</p>\n\n\n\n <p>Этот сертификат предназначен для получения Сертификата об отсутствии возражений (NoC) для г-жи / г-на {employee_name}, если она / он присоединяется и предоставляет свои услуги любой другой организации. Сообщается, что она/он очистила все свои балансы и получила свою безопасность от компании {app_name}.</p>\n\n\n\n <p>Мы желаем ей/ему удачи в будущем.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 2, 6, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (27, 'ar', '<h3 style=\"text-align: center;\">شهادة عدم ممانعة</h3>\n\n\n\n <p>التاريخ: {date}</p>\n\n\n\n <p>إلى من يهمه الأمر</p>\n\n\n\n <p>هذه الشهادة مخصصة للمطالبة بشهادة عدم ممانعة (NoC) للسيدة / السيد {employee_name} إذا انضمت إلى أي مؤسسة أخرى وقدمت خدماتها / خدماتها. يتم إبلاغه لأنه قام بتصفية جميع أرصدته واستلام أمانه من شركة {app_name}.</p>\n\n\n\n <p>نتمنى لها / لها التوفيق في المستقبل.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (28, 'da', '<h3 style=\"text-align: center;\">Ingen indsigelsesattest</h3>\n\n\n\n <p>Dato: {date}</p>\n\n\n\n <p>Til hvem det måtte vedrøre</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Vi ønsker hende/ham held og lykke i fremtiden.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (29, 'de', '<h3 style=\"text-align: center;\">Kein Einwand-Zertifikat</h3>\n\n\n\n <p>Datum {date}</p>\n\n\n\n <p>Wen auch immer es betrifft</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Wir wünschen ihr/ihm viel Glück für die Zukunft.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (30, 'en', '<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>No Objection Certificate</strong></span></p>\n\n <p>Date: {date}</p>\n\n <p>To Whomsoever It May Concern</p>\n\n <p>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.</p>\n\n <p>We wish her/him good luck in the future.</p>\n\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (31, 'es', '<h3 style=\"text-align: center;\">Certificado de conformidad</h3>\n\n\n\n <p>Fecha: {date}</p>\n\n\n\n <p>A quien corresponda</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Le deseamos buena suerte en el futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (32, 'fr', '<h3 style=\"text-align: center;\">Aucun certificat dopposition</h3>\n\n\n <p>Date : {date}</p>\n\n\n <p>À toute personne concernée</p>\n\n\n <p>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}.</p>\n\n\n <p>Nous lui souhaitons bonne chance pour lavenir.</p>\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (33, 'id', '<h3 style=\"text-align: center;\">Sertifikat Tidak Keberatan</h3>\n\n\n\n <p>Tanggal: {date}</p>\n\n\n\n <p>Kepada Siapa Pun Yang Memprihatinkan</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Kami berharap dia sukses di masa depan.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (34, 'it', '<h3 style=\"text-align: center;\">Certificato di nulla osta</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A chi può interessare</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Le auguriamo buona fortuna per il futuro.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (35, 'ja', '<h3 style=\"text-align: center;\">異議なし証明書</h3>\n\n\n\n <p>日付: {date}</p>\n\n\n\n <p>関係者各位</p>\n\n\n\n <p>この証明書は、Ms. / Mr. {employee_name} が他の組織に参加してサービスを提供する場合に、異議なし証明書 (NoC) を請求するためのものです。彼女/彼/彼がすべての残高を清算し、{app_name} 会社から彼女/彼のセキュリティを受け取ったことが通知されます。</p>\n\n\n\n <p>彼女/彼の今後の幸運を祈っています。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (36, 'nl', '<h3 style=\"text-align: center;\">Geen bezwaarcertificaat</h3>\n\n\n\n <p>Datum: {date}</p>\n\n\n\n <p>Aan wie het ook aangaat</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>We wensen haar/hem veel succes in de toekomst.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (37, 'pl', '<h3 style=\"text-align: center;\">Certyfikat braku sprzeciwu</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>Do kogo to może dotyczyć</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Życzymy jej/jej powodzenia w przyszłości.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (38, 'pt', '<h3 style=\"text-align: center;\">Certificado de não objeção</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A quem interessar</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Desejamos-lhe boa sorte no futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (39, 'ru', '<h3 style=\"text-align: center;\">Сертификат об отсутствии возражений</h3>\n\n\n\n <p>Дата: {date}</p>\n\n\n\n <p>Кого бы это ни касалось</p>\n\n\n\n <p>Этот сертификат предназначен для получения Сертификата об отсутствии возражений (NoC) для г-жи / г-на {employee_name}, если она / он присоединяется и предоставляет свои услуги любой другой организации. Сообщается, что она/он очистила все свои балансы и получила свою безопасность от компании {app_name}.</p>\n\n\n\n <p>Мы желаем ей/ему удачи в будущем.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 3, 12, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (40, 'ar', '<h3 style=\"text-align: center;\">شهادة عدم ممانعة</h3>\n\n\n\n <p>التاريخ: {date}</p>\n\n\n\n <p>إلى من يهمه الأمر</p>\n\n\n\n <p>هذه الشهادة مخصصة للمطالبة بشهادة عدم ممانعة (NoC) للسيدة / السيد {employee_name} إذا انضمت إلى أي مؤسسة أخرى وقدمت خدماتها / خدماتها. يتم إبلاغه لأنه قام بتصفية جميع أرصدته واستلام أمانه من شركة {app_name}.</p>\n\n\n\n <p>نتمنى لها / لها التوفيق في المستقبل.</p>\n\n\n\n <p>بإخلاص،</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>التوقيع</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (41, 'da', '<h3 style=\"text-align: center;\">Ingen indsigelsesattest</h3>\n\n\n\n <p>Dato: {date}</p>\n\n\n\n <p>Til hvem det måtte vedrøre</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Vi ønsker hende/ham held og lykke i fremtiden.</p>\n\n\n\n <p>Med venlig hilsen</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Underskrift</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (42, 'de', '<h3 style=\"text-align: center;\">Kein Einwand-Zertifikat</h3>\n\n\n\n <p>Datum {date}</p>\n\n\n\n <p>Wen auch immer es betrifft</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Wir wünschen ihr/ihm viel Glück für die Zukunft.</p>\n\n\n\n <p>Aufrichtig,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Unterschrift</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (43, 'en', '<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>No Objection Certificate</strong></span></p>\n\n <p>Date: {date}</p>\n\n <p>To Whomsoever It May Concern</p>\n\n <p>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.</p>\n\n <p>We wish her/him good luck in the future.</p>\n\n <p>Sincerely,</p>\n <p>{employee_name}</p>\n <p>{designation}</p>\n <p>Signature</p>\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (44, 'es', '<h3 style=\"text-align: center;\">Certificado de conformidad</h3>\n\n\n\n <p>Fecha: {date}</p>\n\n\n\n <p>A quien corresponda</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>Le deseamos buena suerte en el futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (45, 'fr', '<h3 style=\"text-align: center;\">Aucun certificat dopposition</h3>\n\n\n <p>Date : {date}</p>\n\n\n <p>À toute personne concernée</p>\n\n\n <p>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}.</p>\n\n\n <p>Nous lui souhaitons bonne chance pour lavenir.</p>\n\n\n <p>Sincèrement,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Signature</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (46, 'id', '<h3 style=\"text-align: center;\">Sertifikat Tidak Keberatan</h3>\n\n\n\n <p>Tanggal: {date}</p>\n\n\n\n <p>Kepada Siapa Pun Yang Memprihatinkan</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Kami berharap dia sukses di masa depan.</p>\n\n\n\n <p>Sungguh-sungguh,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Tanda tangan</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (47, 'it', '<h3 style=\"text-align: center;\">Certificato di nulla osta</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A chi può interessare</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Le auguriamo buona fortuna per il futuro.</p>\n\n\n\n <p>Cordiali saluti,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Firma</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (48, 'ja', '<h3 style=\"text-align: center;\">異議なし証明書</h3>\n\n\n\n <p>日付: {date}</p>\n\n\n\n <p>関係者各位</p>\n\n\n\n <p>この証明書は、Ms. / Mr. {employee_name} が他の組織に参加してサービスを提供する場合に、異議なし証明書 (NoC) を請求するためのものです。彼女/彼/彼がすべての残高を清算し、{app_name} 会社から彼女/彼のセキュリティを受け取ったことが通知されます。</p>\n\n\n\n <p>彼女/彼の今後の幸運を祈っています。</p>\n\n\n\n <p>心から、</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>サイン</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (49, 'nl', '<h3 style=\"text-align: center;\">Geen bezwaarcertificaat</h3>\n\n\n\n <p>Datum: {date}</p>\n\n\n\n <p>Aan wie het ook aangaat</p>\n\n\n\n <p>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.</p>\n\n\n\n <p>We wensen haar/hem veel succes in de toekomst.</p>\n\n\n\n <p>Eerlijk,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Handtekening</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (50, 'pl', '<h3 style=\"text-align: center;\">Certyfikat braku sprzeciwu</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>Do kogo to może dotyczyć</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Życzymy jej/jej powodzenia w przyszłości.</p>\n\n\n\n <p>Z poważaniem,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Podpis</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (51, 'pt', '<h3 style=\"text-align: center;\">Certificado de não objeção</h3>\n\n\n\n <p>Data: {date}</p>\n\n\n\n <p>A quem interessar</p>\n\n\n\n <p>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}.</p>\n\n\n\n <p>Desejamos-lhe boa sorte no futuro.</p>\n\n\n\n <p>Sinceramente,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Assinatura</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (52, 'ru', '<h3 style=\"text-align: center;\">Сертификат об отсутствии возражений</h3>\n\n\n\n <p>Дата: {date}</p>\n\n\n\n <p>Кого бы это ни касалось</p>\n\n\n\n <p>Этот сертификат предназначен для получения Сертификата об отсутствии возражений (NoC) для г-жи / г-на {employee_name}, если она / он присоединяется и предоставляет свои услуги любой другой организации. Сообщается, что она/он очистила все свои балансы и получила свою безопасность от компании {app_name}.</p>\n\n\n\n <p>Мы желаем ей/ему удачи в будущем.</p>\n\n\n\n <p>Искренне,</p>\n\n <p>{employee_name}</p>\n\n <p>{designation}</p>\n\n <p>Подпись</p>\n\n <p>{app_name}</p>', 4, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `module` varchar(255) DEFAULT NULL, `type` varchar(188) DEFAULT NULL, `action` varchar(255) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `permissions` varchar(255) DEFAULT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notifications` -- INSERT INTO `notifications` (`id`, `module`, `type`, `action`, `status`, `permissions`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'general', 'mail', 'Create User', 'on', 'user manage', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 'general', 'mail', 'Customer Invoice Send', 'on', 'invoice send', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (3, 'general', 'mail', 'Payment Reminder', 'on', 'invoice manage', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (4, 'general', 'mail', 'Invoice Payment Create', 'on', 'invoice payment create', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (5, 'general', 'mail', 'Proposal Status Updated', 'on', 'proposal send', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (6, 'general', 'mail', 'New Helpdesk Ticket', 'on', 'helpdesk manage', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (7, 'general', 'mail', 'New Helpdesk Ticket Reply', 'on', 'helpdesk manage', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (8, 'general', 'mail', 'Purchase Send', 'on', 'purchase send', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (9, 'general', 'mail', 'Purchase Payment Create', 'on', 'purchase payment create', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (10, 'Account', 'mail', 'Bill Send', 'on', 'bill send', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (11, 'Account', 'mail', 'Bill Payment Create', 'on', 'bill payment create', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (12, 'Account', 'mail', 'Revenue Payment Create', 'on', 'revenue create', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (13, 'Hrm', 'mail', 'Leave Status', 'on', 'leave approver manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (14, 'Hrm', 'mail', 'New Award', 'on', 'award manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (15, 'Hrm', 'mail', 'Employee Complaints', 'on', 'complaint manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (16, 'Hrm', 'mail', 'New Payroll', 'on', 'setsalary pay slip manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (17, 'Hrm', 'mail', 'Employee Promotion', 'on', 'promotion manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (18, 'Hrm', 'mail', 'Employee Resignation', 'on', 'resignation manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (19, 'Hrm', 'mail', 'Employee Termination', 'on', 'termination manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (20, 'Hrm', 'mail', 'Employee Transfer', 'on', 'transfer manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (21, 'Hrm', 'mail', 'Employee Trip', 'on', 'travel manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (22, 'Hrm', 'mail', 'Employee Warning', 'on', 'warning manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (23, 'Hrm', 'mail', 'Employee Leave Received', 'on', 'leave manage', 0, '2024-08-11 08:23:03', '2024-08-11 08:23:03'), (24, 'Lead', 'mail', 'Deal Assigned', 'on', 'deal manage', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (25, 'Lead', 'mail', 'Deal Moved', 'on', 'deal move', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (26, 'Lead', 'mail', 'New Task', 'on', 'deal task create', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (27, 'Lead', 'mail', 'Lead Assigned', 'on', 'lead manage', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (28, 'Lead', 'mail', 'Lead Moved', 'on', 'lead move', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (29, 'Lead', 'mail', 'Lead Emails', 'on', 'lead email create', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (30, 'Lead', 'mail', 'Deal Emails', 'on', 'deal email create', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'); -- -------------------------------------------------------- -- -- Table structure for table `notification_template_langs` -- CREATE TABLE `notification_template_langs` ( `id` bigint(20) UNSIGNED NOT NULL, `parent_id` int(11) NOT NULL DEFAULT 0, `lang` varchar(255) DEFAULT NULL, `module` varchar(255) DEFAULT NULL, `content` text DEFAULT NULL, `variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`variables`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `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(8,2) NOT NULL, `price_currency` varchar(10) NOT NULL, `txn_id` varchar(100) NOT NULL, `payment_status` varchar(100) NOT NULL, `payment_type` varchar(100) NOT NULL, `receipt` varchar(255) DEFAULT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `is_refund` int(11) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`id`, `order_id`, `name`, `email`, `card_number`, `card_exp_month`, `card_exp_year`, `plan_name`, `plan_id`, `price`, `price_currency`, `txn_id`, `payment_status`, `payment_type`, `receipt`, `user_id`, `is_refund`, `created_at`, `updated_at`) VALUES (1, '67FB80FD42EF4263940322', 'Integrated Curriculum System', 'admin@example.com', NULL, NULL, NULL, 'Premium', 3, 6000.00, 'USD', '', 'succeeded', 'MANUAL', NULL, 6, 0, '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (2, '6884FE068D8F0211217701', 'ICS- Integrated Curriculum Systems', 'admin@ics.com', NULL, NULL, NULL, 'Premium', 3, 6000.00, 'USD', '', 'succeeded', 'MANUAL', NULL, 12, 0, '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (3, '6884FEEB39486193279637', 'ICS', 'company@example.com', NULL, NULL, NULL, 'Premium', 3, 6000.00, 'USD', '', 'succeeded', 'MANUAL', NULL, 2, 0, '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (4, '6884FEEB47BDA492753852', 'ICS', 'company@example.com', NULL, NULL, NULL, 'Premium', 3, 6000.00, 'USD', '', 'succeeded', 'MANUAL', NULL, 2, 0, '2025-07-26 16:14:35', '2025-07-26 16:14:35'); -- -------------------------------------------------------- -- -- Table structure for table `other_payments` -- CREATE TABLE `other_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `overtimes` -- CREATE TABLE `overtimes` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `number_of_days` int(11) NOT NULL, `hours` int(11) NOT NULL, `rate` int(11) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_reset_tokens` -- CREATE TABLE `password_reset_tokens` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payments` -- CREATE TABLE `payments` ( `id` bigint(20) UNSIGNED NOT NULL, `date` date NOT NULL, `amount` double(15,2) NOT NULL DEFAULT 0.00, `account_id` int(11) NOT NULL, `vendor_id` int(11) NOT NULL, `description` longtext NOT NULL, `category_id` int(11) NOT NULL, `recurring` varchar(255) DEFAULT NULL, `payment_method` int(11) NOT NULL, `reference` varchar(255) NOT NULL, `add_receipt` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payslip_types` -- CREATE TABLE `payslip_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `pay_slips` -- CREATE TABLE `pay_slips` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `net_payble` int(11) NOT NULL, `salary_month` varchar(255) NOT NULL, `status` int(11) NOT NULL, `basic_salary` int(11) 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, `company_contribution` text DEFAULT NULL, `tax_bracket` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- CREATE TABLE `permissions` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `display_name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `guard_name` varchar(255) NOT NULL DEFAULT 'web', `module` varchar(255) NOT NULL DEFAULT 'Base', `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `permissions` -- INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `guard_name`, `module`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'user manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 'user create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (3, 'user edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (4, 'user delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (5, 'user profile manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (6, 'user reset password', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (7, 'user login manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (8, 'user import', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (9, 'user logs history', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (10, 'setting manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (11, 'setting storage manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (12, 'coupon manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (13, 'coupon create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (14, 'coupon edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (15, 'coupon delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (16, 'plan manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (17, 'plan create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (18, 'plan edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (19, 'plan delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (20, 'plan orders', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (21, 'module manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (22, 'module add', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (23, 'module remove', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (24, 'module edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (25, 'email template manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (26, 'language manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (27, 'language create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (28, 'language delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (29, 'helpdesk manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (30, 'helpdesk ticket manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (31, 'helpdesk ticket create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (32, 'helpdesk ticket edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (33, 'helpdesk ticket show', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (34, 'helpdesk ticket reply', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (35, 'helpdesk ticket delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (36, 'helpdeskticket setup manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (37, 'helpdesk ticketcategory manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (38, 'helpdesk ticketcategory create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (39, 'helpdesk ticketcategory edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (40, 'helpdesk ticketcategory delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (41, 'api key setting manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (42, 'api key setting create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (43, 'api key setting edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (44, 'api key setting delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (45, 'notification template manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (46, 'referral program manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (47, 'user chat manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (48, 'workspace manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (49, 'workspace create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (50, 'workspace edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (51, 'workspace delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (52, 'roles manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (53, 'roles create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (54, 'roles edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (55, 'roles delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (56, 'plan purchase', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (57, 'plan subscribe', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (58, 'proposal manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (59, 'proposal create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (60, 'proposal edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (61, 'proposal delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (62, 'proposal show', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (63, 'proposal send', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (64, 'proposal duplicate', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (65, 'proposal product delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (66, 'proposal convert invoice', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (67, 'invoice manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (68, 'invoice create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (69, 'invoice edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (70, 'invoice delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (71, 'invoice show', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (72, 'invoice send', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (73, 'invoice duplicate', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (74, 'invoice product delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (75, 'invoice payment create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (76, 'invoice payment delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (77, 'purchase manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (78, 'purchase create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (79, 'purchase edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (80, 'purchase delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (81, 'purchase show', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (82, 'purchase send', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (83, 'purchase payment create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (84, 'purchase payment delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (85, 'purchase product delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (86, 'purchase debitnote create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (87, 'purchase debitnote edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (88, 'purchase debitnote delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (89, 'report warehouse', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (90, 'report purchase', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (91, 'warehouse manage', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (92, 'warehouse create', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (93, 'warehouse edit', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (94, 'warehouse delete', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (95, 'warehouse show', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (96, 'warehouse import', NULL, NULL, 'web', 'General', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (97, 'landingpage manage', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (98, 'landingpage create', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (99, 'landingpage edit', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (100, 'landingpage store', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (101, 'landingpage update', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (102, 'landingpage delete', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (103, 'marketplace manage', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (104, 'marketplace create', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (105, 'marketplace edit', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (106, 'marketplace store', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (107, 'marketplace update', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (108, 'marketplace delete', NULL, NULL, 'web', 'LandingPage', 0, '2024-08-11 08:22:55', '2024-08-11 08:22:55'), (109, 'account dashboard manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (110, 'bank account manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (111, 'bank account create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (112, 'bank account edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (113, 'bank account delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (114, 'bank transfer manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (115, 'bank transfer create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (116, 'bank transfer edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (117, 'bank transfer delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (118, 'account manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (119, 'customer manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (120, 'customer create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (121, 'customer edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (122, 'customer delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (123, 'customer show', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:56', '2024-08-11 08:22:56'), (124, 'customer import', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (125, 'vendor manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (126, 'vendor create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (127, 'vendor edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (128, 'vendor delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (129, 'vendor show', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (130, 'vendor import', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (131, 'creditnote manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (132, 'creditnote create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (133, 'creditnote edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (134, 'creditnote delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (135, 'revenue manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (136, 'revenue create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (137, 'revenue edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (138, 'revenue delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (139, 'report manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (140, 'bill manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (141, 'bill create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (142, 'bill edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (143, 'bill delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (144, 'bill payment manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (145, 'bill payment create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (146, 'bill payment edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (147, 'bill payment delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (148, 'bill show', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (149, 'bill duplicate', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (150, 'bill product delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (151, 'bill send', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (152, 'debitnote manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (153, 'debitnote create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (154, 'debitnote edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (155, 'debitnote delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (156, 'expense payment manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (157, 'expense payment create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (158, 'expense payment edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (159, 'expense payment delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (160, 'report transaction manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (161, 'report statement manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (162, 'report income manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (163, 'report expense manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (164, 'report income vs expense manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (165, 'report tax manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (166, 'report loss & profit manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (167, 'report invoice manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (168, 'report bill manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (169, 'report stock manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (170, 'sidebar income manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (171, 'sidebar expanse manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (172, 'sidebar banking manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (173, 'chartofaccount manage', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (174, 'chartofaccount create', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (175, 'chartofaccount edit', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (176, 'chartofaccount show', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (177, 'chartofaccount delete', NULL, NULL, 'web', 'Account', 0, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (178, 'hrm manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (179, 'hrm dashboard manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (180, 'sidebar hrm report manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (181, 'document manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (182, 'document create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (183, 'document edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (184, 'document delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (185, 'attendance manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (186, 'attendance create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (187, 'attendance edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (188, 'attendance delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (189, 'attendance import', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (190, 'branch manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (191, 'branch create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:58', '2024-08-11 08:22:58'), (192, 'branch edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (193, 'branch delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (194, 'department manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (195, 'department create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (196, 'department edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (197, 'department delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (198, 'designation manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (199, 'designation create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (200, 'designation edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (201, 'designation delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (202, 'employee manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (203, 'employee create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (204, 'employee edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (205, 'employee delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (206, 'employee show', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (207, 'employee profile manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (208, 'employee profile show', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (209, 'employee import', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (210, 'documenttype manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (211, 'documenttype create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (212, 'documenttype edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (213, 'documenttype delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (214, 'companypolicy manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (215, 'companypolicy create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (216, 'companypolicy edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (217, 'companypolicy delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (218, 'leave manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (219, 'leave create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (220, 'leave edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (221, 'leave delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (222, 'leave approver manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (223, 'leavetype manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (224, 'leavetype create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (225, 'leavetype edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (226, 'leavetype delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (227, 'award manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (228, 'award create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (229, 'award edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (230, 'award delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (231, 'awardtype manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (232, 'awardtype create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (233, 'awardtype edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (234, 'awardtype delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (235, 'transfer manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (236, 'transfer create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (237, 'transfer edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (238, 'transfer delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (239, 'resignation manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (240, 'resignation create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (241, 'resignation edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (242, 'resignation delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (243, 'travel manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (244, 'travel create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (245, 'travel edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (246, 'travel delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (247, 'promotion manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (248, 'promotion create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (249, 'promotion edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (250, 'promotion delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (251, 'complaint manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (252, 'complaint create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (253, 'complaint edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (254, 'complaint delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (255, 'warning manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (256, 'warning create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (257, 'warning edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (258, 'warning delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (259, 'termination manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (260, 'termination create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (261, 'termination edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (262, 'termination delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (263, 'termination description', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:22:59', '2024-08-11 08:22:59'), (264, 'terminationtype manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (265, 'terminationtype create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (266, 'terminationtype edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (267, 'terminationtype delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (268, 'announcement manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (269, 'announcement create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (270, 'announcement edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (271, 'announcement delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (272, 'holiday manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (273, 'holiday create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (274, 'holiday edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (275, 'holiday delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (276, 'holiday import', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (277, 'attendance report manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (278, 'leave report manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (279, 'payroll report manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (280, 'paysliptype manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (281, 'paysliptype create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (282, 'paysliptype edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (283, 'paysliptype delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (284, 'allowanceoption manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (285, 'allowanceoption create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (286, 'allowanceoption edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (287, 'allowanceoption delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (288, 'loanoption manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (289, 'loanoption create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (290, 'loanoption edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (291, 'loanoption delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (292, 'deductionoption manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (293, 'deductionoption create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (294, 'deductionoption edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (295, 'deductionoption delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (296, 'setsalary manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (297, 'setsalary pay slip manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (298, 'setsalary create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (299, 'setsalary edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (300, 'setsalary show', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (301, 'allowance manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (302, 'allowance create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (303, 'allowance edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (304, 'allowance delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (305, 'commission manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (306, 'commission create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (307, 'commission edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (308, 'commission delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (309, 'loan manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (310, 'loan create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (311, 'loan edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (312, 'loan delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (313, 'saturation deduction manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (314, 'saturation deduction create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (315, 'saturation deduction edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (316, 'saturation deduction delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (317, 'other payment manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (318, 'other payment create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (319, 'other payment edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (320, 'other payment delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (321, 'overtime manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (322, 'overtime create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (323, 'overtime edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (324, 'overtime delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (325, 'company contribution manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (326, 'company contribution create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:00', '2024-08-11 08:23:00'), (327, 'company contribution edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (328, 'company contribution delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (329, 'branch name edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (330, 'department name edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (331, 'designation name edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (332, 'event manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (333, 'event create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (334, 'event edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (335, 'event delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (336, 'sidebar payroll manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (337, 'sidebar hr admin manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (338, 'letter joining manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (339, 'letter certificate manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (340, 'letter noc manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (341, 'ip restrict manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (342, 'ip restrict create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (343, 'ip restrict edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (344, 'ip restrict delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (345, 'bulk attendance manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (346, 'tax bracket manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (347, 'tax bracket create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (348, 'tax bracket edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (349, 'tax bracket delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (350, 'tax rebate manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (351, 'tax rebate create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (352, 'tax rebate edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (353, 'tax rebate delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (354, 'tax threshold manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (355, 'tax threshold create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (356, 'tax threshold edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (357, 'tax threshold delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (358, 'allowance tax manage', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (359, 'allowance tax create', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (360, 'allowance tax edit', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (361, 'allowance tax delete', NULL, NULL, 'web', 'Hrm', 0, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (362, 'crm manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:04', '2024-08-11 08:23:04'), (363, 'crm dashboard manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:04', '2024-08-11 08:23:04'), (364, 'crm setup manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:04', '2024-08-11 08:23:04'), (365, 'crm report manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (366, 'lead manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (367, 'lead create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (368, 'lead edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (369, 'lead delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (370, 'lead show', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (371, 'lead move', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (372, 'lead import', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (373, 'lead call create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (374, 'lead call edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (375, 'lead call delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (376, 'lead email create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (377, 'lead to deal convert', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (378, 'lead report', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (379, 'deal report', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (380, 'deal manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (381, 'deal create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (382, 'deal edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (383, 'deal delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (384, 'deal show', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (385, 'deal move', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (386, 'deal import', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (387, 'deal task create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (388, 'deal task edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (389, 'deal task delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (390, 'deal task show', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (391, 'deal call create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (392, 'deal call edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (393, 'deal call delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (394, 'deal email create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (395, 'pipeline manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (396, 'pipeline create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (397, 'pipeline edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (398, 'pipeline delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (399, 'dealstages manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (400, 'dealstages create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (401, 'dealstages edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (402, 'dealstages delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (403, 'leadstages manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (404, 'leadstages create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (405, 'leadstages edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (406, 'leadstages delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (407, 'labels manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (408, 'labels create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:05', '2024-08-11 08:23:05'), (409, 'labels edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (410, 'labels delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (411, 'source manage', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (412, 'source create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (413, 'source edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (414, 'source delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (415, 'lead task create', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (416, 'lead task edit', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (417, 'lead task delete', NULL, NULL, 'web', 'Lead', 0, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (418, 'paypal manage', NULL, NULL, 'web', 'Paypal', 0, '2024-08-11 08:23:08', '2024-08-11 08:23:08'), (419, 'pos manage', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (420, 'pos show', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (421, 'pos dashboard manage', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (422, 'pos add manage', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (423, 'pos cart manage', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (424, 'report pos', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (425, 'report pos vs expense', NULL, NULL, 'web', 'Pos', 0, '2024-08-11 08:23:09', '2024-08-11 08:23:09'), (426, 'product&service manage', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (427, 'product&service create', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (428, 'product&service edit', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (429, 'product&service delete', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (430, 'product&service import', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (431, 'unit manage', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (432, 'unit cerate', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (433, 'unit edit', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (434, 'unit delete', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (435, 'tax manage', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (436, 'tax create', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (437, 'tax edit', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (438, 'tax delete', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (439, 'category manage', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (440, 'category create', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (441, 'category edit', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (442, 'category delete', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (443, 'product service manage', NULL, NULL, 'web', 'ProductService', 0, '2024-08-11 08:23:11', '2024-08-11 08:23:11'), (444, 'stripe manage', NULL, NULL, 'web', 'Stripe', 0, '2024-08-11 08:23:12', '2024-08-11 08:23:12'), (445, 'taskly manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:14', '2024-08-11 08:23:14'), (446, 'taskly setup manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:14', '2024-08-11 08:23:14'), (447, 'taskly dashboard manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (448, 'project manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (449, 'project create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (450, 'project edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (451, 'project delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (452, 'project show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (453, 'project invite user', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (454, 'project report manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (455, 'project import', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (456, 'project setting', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (457, 'project finance manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (458, 'team member remove', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (459, 'team client remove', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (460, 'bug manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (461, 'bug create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (462, 'bug edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (463, 'bug delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (464, 'bug show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (465, 'bug move', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (466, 'bug comments create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (467, 'bug comments delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (468, 'bug file uploads', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (469, 'bug file delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (470, 'bugstage manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (471, 'bugstage edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (472, 'bugstage delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (473, 'bugstage show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (474, 'milestone manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (475, 'milestone create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (476, 'milestone edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (477, 'milestone delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (478, 'milestone show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:15', '2024-08-11 08:23:15'), (479, 'task manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (480, 'task create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (481, 'task edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (482, 'task delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (483, 'task show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (484, 'task move', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (485, 'task file manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (486, 'task file uploads', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'); INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `guard_name`, `module`, `created_by`, `created_at`, `updated_at`) VALUES (487, 'task file delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (488, 'task file show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (489, 'task comment manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (490, 'task comment create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (491, 'task comment edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (492, 'task comment delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (493, 'task comment show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (494, 'taskstage manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (495, 'taskstage edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (496, 'taskstage delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (497, 'taskstage show', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (498, 'sub-task manage', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (499, 'sub-task create', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (500, 'sub-task edit', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (501, 'sub-task delete', NULL, NULL, 'web', 'Taskly', 0, '2024-08-11 08:23:16', '2024-08-11 08:23:16'); -- -------------------------------------------------------- -- -- Table structure for table `permission_role` -- CREATE TABLE `permission_role` ( `permission_id` bigint(20) UNSIGNED NOT NULL, `role_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `permission_role` -- INSERT INTO `permission_role` (`permission_id`, `role_id`) VALUES (1, 1), (1, 2), (1, 6), (1, 10), (1, 14), (1, 15), (2, 1), (2, 2), (2, 15), (3, 1), (3, 2), (3, 15), (4, 1), (4, 2), (4, 15), (5, 1), (5, 2), (5, 3), (5, 4), (5, 5), (5, 6), (5, 7), (5, 8), (5, 9), (5, 10), (5, 11), (5, 12), (5, 13), (5, 14), (5, 15), (6, 1), (6, 2), (6, 15), (7, 1), (7, 2), (7, 15), (8, 1), (8, 2), (8, 15), (9, 1), (9, 2), (9, 3), (9, 4), (9, 6), (9, 7), (9, 8), (9, 10), (9, 11), (9, 12), (9, 14), (9, 15), (10, 1), (10, 2), (10, 15), (11, 1), (12, 1), (13, 1), (14, 1), (15, 1), (16, 1), (16, 2), (16, 15), (17, 1), (18, 1), (19, 1), (20, 1), (20, 2), (20, 15), (21, 1), (22, 1), (23, 1), (24, 1), (25, 1), (26, 1), (27, 1), (28, 1), (29, 1), (30, 1), (30, 2), (30, 15), (31, 1), (31, 2), (31, 15), (32, 1), (32, 2), (32, 15), (33, 1), (33, 2), (33, 15), (34, 1), (34, 2), (34, 15), (35, 1), (35, 2), (35, 15), (36, 1), (37, 1), (38, 1), (39, 1), (40, 1), (41, 1), (42, 1), (43, 1), (44, 1), (45, 1), (46, 1), (46, 2), (46, 15), (47, 2), (47, 3), (47, 4), (47, 6), (47, 7), (47, 8), (47, 10), (47, 11), (47, 12), (47, 14), (47, 15), (48, 2), (48, 5), (48, 6), (48, 9), (48, 10), (48, 13), (48, 14), (48, 15), (49, 2), (49, 15), (50, 2), (50, 15), (51, 2), (51, 15), (52, 2), (52, 6), (52, 10), (52, 14), (52, 15), (53, 2), (53, 15), (54, 2), (54, 15), (55, 2), (55, 15), (56, 2), (56, 15), (57, 2), (57, 15), (58, 2), (58, 3), (58, 7), (58, 11), (58, 15), (59, 2), (59, 15), (60, 2), (60, 15), (61, 2), (61, 15), (62, 2), (62, 3), (62, 7), (62, 11), (62, 15), (63, 2), (63, 15), (64, 2), (64, 15), (65, 2), (65, 15), (66, 2), (66, 15), (67, 2), (67, 3), (67, 7), (67, 11), (67, 15), (68, 2), (68, 15), (69, 2), (69, 15), (70, 2), (70, 15), (71, 2), (71, 3), (71, 7), (71, 11), (71, 15), (72, 2), (72, 15), (73, 2), (73, 15), (74, 2), (74, 15), (75, 2), (75, 15), (76, 2), (76, 15), (77, 2), (77, 15), (78, 2), (78, 15), (79, 2), (79, 15), (80, 2), (80, 15), (81, 2), (81, 15), (82, 2), (82, 15), (83, 2), (83, 15), (84, 2), (84, 15), (85, 2), (85, 15), (86, 2), (86, 15), (87, 2), (87, 15), (88, 2), (88, 15), (89, 2), (89, 15), (90, 2), (90, 15), (91, 2), (91, 15), (92, 2), (92, 15), (93, 2), (93, 15), (94, 2), (94, 15), (95, 2), (95, 15), (96, 2), (96, 15), (97, 1), (98, 1), (99, 1), (100, 1), (101, 1), (102, 1), (103, 1), (104, 1), (105, 1), (106, 1), (107, 1), (108, 1), (109, 2), (110, 2), (111, 2), (112, 2), (113, 2), (114, 2), (115, 2), (116, 2), (117, 2), (118, 2), (118, 3), (118, 5), (118, 7), (118, 9), (118, 11), (118, 13), (119, 2), (120, 2), (121, 2), (122, 2), (123, 2), (124, 2), (125, 2), (125, 5), (125, 9), (125, 13), (126, 2), (127, 2), (128, 2), (129, 2), (129, 5), (129, 9), (129, 13), (130, 2), (131, 2), (131, 3), (131, 7), (131, 11), (132, 2), (133, 2), (134, 2), (135, 2), (135, 3), (135, 7), (135, 11), (136, 2), (137, 2), (138, 2), (139, 2), (140, 2), (140, 5), (140, 9), (140, 13), (141, 2), (142, 2), (143, 2), (144, 2), (144, 5), (144, 9), (144, 13), (145, 2), (146, 2), (147, 2), (148, 2), (148, 5), (148, 9), (148, 13), (149, 2), (150, 2), (151, 2), (152, 2), (153, 2), (154, 2), (155, 2), (156, 2), (157, 2), (158, 2), (159, 2), (160, 2), (161, 2), (162, 2), (163, 2), (164, 2), (165, 2), (166, 2), (167, 2), (168, 2), (169, 2), (170, 2), (170, 3), (170, 7), (170, 11), (171, 2), (171, 5), (171, 9), (171, 13), (172, 2), (173, 2), (174, 2), (175, 2), (176, 2), (177, 2), (178, 2), (178, 4), (178, 6), (178, 8), (178, 10), (178, 12), (178, 14), (179, 2), (179, 4), (179, 6), (179, 8), (179, 10), (179, 12), (179, 14), (180, 2), (180, 6), (180, 10), (180, 14), (181, 2), (181, 4), (181, 6), (181, 8), (181, 10), (181, 12), (181, 14), (182, 2), (182, 6), (182, 10), (182, 14), (183, 2), (183, 6), (183, 10), (183, 14), (184, 2), (184, 6), (184, 10), (184, 14), (185, 2), (185, 4), (185, 6), (185, 8), (185, 10), (185, 12), (185, 14), (186, 2), (186, 6), (186, 10), (186, 14), (187, 2), (187, 6), (187, 10), (187, 14), (188, 2), (188, 6), (188, 10), (188, 14), (189, 2), (189, 6), (189, 10), (189, 14), (190, 2), (190, 6), (190, 10), (190, 14), (191, 2), (191, 6), (191, 10), (191, 14), (192, 2), (192, 6), (192, 10), (192, 14), (193, 2), (193, 6), (193, 10), (193, 14), (194, 2), (194, 6), (194, 10), (194, 14), (195, 2), (195, 6), (195, 10), (195, 14), (196, 2), (196, 6), (196, 10), (196, 14), (197, 2), (197, 6), (197, 10), (197, 14), (198, 2), (198, 6), (198, 10), (198, 14), (199, 2), (199, 6), (199, 10), (199, 14), (200, 2), (200, 6), (200, 10), (200, 14), (201, 2), (201, 6), (201, 10), (201, 14), (202, 2), (202, 4), (202, 6), (202, 8), (202, 10), (202, 12), (202, 14), (203, 2), (203, 6), (203, 10), (203, 14), (204, 2), (204, 6), (204, 10), (204, 14), (205, 2), (205, 6), (205, 10), (205, 14), (206, 2), (206, 4), (206, 6), (206, 8), (206, 10), (206, 12), (206, 14), (207, 2), (207, 4), (207, 6), (207, 8), (207, 10), (207, 12), (207, 14), (208, 2), (208, 4), (208, 6), (208, 8), (208, 10), (208, 12), (208, 14), (209, 2), (209, 6), (209, 10), (209, 14), (210, 2), (210, 6), (210, 10), (210, 14), (211, 2), (211, 6), (211, 10), (211, 14), (212, 2), (212, 6), (212, 10), (212, 14), (213, 2), (213, 6), (213, 10), (213, 14), (214, 2), (214, 4), (214, 6), (214, 8), (214, 10), (214, 12), (214, 14), (215, 2), (215, 6), (215, 10), (215, 14), (216, 2), (216, 6), (216, 10), (216, 14), (217, 2), (217, 6), (217, 10), (217, 14), (218, 2), (218, 4), (218, 6), (218, 8), (218, 10), (218, 12), (218, 14), (219, 2), (219, 4), (219, 6), (219, 8), (219, 10), (219, 12), (219, 14), (220, 2), (220, 4), (220, 6), (220, 8), (220, 10), (220, 12), (220, 14), (221, 2), (221, 6), (221, 10), (221, 14), (222, 2), (222, 6), (222, 10), (222, 14), (223, 2), (223, 6), (223, 10), (223, 14), (224, 2), (224, 6), (224, 10), (224, 14), (225, 2), (225, 6), (225, 10), (225, 14), (226, 2), (226, 6), (226, 10), (226, 14), (227, 2), (227, 4), (227, 6), (227, 8), (227, 10), (227, 12), (227, 14), (228, 2), (228, 6), (228, 10), (228, 14), (229, 2), (229, 6), (229, 10), (229, 14), (230, 2), (230, 6), (230, 10), (230, 14), (231, 2), (231, 6), (231, 10), (231, 14), (232, 2), (232, 6), (232, 10), (232, 14), (233, 2), (233, 6), (233, 10), (233, 14), (234, 2), (234, 6), (234, 10), (234, 14), (235, 2), (235, 4), (235, 6), (235, 8), (235, 10), (235, 12), (235, 14), (236, 2), (236, 6), (236, 10), (236, 14), (237, 2), (237, 6), (237, 10), (237, 14), (238, 2), (238, 6), (238, 10), (238, 14), (239, 2), (239, 4), (239, 6), (239, 8), (239, 10), (239, 12), (239, 14), (240, 2), (240, 6), (240, 10), (240, 14), (241, 2), (241, 6), (241, 10), (241, 14), (242, 2), (242, 6), (242, 10), (242, 14), (243, 2), (243, 4), (243, 6), (243, 8), (243, 10), (243, 12), (243, 14), (244, 2), (244, 6), (244, 10), (244, 14), (245, 2), (245, 6), (245, 10), (245, 14), (246, 2), (246, 6), (246, 10), (246, 14), (247, 2), (247, 4), (247, 6), (247, 8), (247, 10), (247, 12), (247, 14), (248, 2), (248, 6), (248, 10), (248, 14), (249, 2), (249, 6), (249, 10), (249, 14), (250, 2), (250, 6), (250, 10), (250, 14), (251, 2), (251, 4), (251, 6), (251, 8), (251, 10), (251, 12), (251, 14), (252, 2), (252, 4), (252, 6), (252, 8), (252, 10), (252, 12), (252, 14), (253, 2), (253, 4), (253, 6), (253, 8), (253, 10), (253, 12), (253, 14), (254, 2), (254, 4), (254, 6), (254, 8), (254, 10), (254, 12), (254, 14), (255, 2), (255, 4), (255, 6), (255, 8), (255, 10), (255, 12), (255, 14), (256, 2), (256, 6), (256, 10), (256, 14), (257, 2), (257, 6), (257, 10), (257, 14), (258, 2), (258, 6), (258, 10), (258, 14), (259, 2), (259, 4), (259, 6), (259, 8), (259, 10), (259, 12), (259, 14), (260, 2), (260, 6), (260, 10), (260, 14), (261, 2), (261, 6), (261, 10), (261, 14), (262, 2), (262, 6), (262, 10), (262, 14), (263, 2), (263, 6), (263, 10), (263, 14), (264, 2), (264, 6), (264, 10), (264, 14), (265, 2), (265, 6), (265, 10), (265, 14), (266, 2), (266, 6), (266, 10), (266, 14), (267, 2), (267, 6), (267, 10), (267, 14), (268, 2), (268, 4), (268, 6), (268, 8), (268, 10), (268, 12), (268, 14), (269, 2), (269, 6), (269, 10), (269, 14), (270, 2), (270, 6), (270, 10), (270, 14), (271, 2), (271, 6), (271, 10), (271, 14), (272, 2), (272, 4), (272, 6), (272, 8), (272, 10), (272, 12), (272, 14), (273, 2), (273, 6), (273, 10), (273, 14), (274, 2), (274, 6), (274, 10), (274, 14), (275, 2), (275, 6), (275, 10), (275, 14), (276, 2), (276, 6), (276, 10), (276, 14), (277, 2), (277, 4), (277, 6), (277, 8), (277, 10), (277, 12), (277, 14), (278, 2), (278, 4), (278, 6), (278, 8), (278, 10), (278, 12), (278, 14), (279, 2), (279, 6), (279, 10), (279, 14), (280, 2), (280, 6), (280, 10), (280, 14), (281, 2), (281, 6), (281, 10), (281, 14), (282, 2), (282, 6), (282, 10), (282, 14), (283, 2), (283, 6), (283, 10), (283, 14), (284, 2), (284, 6), (284, 10), (284, 14), (285, 2), (285, 6), (285, 10), (285, 14), (286, 2), (286, 6), (286, 10), (286, 14), (287, 2), (287, 6), (287, 10), (287, 14), (288, 2), (288, 6), (288, 10), (288, 14), (289, 2), (289, 6), (289, 10), (289, 14), (290, 2), (290, 6), (290, 10), (290, 14), (291, 2), (291, 6), (291, 10), (291, 14), (292, 2), (292, 6), (292, 10), (292, 14), (293, 2), (293, 6), (293, 10), (293, 14), (294, 2), (294, 6), (294, 10), (294, 14), (295, 2), (295, 6), (295, 10), (295, 14), (296, 2), (296, 4), (296, 6), (296, 8), (296, 10), (296, 12), (296, 14), (297, 2), (297, 4), (297, 6), (297, 8), (297, 10), (297, 12), (297, 14), (298, 2), (298, 6), (298, 10), (298, 14), (299, 2), (299, 6), (299, 10), (299, 14), (300, 2), (300, 4), (300, 6), (300, 8), (300, 10), (300, 12), (300, 14), (301, 2), (301, 4), (301, 6), (301, 8), (301, 10), (301, 12), (301, 14), (302, 2), (302, 6), (302, 10), (302, 14), (303, 2), (303, 6), (303, 10), (303, 14), (304, 2), (304, 6), (304, 10), (304, 14), (305, 2), (305, 4), (305, 6), (305, 8), (305, 10), (305, 12), (305, 14), (306, 2), (306, 6), (306, 10), (306, 14), (307, 2), (307, 6), (307, 10), (307, 14), (308, 2), (308, 6), (308, 10), (308, 14), (309, 2), (309, 4), (309, 6), (309, 8), (309, 10), (309, 12), (309, 14), (310, 2), (310, 6), (310, 10), (310, 14), (311, 2), (311, 6), (311, 10), (311, 14), (312, 2), (312, 6), (312, 10), (312, 14), (313, 2), (313, 4), (313, 6), (313, 8), (313, 10), (313, 12), (313, 14), (314, 2), (314, 6), (314, 10), (314, 14), (315, 2), (315, 6), (315, 10), (315, 14), (316, 2), (316, 6), (316, 10), (316, 14), (317, 2), (317, 4), (317, 6), (317, 8), (317, 10), (317, 12), (317, 14), (318, 2), (318, 6), (318, 10), (318, 14), (319, 2), (319, 6), (319, 10), (319, 14), (320, 2), (320, 6), (320, 10), (320, 14), (321, 2), (321, 4), (321, 6), (321, 8), (321, 10), (321, 12), (321, 14), (322, 2), (322, 6), (322, 10), (322, 14), (323, 2), (323, 6), (323, 10), (323, 14), (324, 2), (324, 6), (324, 10), (324, 14), (325, 2), (325, 4), (325, 6), (325, 8), (325, 10), (325, 12), (325, 14), (326, 2), (326, 6), (326, 10), (326, 14), (327, 2), (327, 6), (327, 10), (327, 14), (328, 2), (328, 6), (328, 10), (328, 14), (329, 2), (329, 6), (329, 10), (329, 14), (330, 2), (330, 6), (330, 10), (330, 14), (331, 2), (331, 6), (331, 10), (331, 14), (332, 2), (332, 6), (332, 10), (332, 14), (333, 2), (333, 6), (333, 10), (333, 14), (334, 2), (334, 6), (334, 10), (334, 14), (335, 2), (335, 6), (335, 10), (335, 14), (336, 2), (336, 4), (336, 6), (336, 8), (336, 10), (336, 12), (336, 14), (337, 2), (337, 4), (337, 6), (337, 8), (337, 10), (337, 12), (337, 14), (338, 2), (338, 6), (338, 10), (338, 14), (339, 2), (339, 6), (339, 10), (339, 14), (340, 2), (340, 6), (340, 10), (340, 14), (341, 2), (341, 6), (341, 10), (341, 14), (342, 2), (342, 6), (342, 10), (342, 14), (343, 2), (343, 6), (343, 10), (343, 14), (344, 2), (344, 6), (344, 10), (344, 14), (345, 2), (345, 6), (345, 10), (345, 14), (346, 2), (346, 6), (346, 10), (346, 14), (347, 2), (347, 6), (347, 10), (347, 14), (348, 2), (348, 6), (348, 10), (348, 14), (349, 2), (349, 6), (349, 10), (349, 14), (350, 2), (350, 6), (350, 10), (350, 14), (351, 2), (351, 6), (351, 10), (351, 14), (352, 2), (352, 6), (352, 10), (352, 14), (353, 2), (353, 6), (353, 10), (353, 14), (354, 2), (354, 6), (354, 10), (354, 14), (355, 2), (355, 6), (355, 10), (355, 14), (356, 2), (356, 6), (356, 10), (356, 14), (357, 2), (357, 6), (357, 10), (357, 14), (358, 2), (358, 6), (358, 10), (358, 14), (359, 2), (359, 6), (359, 10), (359, 14), (360, 2), (360, 6), (360, 10), (360, 14), (361, 2), (361, 6), (361, 10), (361, 14), (362, 2), (362, 3), (362, 4), (362, 7), (362, 8), (362, 11), (362, 12), (363, 2), (364, 2), (365, 2), (366, 2), (366, 4), (366, 8), (366, 12), (367, 2), (368, 2), (369, 2), (370, 2), (370, 4), (370, 8), (370, 12), (371, 2), (372, 2), (373, 2), (374, 2), (375, 2), (376, 2), (377, 2), (378, 2), (379, 2), (380, 2), (380, 3), (380, 4), (380, 7), (380, 8), (380, 11), (380, 12), (381, 2), (382, 2), (383, 2), (384, 2), (384, 3), (384, 4), (384, 7), (384, 8), (384, 11), (384, 12), (385, 2), (386, 2), (387, 2), (387, 3), (387, 7), (387, 11), (388, 2), (388, 3), (388, 7), (388, 11), (389, 2), (389, 3), (389, 7), (389, 11), (390, 2), (390, 3), (390, 4), (390, 7), (390, 8), (390, 11), (390, 12), (391, 2), (391, 3), (391, 7), (391, 11), (392, 2), (392, 3), (392, 7), (392, 11), (393, 2), (393, 3), (393, 7), (393, 11), (394, 2), (394, 3), (394, 7), (394, 11), (395, 2), (396, 2), (397, 2), (398, 2), (399, 2), (400, 2), (401, 2), (402, 2), (403, 2), (404, 2), (405, 2), (406, 2), (407, 2), (408, 2), (409, 2), (410, 2), (411, 2), (412, 2), (413, 2), (414, 2), (415, 2), (416, 2), (417, 2), (418, 1), (418, 2), (419, 2), (420, 2), (421, 2), (422, 2), (423, 2), (424, 2), (425, 2), (426, 2), (426, 15), (427, 2), (427, 15), (428, 2), (428, 15), (429, 2), (429, 15), (430, 2), (430, 15), (431, 2), (431, 15), (432, 2), (432, 15), (433, 2), (433, 15), (434, 2), (434, 15), (435, 2), (435, 15), (436, 2), (436, 15), (437, 2), (437, 15), (438, 2), (438, 15), (439, 2), (439, 15), (440, 2), (440, 15), (441, 2), (441, 15), (442, 2), (442, 15), (443, 2), (443, 15), (444, 1), (444, 2), (445, 2), (445, 3), (445, 4), (445, 7), (445, 8), (445, 11), (445, 12), (445, 15), (446, 2), (446, 15), (447, 2), (447, 3), (447, 4), (447, 7), (447, 8), (447, 11), (447, 12), (447, 15), (448, 2), (448, 3), (448, 4), (448, 7), (448, 8), (448, 11), (448, 12), (448, 15), (449, 2), (449, 3), (449, 7), (449, 11), (449, 15), (450, 2), (450, 15), (451, 2), (451, 15), (452, 2), (452, 3), (452, 4), (452, 7), (452, 8), (452, 11), (452, 12), (452, 15), (453, 2), (453, 15), (454, 2), (454, 15), (455, 2), (455, 15), (456, 2), (456, 15), (457, 2), (457, 15), (458, 2), (458, 15), (459, 2), (459, 15), (460, 2), (460, 3), (460, 4), (460, 7), (460, 8), (460, 11), (460, 12), (460, 15), (461, 2), (461, 3), (461, 7), (461, 11), (461, 15), (462, 2), (462, 3), (462, 7), (462, 11), (462, 15), (463, 2), (463, 3), (463, 7), (463, 11), (463, 15), (464, 2), (464, 3), (464, 4), (464, 7), (464, 8), (464, 11), (464, 12), (464, 15), (465, 2), (465, 3), (465, 4), (465, 7), (465, 8), (465, 11), (465, 12), (465, 15), (466, 2), (466, 3), (466, 4), (466, 7), (466, 8), (466, 11), (466, 12), (466, 15), (467, 2), (467, 3), (467, 7), (467, 11), (467, 15), (468, 2), (468, 3), (468, 4), (468, 7), (468, 8), (468, 11), (468, 12), (468, 15), (469, 2), (469, 3), (469, 4), (469, 7), (469, 8), (469, 11), (469, 12), (469, 15), (470, 2), (470, 15), (471, 2), (471, 15), (472, 2), (472, 15), (473, 2), (473, 15), (474, 2), (474, 3), (474, 7), (474, 11), (474, 15), (475, 2), (475, 15), (476, 2), (476, 15), (477, 2), (477, 15), (478, 2), (478, 3), (478, 7), (478, 11), (478, 15), (479, 2), (479, 3), (479, 4), (479, 7), (479, 8), (479, 11), (479, 12), (479, 15), (480, 2), (480, 3), (480, 7), (480, 11), (480, 15), (481, 2), (481, 3), (481, 7), (481, 11), (481, 15), (482, 2), (482, 3), (482, 7), (482, 11), (482, 15), (483, 2), (483, 3), (483, 4), (483, 7), (483, 8), (483, 11), (483, 12), (483, 15), (484, 2), (484, 15), (485, 2), (485, 3), (485, 4), (485, 7), (485, 8), (485, 11), (485, 12), (485, 15), (486, 2), (486, 3), (486, 7), (486, 11), (486, 15), (487, 2), (487, 3), (487, 7), (487, 11), (487, 15), (488, 2), (488, 3), (488, 4), (488, 7), (488, 8), (488, 11), (488, 12), (488, 15), (489, 2), (489, 3), (489, 4), (489, 7), (489, 8), (489, 11), (489, 12), (489, 15), (490, 2), (490, 3), (490, 7), (490, 11), (490, 15), (491, 2), (491, 3), (491, 7), (491, 11), (491, 15), (492, 2), (492, 3), (492, 7), (492, 11), (492, 15), (493, 2), (493, 3), (493, 4), (493, 7), (493, 8), (493, 11), (493, 12), (493, 15), (494, 2), (494, 15), (495, 2), (495, 15), (496, 2), (496, 15), (497, 2), (497, 15), (498, 2), (498, 3), (498, 4), (498, 7), (498, 8), (498, 11), (498, 12), (498, 15), (499, 2), (499, 15), (500, 2), (500, 3), (500, 4), (500, 7), (500, 8), (500, 11), (500, 12), (500, 15), (501, 2), (501, 3), (501, 7), (501, 11), (501, 15); -- -------------------------------------------------------- -- -- Table structure for table `permission_user` -- CREATE TABLE `permission_user` ( `permission_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(255) NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `token` varchar(64) NOT NULL, `abilities` text DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `pipelines` -- CREATE TABLE `pipelines` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `workspace_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pipelines` -- INSERT INTO `pipelines` (`id`, `name`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'Sales', 2, 1, '2024-08-11 08:23:06', '2024-08-11 08:23:06'), (2, 'Sales', 6, 2, '2024-10-09 15:18:14', '2024-10-09 15:18:14'), (3, 'Sales', 12, 3, '2025-05-21 17:55:21', '2025-05-21 17:55:21'), (4, 'Sales', 12, 4, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `plans` -- CREATE TABLE `plans` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `number_of_user` varchar(255) DEFAULT NULL, `custom_plan` int(11) NOT NULL DEFAULT 0, `active` int(11) NOT NULL DEFAULT 1, `is_free_plan` int(11) NOT NULL DEFAULT 0, `status` int(11) DEFAULT 1, `package_price_monthly` double(30,2) NOT NULL DEFAULT 0.00, `package_price_yearly` double(30,2) NOT NULL DEFAULT 0.00, `price_per_user_monthly` double(30,2) NOT NULL DEFAULT 0.00, `price_per_user_yearly` double(30,2) NOT NULL DEFAULT 0.00, `price_per_workspace_monthly` double(30,2) NOT NULL DEFAULT 0.00, `price_per_workspace_yearly` double(30,2) NOT NULL DEFAULT 0.00, `modules` longtext DEFAULT NULL, `trial` int(11) NOT NULL DEFAULT 0, `trial_days` varchar(255) DEFAULT NULL, `number_of_workspace` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `plans` -- INSERT INTO `plans` (`id`, `name`, `number_of_user`, `custom_plan`, `active`, `is_free_plan`, `status`, `package_price_monthly`, `package_price_yearly`, `price_per_user_monthly`, `price_per_user_yearly`, `price_per_workspace_monthly`, `price_per_workspace_yearly`, `modules`, `trial`, `trial_days`, `number_of_workspace`, `created_at`, `updated_at`) VALUES (1, NULL, '5', 1, 1, 0, 1, 100.00, 0.00, 0.00, 0.00, 0.00, 0.00, NULL, 0, NULL, '5', '2024-08-11 08:22:12', '2025-06-04 00:50:31'), (2, 'Basic', '5', 0, 1, 1, 1, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 'Account,Hrm,Stripe,ProductService,Pos,Taskly,Paypal,Lead', 0, NULL, '5', '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (3, 'Premium', '10', 0, 1, 0, 1, 500.00, 6000.00, 0.00, 0.00, 0.00, 0.00, 'Account,Hrm,Lead,Paypal,Pos,Stripe', 0, NULL, '1', '2024-11-19 15:12:03', '2024-11-19 15:12:03'); -- -------------------------------------------------------- -- -- Table structure for table `pos` -- CREATE TABLE `pos` ( `id` bigint(20) UNSIGNED NOT NULL, `pos_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0, `customer_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0, `warehouse_id` int(11) NOT NULL DEFAULT 0, `pos_date` date DEFAULT NULL, `category_id` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 0, `shipping_display` int(11) NOT NULL DEFAULT 1, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pos` -- INSERT INTO `pos` (`id`, `pos_id`, `customer_id`, `warehouse_id`, `pos_date`, `category_id`, `status`, `shipping_display`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, 0, 1, '2024-09-09', 0, 0, 1, 1, 2, '2024-09-09 10:31:13', '2024-09-09 10:31:13'), (2, 2, 3, 1, '2024-09-09', 0, 0, 1, 1, 2, '2024-09-09 10:51:59', '2024-09-09 10:51:59'), (3, 3, 0, 1, '2024-09-09', 0, 0, 1, 1, 2, '2024-09-09 11:13:29', '2024-09-09 11:13:29'), (4, 4, 0, 1, '2024-10-09', 0, 0, 1, 1, 2, '2024-10-09 12:19:23', '2024-10-09 12:19:23'), (5, 1, 8, 2, '2024-10-09', 0, 0, 1, 2, 6, '2024-10-09 18:45:26', '2024-10-09 18:45:26'), (6, 5, 0, 1, '2025-06-22', 0, 0, 1, 1, 2, '2025-06-22 23:07:46', '2025-06-22 23:07:46'); -- -------------------------------------------------------- -- -- Table structure for table `pos_payments` -- CREATE TABLE `pos_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `pos_id` int(11) NOT NULL, `date` date DEFAULT NULL, `discount` double(8,2) DEFAULT NULL, `amount` varchar(255) NOT NULL DEFAULT '0.00', `discount_amount` double(8,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pos_payments` -- INSERT INTO `pos_payments` (`id`, `pos_id`, `date`, `discount`, `amount`, `discount_amount`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, NULL, 0.00, '60', 60.00, 1, 2, '2024-09-09 10:31:13', '2024-09-09 10:31:13'), (2, 2, NULL, 0.00, '60', 60.00, 1, 2, '2024-09-09 10:51:59', '2024-09-09 10:51:59'), (3, 3, NULL, 0.00, '60', 60.00, 1, 2, '2024-09-09 11:13:29', '2024-09-09 11:13:29'), (4, 4, NULL, 0.00, '120', 120.00, 1, 2, '2024-10-09 12:19:23', '2024-10-09 12:19:23'), (5, 5, NULL, 0.00, '2500', 2500.00, 2, 6, '2024-10-09 18:45:26', '2024-10-09 18:45:26'), (6, 6, NULL, 0.00, '90', 90.00, 1, 2, '2025-06-22 23:07:46', '2025-06-22 23:07:46'); -- -------------------------------------------------------- -- -- Table structure for table `pos_products` -- CREATE TABLE `pos_products` ( `id` bigint(20) UNSIGNED NOT NULL, `pos_id` int(11) NOT NULL DEFAULT 0, `product_id` int(11) NOT NULL DEFAULT 0, `quantity` int(11) NOT NULL DEFAULT 0, `tax` varchar(255) NOT NULL DEFAULT '0', `discount` double(8,2) NOT NULL DEFAULT 0.00, `price` double(8,2) NOT NULL DEFAULT 0.00, `description` text DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pos_products` -- INSERT INTO `pos_products` (`id`, `pos_id`, `product_id`, `quantity`, `tax`, `discount`, `price`, `description`, `workspace`, `created_at`, `updated_at`) VALUES (1, 1, 1, 1, '1', 0.00, 60.00, NULL, 1, '2024-09-09 10:31:13', '2024-09-09 10:31:13'), (2, 2, 1, 1, '1', 0.00, 60.00, NULL, 1, '2024-09-09 10:51:59', '2024-09-09 10:51:59'), (3, 3, 1, 1, '1', 0.00, 60.00, NULL, 1, '2024-09-09 11:13:29', '2024-09-09 11:13:29'), (4, 4, 1, 2, '1', 0.00, 60.00, NULL, 1, '2024-10-09 12:19:23', '2024-10-09 12:19:23'), (5, 5, 5, 4, '3', 0.00, 350.00, NULL, 2, '2024-10-09 18:45:26', '2024-10-09 18:45:26'), (6, 5, 3, 5, '3', 0.00, 30.00, NULL, 2, '2024-10-09 18:45:26', '2024-10-09 18:45:26'), (7, 5, 2, 5, '3', 0.00, 190.00, NULL, 2, '2024-10-09 18:45:26', '2024-10-09 18:45:26'), (8, 6, 1, 1, '1', 0.00, 90.00, NULL, 1, '2025-06-22 23:07:46', '2025-06-22 23:07:46'); -- -------------------------------------------------------- -- -- Table structure for table `products_log_times` -- CREATE TABLE `products_log_times` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `hours` varchar(255) DEFAULT NULL, `minute` varchar(255) DEFAULT NULL, `date` date DEFAULT NULL, `description` text DEFAULT NULL, `location_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `company_id` int(11) NOT NULL DEFAULT 0, `workspace` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_services` -- CREATE TABLE `product_services` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `sku` varchar(255) NOT NULL, `sale_price` double(20,2) NOT NULL DEFAULT 0.00, `purchase_price` double(20,2) NOT NULL DEFAULT 0.00, `quantity` int(11) NOT NULL DEFAULT 0, `tax_id` varchar(255) DEFAULT NULL, `category_id` int(11) NOT NULL DEFAULT 0, `image` longtext DEFAULT NULL, `unit_id` int(11) NOT NULL DEFAULT 0, `sale_chartaccount_id` int(11) NOT NULL DEFAULT 0, `expense_chartaccount_id` int(11) NOT NULL DEFAULT 0, `type` varchar(255) NOT NULL, `warehouse_id` int(11) DEFAULT NULL, `description` text DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `product_services` -- INSERT INTO `product_services` (`id`, `name`, `sku`, `sale_price`, `purchase_price`, `quantity`, `tax_id`, `category_id`, `image`, `unit_id`, `sale_chartaccount_id`, `expense_chartaccount_id`, `type`, `warehouse_id`, `description`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'fogg', '6224009160112', 90.00, 60.00, 994, '1', 2, NULL, 1, 0, 0, 'product', 1, NULL, 2, 1, '2024-09-09 10:29:20', '2025-06-22 23:07:46'), (2, 'فول مدشوش', 'SKU-EAK6461', 190.00, 200.00, 240, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-09 18:13:05', '2024-10-10 14:29:50'), (3, 'Rise', 'SKU-E6C0HEH', 30.00, 28.00, 160, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-09 18:14:10', '2024-10-10 14:30:35'), (4, 'Sugar', 'SKU-0JH1LAC', 35.00, 30.00, 0, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-09 18:18:03', '2024-10-13 08:02:05'), (5, 'سكر', '41894', 350.00, 335.00, -1, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-09 18:24:01', '2024-10-10 14:45:21'), (8, 'فلفل اسود', '6', 120.00, 100.00, -15, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-10 14:34:20', '2024-10-10 14:41:34'), (9, 'Rise', '7', 35.00, 30.00, -1, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-10 14:51:36', '2024-10-10 14:53:20'), (10, 'Rise', '7', 34.00, 31.00, -1, '3', 3, NULL, 2, 0, 0, 'product', 2, NULL, 6, 2, '2024-10-10 14:55:18', '2024-10-10 14:56:43'); -- -------------------------------------------------------- -- -- Table structure for table `projects` -- CREATE TABLE `projects` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `status` enum('Ongoing','Finished','OnHold') NOT NULL DEFAULT 'Ongoing', `image` varchar(255) DEFAULT NULL, `description` longtext DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `budget` int(11) NOT NULL DEFAULT 0, `is_active` int(11) NOT NULL DEFAULT 1, `type` varchar(255) NOT NULL DEFAULT 'project', `currency` varchar(50) NOT NULL DEFAULT '$', `project_progress` varchar(6) NOT NULL DEFAULT 'false', `progress` varchar(5) NOT NULL DEFAULT '0', `task_progress` varchar(6) NOT NULL DEFAULT 'true', `tags` text DEFAULT NULL, `estimated_hrs` int(11) NOT NULL DEFAULT 0, `copylinksetting` longtext DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `workspace` int(11) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `project_files` -- CREATE TABLE `project_files` ( `id` bigint(20) UNSIGNED NOT NULL, `project_id` bigint(20) UNSIGNED NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `promotions` -- CREATE TABLE `promotions` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `designation_id` int(11) NOT NULL, `promotion_title` varchar(255) NOT NULL, `promotion_date` date NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `proposals` -- CREATE TABLE `proposals` ( `id` bigint(20) UNSIGNED NOT NULL, `proposal_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `account_type` varchar(255) NOT NULL DEFAULT 'Accounting', `issue_date` date NOT NULL, `send_date` date DEFAULT NULL, `category_id` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `proposal_module` varchar(255) NOT NULL DEFAULT 'account', `proposal_template` varchar(255) DEFAULT NULL, `is_convert` int(11) NOT NULL DEFAULT 0, `converted_invoice_id` int(11) NOT NULL DEFAULT 0, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `proposal_attechments` -- CREATE TABLE `proposal_attechments` ( `id` bigint(20) UNSIGNED NOT NULL, `proposal_id` varchar(255) NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `file_size` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `proposal_products` -- CREATE TABLE `proposal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `proposal_id` int(11) NOT NULL, `product_type` varchar(255) DEFAULT NULL, `product_id` int(11) NOT NULL, `quantity` int(11) NOT NULL, `tax` varchar(255) DEFAULT NULL, `discount` double(8,2) NOT NULL DEFAULT 0.00, `price` double(8,2) NOT NULL DEFAULT 0.00, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `purchases` -- CREATE TABLE `purchases` ( `id` bigint(20) UNSIGNED NOT NULL, `purchase_id` varchar(255) NOT NULL DEFAULT '0', `user_id` int(11) DEFAULT NULL, `vender_id` int(11) DEFAULT NULL, `vender_name` varchar(255) DEFAULT NULL, `account_type` varchar(255) NOT NULL DEFAULT 'Accounting', `warehouse_id` int(11) NOT NULL, `purchase_date` date NOT NULL, `purchase_number` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 0, `shipping_display` int(11) NOT NULL DEFAULT 1, `send_date` date DEFAULT NULL, `discount_apply` int(11) NOT NULL DEFAULT 0, `category_id` int(11) NOT NULL, `purchase_module` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `purchases` -- INSERT INTO `purchases` (`id`, `purchase_id`, `user_id`, `vender_id`, `vender_name`, `account_type`, `warehouse_id`, `purchase_date`, `purchase_number`, `status`, `shipping_display`, `send_date`, `discount_apply`, `category_id`, `purchase_module`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (4, '1', 7, 7, '', 'Accounting', 2, '2024-10-10', 0, 0, 1, NULL, 0, 7, 'taskly', 2, 6, '2024-10-10 14:28:30', '2024-10-10 14:28:30'), (5, '2', 7, 7, '', 'Accounting', 2, '2024-10-10', 0, 0, 1, NULL, 0, 7, 'taskly', 2, 6, '2024-10-10 14:29:50', '2024-10-10 14:29:50'), (6, '3', 9, 9, '', 'Accounting', 2, '2024-10-10', 0, 0, 1, NULL, 0, 7, 'taskly', 2, 6, '2024-10-10 14:30:35', '2024-10-10 14:30:35'), (7, '4', 9, 9, '', 'Accounting', 2, '2024-10-10', 0, 0, 1, NULL, 0, 7, 'taskly', 2, 6, '2024-10-10 14:31:27', '2024-10-10 14:31:27'), (8, '5', 7, 7, '', 'Accounting', 2, '2024-10-10', 0, 0, 1, NULL, 0, 7, 'taskly', 2, 6, '2024-10-10 14:32:55', '2024-10-10 14:32:55'), (9, '6', 7, 7, '', 'Accounting', 2, '2024-10-10', 0, 0, 1, NULL, 0, 7, 'taskly', 2, 6, '2024-10-10 14:35:13', '2024-10-10 14:35:13'); -- -------------------------------------------------------- -- -- Table structure for table `purchase_attachments` -- CREATE TABLE `purchase_attachments` ( `id` bigint(20) UNSIGNED NOT NULL, `purchase_id` bigint(20) UNSIGNED NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `file_size` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `purchase_debit_notes` -- CREATE TABLE `purchase_debit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `purchase` int(11) NOT NULL DEFAULT 0, `vendor` int(11) NOT NULL DEFAULT 0, `amount` double(15,2) NOT NULL DEFAULT 0.00, `date` date NOT NULL, `description` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `purchase_payments` -- CREATE TABLE `purchase_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `purchase_id` int(11) NOT NULL, `date` date NOT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `account_id` int(11) DEFAULT NULL, `payment_method` int(11) NOT NULL, `reference` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `add_receipt` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `purchase_products` -- CREATE TABLE `purchase_products` ( `id` bigint(20) UNSIGNED NOT NULL, `purchase_id` int(11) NOT NULL, `product_type` varchar(255) DEFAULT NULL, `product_id` int(11) NOT NULL, `quantity` int(11) NOT NULL, `tax` varchar(50) DEFAULT NULL, `discount` double(8,2) NOT NULL DEFAULT 0.00, `price` double(8,2) NOT NULL DEFAULT 0.00, `description` text DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `purchase_products` -- INSERT INTO `purchase_products` (`id`, `purchase_id`, `product_type`, `product_id`, `quantity`, `tax`, `discount`, `price`, `description`, `workspace`, `created_at`, `updated_at`) VALUES (5, 4, 'product', 2, 100, '3', 0.00, 80.00, '', 2, '2024-10-10 14:28:30', '2024-10-10 14:28:30'), (6, 5, 'product', 2, 100, '3', 0.00, 85.00, '', 2, '2024-10-10 14:29:50', '2024-10-10 14:29:50'), (7, 6, 'product', 3, 150, '3', 0.00, 28.00, '', 2, '2024-10-10 14:30:35', '2024-10-10 14:30:35'), (8, 7, 'product', 4, 150, '3', 0.00, 30.00, '', 2, '2024-10-10 14:31:27', '2024-10-10 14:31:27'), (9, 8, 'product', 5, 200, '3', 0.00, 28.00, '', 2, '2024-10-10 14:32:55', '2024-10-10 14:32:55'), (10, 9, 'product', 8, 150, '3', 0.00, 100.00, '', 2, '2024-10-10 14:35:13', '2024-10-10 14:35:13'); -- -------------------------------------------------------- -- -- Table structure for table `receipts` -- CREATE TABLE `receipts` ( `id` bigint(20) UNSIGNED NOT NULL, `billable_id` bigint(20) UNSIGNED NOT NULL, `billable_type` varchar(255) NOT NULL, `paddle_subscription_id` bigint(20) UNSIGNED DEFAULT NULL, `checkout_id` varchar(255) NOT NULL, `order_id` varchar(255) NOT NULL, `amount` varchar(255) NOT NULL, `tax` varchar(255) NOT NULL, `currency` varchar(3) NOT NULL, `quantity` int(11) NOT NULL, `receipt_url` varchar(255) NOT NULL, `paid_at` timestamp NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `referral_settings` -- CREATE TABLE `referral_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `referral_transactions` -- CREATE TABLE `referral_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `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_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `resignations` -- CREATE TABLE `resignations` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `resignation_date` date NOT NULL, `last_working_date` date NOT NULL, `description` longtext NOT NULL, `created_by` int(11) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `revenues` -- CREATE TABLE `revenues` ( `id` bigint(20) UNSIGNED NOT NULL, `date` date NOT NULL, `amount` double(15,2) NOT NULL DEFAULT 0.00, `account_id` int(11) NOT NULL, `customer_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `category_id` int(11) NOT NULL, `payment_method` int(11) NOT NULL, `reference` varchar(255) NOT NULL, `description` longtext NOT NULL, `add_receipt` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `display_name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `guard_name` varchar(255) NOT NULL DEFAULT 'web', `module` varchar(255) DEFAULT 'Base', `created_by` int(11) DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `guard_name`, `module`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'super admin', NULL, NULL, 'web', 'Base', 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 'company', NULL, NULL, 'web', 'Base', 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (3, 'client', NULL, NULL, 'web', 'Base', 2, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (4, 'staff', NULL, NULL, 'web', 'Base', 2, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (5, 'vendor', NULL, NULL, 'web', 'Account', 2, '2024-08-11 08:22:57', '2024-08-11 08:22:57'), (6, 'hr', NULL, NULL, 'web', 'Hrm', 2, '2024-08-11 08:23:01', '2024-08-11 08:23:01'), (7, 'client', NULL, NULL, 'web', 'Base', 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (8, 'staff', NULL, NULL, 'web', 'Base', 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (9, 'vendor', NULL, NULL, 'web', 'Base', 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (10, 'hr', NULL, NULL, 'web', 'Hrm', 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (11, 'client', NULL, NULL, 'web', 'Base', 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (12, 'staff', NULL, NULL, 'web', 'Base', 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (13, 'vendor', NULL, NULL, 'web', 'Base', 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (14, 'hr', NULL, NULL, 'web', 'Hrm', 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (15, 'Director', NULL, NULL, 'web', 'Base', 2, '2025-06-22 23:03:41', '2025-06-22 23:03:41'); -- -------------------------------------------------------- -- -- Table structure for table `role_user` -- CREATE TABLE `role_user` ( `role_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `role_user` -- INSERT INTO `role_user` (`role_id`, `user_id`, `user_type`) VALUES (1, 1, 'App\\Models\\User'), (2, 2, 'App\\Models\\User'), (3, 3, 'App\\Models\\User'), (5, 4, 'App\\Models\\User'), (3, 5, 'App\\Models\\User'), (2, 6, 'App\\Models\\User'), (9, 7, 'App\\Models\\User'), (7, 8, 'App\\Models\\User'), (9, 9, 'App\\Models\\User'), (7, 10, 'App\\Models\\User'), (8, 11, 'App\\Models\\User'), (2, 12, 'App\\Models\\User'); -- -------------------------------------------------------- -- -- Table structure for table `saturation_deductions` -- CREATE TABLE `saturation_deductions` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `deduction_option` int(11) NOT NULL, `title` varchar(255) NOT NULL, `type` varchar(255) DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE `settings` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(255) NOT NULL, `value` longtext DEFAULT NULL, `workspace` 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`id`, `key`, `value`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'currency_format', '1', 1, 2, NULL, NULL), (2, 'defult_currancy', 'USD', 1, 2, NULL, NULL), (3, 'defult_currancy_symbol', '$', 1, 2, NULL, NULL), (4, 'defult_language', 'en', 1, 2, NULL, NULL), (5, 'defult_timezone', 'Asia/Kolkata', 1, 2, NULL, NULL), (6, 'site_currency_symbol_position', 'pre', 1, 2, NULL, NULL), (7, 'site_date_format', 'd-m-Y', 1, 2, NULL, NULL), (8, 'site_time_format', 'g:i A', 1, 2, NULL, NULL), (9, 'title_text', 'WorkDo Dash', 1, 2, NULL, NULL), (10, 'footer_text', 'Copyright © WorkDo Dash', 1, 2, NULL, NULL), (11, 'site_rtl', 'off', 1, 2, NULL, NULL), (12, 'cust_darklayout', 'off', 1, 2, NULL, NULL), (13, 'site_transparent', 'on', 1, 2, NULL, NULL), (14, 'color', 'theme-4', 1, 2, NULL, NULL), (15, 'invoice_prefix', '#INVO', 1, 2, NULL, NULL), (16, 'invoice_starting_number', '1', 1, 2, NULL, NULL), (17, 'invoice_template', 'template1', 1, 2, NULL, NULL), (18, 'invoice_color', 'ffffff', 1, 2, NULL, NULL), (19, 'invoice_shipping_display', 'on', 1, 2, NULL, NULL), (20, 'invoice_title', '', 1, 2, NULL, NULL), (21, 'invoice_notes', '', 1, 2, NULL, NULL), (22, 'proposal_prefix', '#PROP0', 1, 2, NULL, NULL), (23, 'proposal_starting_number', '1', 1, 2, NULL, NULL), (24, 'proposal_template', 'template1', 1, 2, NULL, NULL), (25, 'proposal_color', 'ffffff', 1, 2, NULL, NULL), (26, 'proposal_shipping_display', 'on', 1, 2, NULL, NULL), (27, 'proposal_title', '', 1, 2, NULL, NULL), (28, 'proposal_notes', '', 1, 2, NULL, NULL), (29, 'email_setting', 'smtp', 1, 2, NULL, NULL), (30, 'purchase_prefix', '#PUR', 1, 2, NULL, NULL), (31, 'pos_prefix', '#POS', 1, 2, NULL, NULL), (32, 'low_product_stock_threshold', '1', 1, 2, NULL, NULL), (33, 'purchase_template', 'template1', 1, 2, NULL, NULL), (34, 'pos_template', 'template1', 1, 2, NULL, NULL), (35, 'currency_format', '2', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (36, 'defult_currancy', 'USD', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (37, 'defult_currancy_symbol', '$', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (38, 'defult_language', 'en', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (39, 'defult_timezone', 'Africa/Cairo', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (40, 'title_text', 'ERP', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (41, 'footer_text', 'Copyright © W-Manage ERP', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (42, 'landing_page', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (43, 'site_rtl', 'off', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (44, 'cust_darklayout', 'off', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (45, 'site_transparent', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (46, 'signup', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (47, 'color', 'theme-4', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (48, 'plan_package', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (49, 'custome_package', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (50, 'email_verification', 'off', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (51, 'enable_cookie', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (52, 'necessary_cookies', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (53, 'cookie_logging', 'on', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (54, 'cookie_title', 'We use cookies!', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (55, 'cookie_description', 'Hi, this website uses essential cookies to ensure its proper operation and tracking cookies to understand how you interact with it', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (56, 'strictly_cookie_title', 'Strictly necessary cookies', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (57, 'strictly_cookie_description', 'These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (58, 'more_information_description', 'For any queries in relation to our policy on cookies and your choices, please contact us', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (59, 'contactus_url', '#', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (60, 'meta_title', 'W-Manage ERP SaaS - ERP with Multi-Workspace', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (61, 'meta_keywords', 'W-Manage ERP SaaS solution,Multi-workspace functionality, Cloud-based access,Scalability,Multi-addons,Collaboration tool,Data management,Business productivity,Operational effectiveness', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (62, 'meta_description', 'Discover the efficiency of W-Manage ERP SaaS , a user-friendly web application by Rajodiya Apps. Streamline project management, organize tasks, collaborate seamlessly, and track progress effortlessly. Boost productivity with Dash\'s intuitive interface and comprehensive features. Revolutionize your project management process today. Try W-Manage ERP SaaS !', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (63, 'storage_setting', 'local', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (64, 'local_storage_max_upload_size', '204800', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (65, 'local_storage_validation', 'jpeg,jpg,png,pdf,gif,svg,json', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (66, 'email_setting', 'smtp', 0, 1, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (67, 'customer_prefix', '#CUST', 1, 2, NULL, NULL), (68, 'vendor_prefix', '#VEND', 1, 2, NULL, NULL), (69, 'bill_prefix', '#BILL', 1, 2, NULL, NULL), (70, 'bill_starting_number', '1', 1, 2, NULL, NULL), (71, 'bill_template', 'template1', 1, 2, NULL, NULL), (72, 'employee_prefix', '#EMP', 1, 2, NULL, NULL), (73, 'company_start_time', '09:00', 1, 2, NULL, NULL), (74, 'company_end_time', '18:00', 1, 2, NULL, NULL), (75, 'ip_restrict', 'off', 1, 2, NULL, NULL), (76, 'Create User', '1', 0, 1, NULL, NULL), (77, 'New Helpdesk Ticket', '0', 0, 1, NULL, NULL), (78, 'New Helpdesk Ticket Reply', '0', 0, 1, NULL, NULL), (79, 'custom_color', '#000000', 0, 1, NULL, NULL), (80, 'color_flag', 'false', 0, 1, NULL, NULL), (81, 'logo_dark', 'uploads/logo/logo_dark_1723383159.png', 0, 1, NULL, NULL), (82, 'logo_light', 'uploads/logo/logo_light_1723383159.png', 0, 1, NULL, NULL), (83, 'favicon', 'uploads/logo/favicon_1723383159.png', 0, 1, NULL, NULL), (84, 'category_wise_sidemenu', 'off', 0, 1, NULL, NULL), (85, 'custom_color', '#000000', 1, 2, NULL, NULL), (86, 'color_flag', 'false', 1, 2, NULL, NULL), (87, 'category_wise_sidemenu', 'off', 1, 2, NULL, NULL), (88, 'bank_transfer_payment_is_on', 'on', 1, 2, NULL, NULL), (89, 'bank_number', '429783329732498', 1, 2, NULL, NULL), (90, 'currency_format', '2', 2, 6, NULL, NULL), (91, 'defult_currancy', 'USD', 2, 6, NULL, NULL), (92, 'defult_currancy_symbol', '$', 2, 6, NULL, NULL), (93, 'defult_language', 'en', 2, 6, NULL, NULL), (94, 'defult_timezone', 'Africa/Cairo', 2, 6, NULL, NULL), (95, 'site_currency_symbol_position', 'pre', 2, 6, NULL, NULL), (96, 'site_date_format', 'd-m-Y', 2, 6, NULL, NULL), (97, 'site_time_format', 'g:i A', 2, 6, NULL, NULL), (98, 'title_text', 'erp', 2, 6, NULL, NULL), (99, 'footer_text', 'Copyright © erp', 2, 6, NULL, NULL), (100, 'site_rtl', 'off', 2, 6, NULL, NULL), (101, 'cust_darklayout', 'off', 2, 6, NULL, NULL), (102, 'site_transparent', 'on', 2, 6, NULL, NULL), (103, 'color', 'theme-1', 2, 6, NULL, NULL), (104, 'invoice_prefix', '#INVO', 2, 6, NULL, NULL), (105, 'invoice_starting_number', '13', 2, 6, NULL, NULL), (106, 'invoice_template', 'template2', 2, 6, NULL, NULL), (107, 'invoice_color', 'ffffff', 2, 6, NULL, NULL), (108, 'invoice_shipping_display', 'on', 2, 6, NULL, NULL), (109, 'invoice_title', '', 2, 6, NULL, NULL), (110, 'invoice_notes', '', 2, 6, NULL, NULL), (111, 'proposal_prefix', '#PROP0', 2, 6, NULL, NULL), (112, 'proposal_starting_number', '1', 2, 6, NULL, NULL), (113, 'proposal_template', 'template2', 2, 6, NULL, NULL), (114, 'proposal_color', 'ffffff', 2, 6, NULL, NULL), (115, 'proposal_shipping_display', 'on', 2, 6, NULL, NULL), (116, 'proposal_title', '', 2, 6, NULL, NULL), (117, 'proposal_notes', '', 2, 6, NULL, NULL), (118, 'email_setting', 'smtp', 2, 6, NULL, NULL), (119, 'purchase_prefix', '#PUR', 2, 6, NULL, NULL), (120, 'pos_prefix', '#POS', 2, 6, NULL, NULL), (121, 'low_product_stock_threshold', '1', 2, 6, NULL, NULL), (122, 'purchase_template', 'template1', 2, 6, NULL, NULL), (123, 'pos_template', 'template1', 2, 6, NULL, NULL), (124, 'customer_prefix', '#CUST', 2, 6, NULL, NULL), (125, 'vendor_prefix', '#VEND', 2, 6, NULL, NULL), (126, 'bill_prefix', '#BILL', 2, 6, NULL, NULL), (127, 'bill_starting_number', '1', 2, 6, NULL, NULL), (128, 'bill_template', 'template1', 2, 6, NULL, NULL), (129, 'employee_prefix', '#EMP', 2, 6, NULL, NULL), (130, 'company_start_time', '09:00', 2, 6, NULL, NULL), (131, 'company_end_time', '18:00', 2, 6, NULL, NULL), (132, 'ip_restrict', 'off', 2, 6, NULL, NULL), (133, 'decimal_separator', 'dot', 2, 6, NULL, NULL), (134, 'thousand_separator', 'comma', 2, 6, NULL, NULL), (135, 'float_number', 'comma', 2, 6, NULL, NULL), (136, 'currency_space', 'withoutspace', 2, 6, NULL, NULL), (137, 'site_currency_symbol_name', 'symbol', 2, 6, NULL, NULL), (138, 'proposal_footer_title', NULL, 2, 6, NULL, NULL), (139, 'proposal_footer_notes', NULL, 2, 6, NULL, NULL), (140, 'proposal_qr_display', 'on', 2, 6, NULL, NULL), (141, 'purchase_footer_title', NULL, 2, 6, NULL, NULL), (142, 'purchase_footer_notes', NULL, 2, 6, NULL, NULL), (143, 'purchase_shipping_display', 'on', 2, 6, NULL, NULL), (144, 'purchase_qr_display', 'on', 2, 6, NULL, NULL), (145, 'purchase_color', 'ffffff', 2, 6, NULL, NULL), (146, 'invoice_footer_title', NULL, 2, 6, NULL, NULL), (147, 'invoice_footer_notes', NULL, 2, 6, NULL, NULL), (148, 'invoice_qr_display', 'on', 2, 6, NULL, NULL), (149, 'bill_footer_title', NULL, 2, 6, NULL, NULL), (150, 'bill_footer_notes', NULL, 2, 6, NULL, NULL), (151, 'bill_shipping_display', 'on', 2, 6, NULL, NULL), (152, 'bill_qr_display', 'on', 2, 6, NULL, NULL), (153, 'bill_color', 'ffffff', 2, 6, NULL, NULL), (154, 'bank_account', '2', 2, 6, NULL, NULL), (155, 'bank_account_payment_is_on', 'on', 2, 6, NULL, NULL), (156, 'currency_format', '2', 3, 12, NULL, NULL), (157, 'defult_currancy', 'EGP', 3, 12, NULL, NULL), (158, 'defult_currancy_symbol', '£', 3, 12, NULL, NULL), (159, 'defult_language', 'en', 3, 12, NULL, NULL), (160, 'defult_timezone', 'Africa/Cairo', 3, 12, NULL, NULL), (161, 'site_currency_symbol_position', 'pre', 3, 12, NULL, NULL), (162, 'site_date_format', 'd-m-Y', 3, 12, NULL, NULL), (163, 'site_time_format', 'g:i A', 3, 12, NULL, NULL), (164, 'title_text', 'W-Manage ERP', 3, 12, NULL, NULL), (165, 'footer_text', 'Copyright © W-Manage ERP', 3, 12, NULL, NULL), (166, 'site_rtl', 'off', 3, 12, NULL, NULL), (167, 'cust_darklayout', 'off', 3, 12, NULL, NULL), (168, 'site_transparent', 'on', 3, 12, NULL, NULL), (169, 'color', 'theme-1', 3, 12, NULL, NULL), (170, 'invoice_prefix', '#INVO', 3, 12, NULL, NULL), (171, 'invoice_starting_number', '1', 3, 12, NULL, NULL), (172, 'invoice_template', 'template1', 3, 12, NULL, NULL), (173, 'invoice_color', 'ffffff', 3, 12, NULL, NULL), (174, 'invoice_shipping_display', 'on', 3, 12, NULL, NULL), (175, 'invoice_title', '', 3, 12, NULL, NULL), (176, 'invoice_notes', '', 3, 12, NULL, NULL), (177, 'proposal_prefix', '#PROP0', 3, 12, NULL, NULL), (178, 'proposal_starting_number', '1', 3, 12, NULL, NULL), (179, 'proposal_template', 'template1', 3, 12, NULL, NULL), (180, 'proposal_color', 'ffffff', 3, 12, NULL, NULL), (181, 'proposal_shipping_display', 'on', 3, 12, NULL, NULL), (182, 'proposal_title', '', 3, 12, NULL, NULL), (183, 'proposal_notes', '', 3, 12, NULL, NULL), (184, 'email_setting', 'smtp', 3, 12, NULL, NULL), (185, 'purchase_prefix', '#PUR', 3, 12, NULL, NULL), (186, 'pos_prefix', '#POS', 3, 12, NULL, NULL), (187, 'low_product_stock_threshold', '1', 3, 12, NULL, NULL), (188, 'purchase_template', 'template1', 3, 12, NULL, NULL), (189, 'pos_template', 'template1', 3, 12, NULL, NULL), (190, 'customer_prefix', '#CUST', 3, 12, NULL, NULL), (191, 'vendor_prefix', '#VEND', 3, 12, NULL, NULL), (192, 'bill_prefix', '#BILL', 3, 12, NULL, NULL), (193, 'bill_starting_number', '1', 3, 12, NULL, NULL), (194, 'bill_template', 'template1', 3, 12, NULL, NULL), (195, 'employee_prefix', '#EMP', 3, 12, NULL, NULL), (196, 'company_start_time', '09:00', 3, 12, NULL, NULL), (197, 'company_end_time', '18:00', 3, 12, NULL, NULL), (198, 'ip_restrict', 'off', 3, 12, NULL, NULL), (199, 'site_date_format', 'd-m-Y', 0, 1, NULL, NULL), (200, 'site_time_format', 'g:i A', 0, 1, NULL, NULL), (201, 'pos_footer_title', NULL, 3, 12, NULL, NULL), (202, 'pos_footer_notes', NULL, 3, 12, NULL, NULL), (203, 'pos_shipping_display', 'on', 3, 12, NULL, NULL), (204, 'pos_color', 'ffffff', 3, 12, NULL, NULL), (205, 'custom_color', '#000000', 3, 12, NULL, NULL), (206, 'color_flag', 'false', 3, 12, NULL, NULL), (207, 'category_wise_sidemenu', 'off', 3, 12, NULL, NULL), (208, 'bank_account', '4', 3, 12, NULL, NULL), (209, 'bank_account_payment_is_on', 'on', 3, 12, NULL, NULL), (210, 'decimal_separator', 'dot', 3, 12, NULL, NULL), (211, 'thousand_separator', 'dot', 3, 12, NULL, NULL), (212, 'float_number', 'comma', 3, 12, NULL, NULL), (213, 'currency_space', 'withoutspace', 3, 12, NULL, NULL), (214, 'site_currency_symbol_name', 'symbol', 3, 12, NULL, NULL), (215, 'currency_format', '2', 4, 12, NULL, NULL), (216, 'defult_currancy', 'USD', 4, 12, NULL, NULL), (217, 'defult_currancy_symbol', '$', 4, 12, NULL, NULL), (218, 'defult_language', 'en', 4, 12, NULL, NULL), (219, 'defult_timezone', 'Africa/Cairo', 4, 12, NULL, NULL), (220, 'site_currency_symbol_position', 'pre', 4, 12, NULL, NULL), (221, 'site_date_format', 'd-m-Y', 4, 12, NULL, NULL), (222, 'site_time_format', 'g:i A', 4, 12, NULL, NULL), (223, 'title_text', 'erp', 4, 12, NULL, NULL), (224, 'footer_text', 'Copyright © W-Manage ERP', 4, 12, NULL, NULL), (225, 'site_rtl', 'off', 4, 12, NULL, NULL), (226, 'cust_darklayout', 'off', 4, 12, NULL, NULL), (227, 'site_transparent', 'on', 4, 12, NULL, NULL), (228, 'color', 'theme-1', 4, 12, NULL, NULL), (229, 'invoice_prefix', '#INVO', 4, 12, NULL, NULL), (230, 'invoice_starting_number', '1', 4, 12, NULL, NULL), (231, 'invoice_template', 'template1', 4, 12, NULL, NULL), (232, 'invoice_color', 'ffffff', 4, 12, NULL, NULL), (233, 'invoice_shipping_display', 'on', 4, 12, NULL, NULL), (234, 'invoice_title', '', 4, 12, NULL, NULL), (235, 'invoice_notes', '', 4, 12, NULL, NULL), (236, 'proposal_prefix', '#PROP0', 4, 12, NULL, NULL), (237, 'proposal_starting_number', '1', 4, 12, NULL, NULL), (238, 'proposal_template', 'template1', 4, 12, NULL, NULL), (239, 'proposal_color', 'ffffff', 4, 12, NULL, NULL), (240, 'proposal_shipping_display', 'on', 4, 12, NULL, NULL), (241, 'proposal_title', '', 4, 12, NULL, NULL), (242, 'proposal_notes', '', 4, 12, NULL, NULL), (243, 'email_setting', 'smtp', 4, 12, NULL, NULL), (244, 'customer_prefix', '#CUST', 4, 12, NULL, NULL), (245, 'vendor_prefix', '#VEND', 4, 12, NULL, NULL), (246, 'bill_prefix', '#BILL', 4, 12, NULL, NULL), (247, 'bill_starting_number', '1', 4, 12, NULL, NULL), (248, 'bill_template', 'template1', 4, 12, NULL, NULL), (249, 'employee_prefix', '#EMP', 4, 12, NULL, NULL), (250, 'company_start_time', '09:00', 4, 12, NULL, NULL), (251, 'company_end_time', '18:00', 4, 12, NULL, NULL), (252, 'ip_restrict', 'off', 4, 12, NULL, NULL), (253, 'meta_image', 'uploads/meta/account_image1 copy_1750557683.jpg', 0, 1, NULL, NULL), (254, 'purchase_prefix', '#PUR', 4, 12, NULL, NULL), (255, 'pos_prefix', '#POS', 4, 12, NULL, NULL), (256, 'low_product_stock_threshold', '1', 4, 12, NULL, NULL), (257, 'purchase_template', 'template1', 4, 12, NULL, NULL), (258, 'pos_template', 'template1', 4, 12, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sources` -- CREATE TABLE `sources` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `workspace_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `stages` -- CREATE TABLE `stages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL DEFAULT '#051c4b', `complete` tinyint(1) NOT NULL, `workspace_id` bigint(20) UNSIGNED NOT NULL, `order` int(11) NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `stages` -- INSERT INTO `stages` (`id`, `name`, `color`, `complete`, `workspace_id`, `order`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Todo', '#77b6ea', 0, 1, 0, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (2, 'In Progress', '#545454', 0, 1, 1, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (3, 'Review', '#3cb8d9', 0, 1, 2, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (4, 'Done', '#37b37e', 0, 1, 3, 2, '2024-08-11 08:23:16', '2024-08-11 08:23:16'), (5, 'Todo', '#77b6ea', 0, 2, 0, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (6, 'In Progress', '#545454', 0, 2, 1, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (7, 'Review', '#3cb8d9', 0, 2, 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (8, 'Done', '#37b37e', 0, 2, 3, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (9, 'Todo', '#77b6ea', 0, 3, 0, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (10, 'In Progress', '#545454', 0, 3, 1, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (11, 'Review', '#3cb8d9', 0, 3, 2, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (12, 'Done', '#37b37e', 0, 3, 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (13, 'Todo', '#77b6ea', 0, 4, 0, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (14, 'In Progress', '#545454', 0, 4, 1, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (15, 'Review', '#3cb8d9', 0, 4, 2, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'), (16, 'Done', '#37b37e', 0, 4, 3, 12, '2025-06-03 23:43:55', '2025-06-03 23:43:55'); -- -------------------------------------------------------- -- -- Table structure for table `stock_reports` -- CREATE TABLE `stock_reports` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` int(11) NOT NULL DEFAULT 0, `quantity` int(11) NOT NULL DEFAULT 0, `type` varchar(255) NOT NULL, `type_id` int(11) NOT NULL DEFAULT 0, `description` longtext DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `stock_reports` -- INSERT INTO `stock_reports` (`id`, `product_id`, `quantity`, `type`, `type_id`, `description`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, 1, 'Pos', 1, '1 quantity sold in pos #POS00001', 1, 2, '2024-09-09 10:31:13', '2024-09-09 10:31:13'), (2, 1, 1, 'Pos', 2, '1 quantity sold in pos #POS00002', 1, 2, '2024-09-09 10:51:59', '2024-09-09 10:51:59'), (3, 1, 1, 'Pos', 3, '1 quantity sold in pos #POS00003', 1, 2, '2024-09-09 11:13:29', '2024-09-09 11:13:29'), (4, 1, 2, 'Pos', 4, '2 quantity sold in pos #POS00004', 1, 2, '2024-10-09 12:19:23', '2024-10-09 12:19:23'), (5, 2, 5, 'Purchase', 1, '5 quantity add in purchase #PUR00001', 2, 6, '2024-10-09 18:33:07', '2024-10-09 18:33:07'), (6, 3, 10, 'Purchase', 1, '10 quantity add in purchase #PUR00001', 2, 6, '2024-10-09 18:33:07', '2024-10-09 18:33:07'), (7, 3, 10, 'invoice', 1, '10 quantity sold in invoice #INVO00001', 2, 6, '2024-10-09 18:43:19', '2024-10-09 18:43:19'), (10, 2, 5, 'Pos', 5, '5 quantity sold in pos #POS00001', 2, 6, '2024-10-09 18:45:26', '2024-10-09 18:45:26'), (11, 3, 6, 'invoice', 2, '6 quantity sold in invoice #INVO00002', 2, 6, '2024-10-10 11:21:20', '2024-10-10 11:21:20'), (12, 5, 10, 'bill', 1, '10 quantity purchase in bill #BILL00001', 2, 6, '2024-10-10 11:28:39', '2024-10-10 11:28:39'), (13, 2, 50, 'Purchase', 2, '50 quantity add in purchase #PUR00002', 2, 6, '2024-10-10 12:54:15', '2024-10-10 12:54:15'), (14, 2, 10, 'bill', 2, '10 quantity purchase in bill #BILL00002', 2, 6, '2024-10-10 12:56:18', '2024-10-10 12:56:18'), (15, 3, 2, 'invoice', 3, '2 quantity sold in invoice #INVO00003', 2, 6, '2024-10-10 13:19:58', '2024-10-10 13:19:58'), (16, 3, 4, 'invoice', 4, '4 quantity sold in invoice #INVO00004', 2, 6, '2024-10-10 13:43:51', '2024-10-10 13:43:51'), (18, 2, 1000, 'invoice', 5, '1000 quantity sold in invoice #INVO00005', 2, 6, '2024-10-10 13:53:15', '2024-10-10 13:53:15'), (19, 2, 100, 'Purchase', 4, '100 quantity add in purchase #PUR00001', 2, 6, '2024-10-10 14:28:30', '2024-10-10 14:28:30'), (20, 2, 100, 'Purchase', 5, '100 quantity add in purchase #PUR00002', 2, 6, '2024-10-10 14:29:50', '2024-10-10 14:29:50'), (21, 3, 150, 'Purchase', 6, '150 quantity add in purchase #PUR00003', 2, 6, '2024-10-10 14:30:35', '2024-10-10 14:30:35'), (22, 4, 150, 'Purchase', 7, '150 quantity add in purchase #PUR00004', 2, 6, '2024-10-10 14:31:27', '2024-10-10 14:31:27'), (23, 5, 200, 'Purchase', 8, '200 quantity add in purchase #PUR00005', 2, 6, '2024-10-10 14:32:55', '2024-10-10 14:32:55'), (24, 8, 150, 'Purchase', 9, '150 quantity add in purchase #PUR00006', 2, 6, '2024-10-10 14:35:13', '2024-10-10 14:35:13'), (25, 8, 165, 'invoice', 6, '165 quantity sold in invoice #INVO00006', 2, 6, '2024-10-10 14:41:34', '2024-10-10 14:41:34'), (26, 5, 170, 'invoice', 7, '170 quantity sold in invoice #INVO00007', 2, 6, '2024-10-10 14:43:20', '2024-10-10 14:43:20'), (27, 5, 47, 'invoice', 8, '47 quantity sold in invoice #INVO00008', 2, 6, '2024-10-10 14:45:21', '2024-10-10 14:45:21'), (28, 9, 6, 'invoice', 9, '6 quantity sold in invoice #INVO00009', 2, 6, '2024-10-10 14:53:20', '2024-10-10 14:53:20'), (29, 10, 8, 'invoice', 10, '8 quantity sold in invoice #INVO00010', 2, 6, '2024-10-10 14:56:43', '2024-10-10 14:56:43'), (30, 4, 160, 'invoice', 11, '160 quantity sold in invoice #INVO00011', 2, 6, '2024-10-13 08:00:06', '2024-10-13 08:00:06'), (32, 1, 1, 'Pos', 6, '1 quantity sold in pos #POS00005', 1, 2, '2025-06-22 23:07:46', '2025-06-22 23:07:46'); -- -------------------------------------------------------- -- -- Table structure for table `sub_tasks` -- CREATE TABLE `sub_tasks` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `due_date` date NOT NULL, `task_id` int(11) NOT NULL, `user_type` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tasks` -- CREATE TABLE `tasks` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `priority` varchar(255) NOT NULL, `description` text NOT NULL, `start_date` datetime DEFAULT NULL, `due_date` datetime DEFAULT NULL, `assign_to` varchar(255) NOT NULL, `project_id` int(11) NOT NULL, `milestone_id` varchar(255) DEFAULT NULL, `status` varchar(255) NOT NULL DEFAULT 'todo', `order` int(11) NOT NULL DEFAULT 0, `workspace` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `task_files` -- CREATE TABLE `task_files` ( `id` bigint(20) UNSIGNED NOT NULL, `file` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `extension` varchar(255) DEFAULT NULL, `file_size` varchar(255) DEFAULT NULL, `task_id` int(11) NOT NULL, `user_type` varchar(255) NOT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `taxes` -- CREATE TABLE `taxes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `rate` text NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `taxes` -- INSERT INTO `taxes` (`id`, `name`, `rate`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'a', '0', 2, 1, '2024-09-09 10:27:49', '2024-09-09 10:27:49'), (2, 'tax2', '14', 2, 1, '2024-09-09 10:28:16', '2024-09-09 10:28:16'), (3, 'ضريبة القيمة المضافة', '0', 6, 2, '2024-10-09 16:44:39', '2024-10-09 16:45:23'); -- -------------------------------------------------------- -- -- Table structure for table `tax_brackets` -- CREATE TABLE `tax_brackets` ( `id` bigint(20) UNSIGNED NOT NULL, `from` double(30,2) DEFAULT NULL, `to` double(30,2) DEFAULT NULL, `fixed_amount` double(30,2) DEFAULT NULL, `percentage` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tax_rebates` -- CREATE TABLE `tax_rebates` ( `id` bigint(20) UNSIGNED NOT NULL, `description` text DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tax_thresholds` -- CREATE TABLE `tax_thresholds` ( `id` bigint(20) UNSIGNED NOT NULL, `description` text DEFAULT NULL, `amount` double(30,2) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `terminations` -- CREATE TABLE `terminations` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `notice_date` date NOT NULL, `termination_date` date NOT NULL, `termination_type` varchar(255) NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `termination_types` -- CREATE TABLE `termination_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `time_sheets` -- CREATE TABLE `time_sheets` ( `id` bigint(20) UNSIGNED NOT NULL, `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, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) DEFAULT NULL, `vendor_name` varchar(255) DEFAULT NULL, `user_type` varchar(255) NOT NULL, `account` int(11) NOT NULL, `type` varchar(255) NOT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `description` longtext DEFAULT NULL, `date` date NOT NULL, `payment_id` int(11) NOT NULL DEFAULT 0, `category` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `transactions` -- INSERT INTO `transactions` (`id`, `user_id`, `vendor_name`, `user_type`, `account`, `type`, `amount`, `description`, `date`, `payment_id`, `category`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 7, NULL, 'Vendor', 2, 'Partial', 1280.00, NULL, '2024-10-09', 1, 'Purchase', 2, 6, '2024-10-09 18:37:22', '2024-10-09 18:37:22'), (2, 7, NULL, 'Vendor', 2, 'Partial', 1280.00, NULL, '2024-10-09', 2, 'Purchase', 2, 6, '2024-10-09 18:37:22', '2024-10-09 18:37:22'), (4, 9, NULL, 'Vendor', 2, 'Partial', 10000.00, NULL, '2024-10-10', 3, 'Purchase', 2, 6, '2024-10-10 12:54:52', '2024-10-10 12:54:52'), (6, 7, NULL, 'Vendor', 2, 'Partial', 200.00, NULL, '2024-10-10', 4, 'Purchase', 2, 6, '2024-10-10 13:51:17', '2024-10-10 13:51:17'); -- -------------------------------------------------------- -- -- Table structure for table `transaction_lines` -- CREATE TABLE `transaction_lines` ( `id` bigint(20) UNSIGNED NOT NULL, `account_id` int(11) DEFAULT NULL, `reference` varchar(255) DEFAULT NULL, `reference_id` int(11) NOT NULL DEFAULT 0, `reference_sub_id` int(11) NOT NULL DEFAULT 0, `date` date NOT NULL, `credit` double(15,2) NOT NULL DEFAULT 0.00, `debit` double(15,2) NOT NULL DEFAULT 0.00, `workspace` 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transaction_orders` -- CREATE TABLE `transaction_orders` ( `id` bigint(20) UNSIGNED NOT NULL, `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, `coupon_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transfers` -- CREATE TABLE `transfers` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `branch_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `transfer_date` date NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `travels` -- CREATE TABLE `travels` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `purpose_of_visit` varchar(255) NOT NULL, `place_of_visit` varchar(255) NOT NULL, `description` longtext NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `units` -- CREATE TABLE `units` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `units` -- INSERT INTO `units` (`id`, `name`, `created_by`, `workspace_id`, `created_at`, `updated_at`) VALUES (1, 'زجاجة', 2, 1, '2024-09-09 10:23:10', '2024-09-09 10:23:10'), (2, 'Kg', 6, 2, '2024-10-09 15:27:44', '2024-10-09 18:16:36'), (3, 'Dozen', 6, 2, '2024-10-09 18:16:51', '2024-10-09 18:16:51'), (4, 'Liter', 6, 2, '2024-10-09 18:17:01', '2024-10-09 18:17:01'), (5, 'Packet', 6, 2, '2024-10-09 18:17:22', '2024-10-09 18:17:22'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `mobile_no` varchar(255) DEFAULT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `remember_token` varchar(100) DEFAULT NULL, `type` varchar(255) NOT NULL DEFAULT 'company', `active_status` tinyint(1) NOT NULL DEFAULT 0, `active_workspace` int(11) NOT NULL DEFAULT 0, `avatar` varchar(255) NOT NULL DEFAULT 'uploads/users-avatar/avatar.png', `requested_plan` int(11) NOT NULL DEFAULT 0, `dark_mode` tinyint(1) NOT NULL DEFAULT 0, `lang` varchar(191) NOT NULL DEFAULT 'en', `messenger_color` varchar(255) NOT NULL DEFAULT '#2180f3', `active_plan` int(11) NOT NULL DEFAULT 0, `active_module` longtext DEFAULT NULL, `plan_expire_date` date DEFAULT NULL, `billing_type` varchar(255) DEFAULT NULL, `total_user` int(11) NOT NULL DEFAULT -1, `seeder_run` int(11) NOT NULL DEFAULT 0, `is_enable_login` int(11) NOT NULL DEFAULT 1, `default_pipeline` varchar(255) DEFAULT NULL, `job_title` varchar(255) DEFAULT NULL, `is_disable` int(11) NOT NULL DEFAULT 1, `trial_expire_date` varchar(255) DEFAULT NULL, `is_trial_done` varchar(255) NOT NULL DEFAULT '0', `total_workspace` varchar(255) 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, `workspace_id` 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `mobile_no`, `email_verified_at`, `password`, `remember_token`, `type`, `active_status`, `active_workspace`, `avatar`, `requested_plan`, `dark_mode`, `lang`, `messenger_color`, `active_plan`, `active_module`, `plan_expire_date`, `billing_type`, `total_user`, `seeder_run`, `is_enable_login`, `default_pipeline`, `job_title`, `is_disable`, `trial_expire_date`, `is_trial_done`, `total_workspace`, `referral_code`, `used_referral_code`, `commission_amount`, `workspace_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Super Admin', 'superadmin@example.com', NULL, '2024-08-11 08:22:12', '$2y$10$HtQmCzFVn3t536dEWwnNQOVNMD8LppFbDFGzRHZxKZdoNmbCl2.M.', NULL, 'super admin', 1, 0, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 0, 0, '2024-08-11 08:22:12', '2024-08-11 08:22:12'), (2, 'ICS', 'company@example.com', NULL, '2024-08-11 08:22:12', '$2y$10$y6ySsAMH6CNh3qqrZ5RjUOsXfR.dIbYuv1QMKxWe.Hklp1oS817Kq', NULL, 'company', 1, 1, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 3, 'Account,Hrm,Lead,Paypal,Pos,Stripe,ProductService', '2026-07-26', NULL, 10, 0, 1, NULL, NULL, 1, NULL, '0', '1', 889534, 0, 0, 1, 1, '2024-08-11 08:22:12', '2025-07-26 16:14:35'), (3, 'mostafa', 'mostafa@ics.com', '12002101', '2024-08-11 02:46:29', '$2y$10$LdRv3Un7rFvpKQ4q1wauZ.onLEWrZeWsOg6rp1qWeUXg0x6Scoppq', NULL, 'client', 0, 1, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 1, 2, '2024-08-11 14:46:29', '2024-08-11 14:46:29'), (4, 'mostafa', 'mosytafa@gmail.com', '0102222224', '2024-09-09 10:30:09', '$2y$10$DEdlpfRNGvb3udAXxqeiCeDtev1a24n618wW.QoWaoYpNAN7FPp2O', NULL, 'vendor', 0, 1, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 0, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 1, 2, '2024-09-09 10:30:09', '2024-09-09 10:30:09'), (5, 'mostafa', 'mosasas@gmail.com', '0102222222', '2024-09-09 10:30:28', '$2y$10$EFQAW87mrNrtN1l9P7jvq.mY7UzMOsnL6kbFC.J.0XMz3xm/JasTK', NULL, 'client', 0, 1, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 0, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 1, 2, '2024-09-09 10:30:28', '2024-09-09 10:30:28'), (6, 'Integrated Curriculum System', 'admin@example.com', NULL, '2024-10-09 03:18:14', '$2y$10$2vxmUPc.LJWO9yjqgBTbA.9SnbT9Bq7p0eazlsm9y/VZ1Z75O63QG', NULL, 'company', 0, 2, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 3, 'Account,Hrm,Lead,Paypal,Pos,Stripe,ProductService', '2026-04-13', NULL, 10, 0, 1, NULL, NULL, 1, NULL, '0', '1', 244244, 0, 0, 2, 1, '2024-10-09 15:18:12', '2025-04-13 09:16:45'), (7, 'عطارة الحمد', 'vendor@example.com', '01143096696', '2024-10-09 03:49:48', '$2y$10$o4a0hZTsJEZUaLbW.xMhuuyiz07H8q6sbb79i4fpsZCzewgxk1U0i', NULL, 'vendor', 0, 2, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 2, 6, '2024-10-09 15:49:48', '2024-10-10 14:17:24'), (8, 'موسسة السعيد', 'customer@example.com', '01115770153', '2024-10-09 03:56:30', '$2y$10$R4Cwv3aP1CAzx2WRoTy4XO3QU01XJt8zn9L.Z9tUIpC8L8kryw.AS', NULL, 'client', 0, 2, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 2, 6, '2024-10-09 15:56:30', '2024-10-09 15:56:30'), (9, 'عطارة البدر', 'ali@example.com', '01150406051', '2024-10-09 04:07:56', '$2y$10$YPV7DTC4XikI7LS1lE8G6.Dn45OtvLY98HtKO6KbXqsh6PvbuZSie', NULL, 'vendor', 0, 2, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 2, 6, '2024-10-09 16:07:56', '2024-10-10 14:17:50'), (10, 'مطعم طازة', 'sdddr@example.com', '01140769019', '2024-10-09 04:11:34', '$2y$10$w7nW9XGOjJ3FD/JAM7s9ve0W5KbWvY.I0mMmWy030/j05GzDIEdRW', NULL, 'client', 0, 2, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 2, 6, '2024-10-09 16:11:34', '2024-10-10 14:18:32'), (11, 'Medica Plus', 'medicaplus@ics.com', '+201008796681', '2025-02-14 09:43:24', '$2y$10$WfxpE/es0z/5OMaxGE6fl.a0K9Eid.3xRMnf/Nch.5lxDTGAdRfVy', NULL, 'staff', 0, 2, 'uploads/users-avatar/avatar.png', 0, 0, 'en', '#2180f3', 0, NULL, NULL, NULL, -1, 0, 1, NULL, NULL, 1, NULL, '0', '-1', 0, 0, 0, 2, 6, '2025-02-14 21:43:24', '2025-02-14 21:43:24'), (12, 'ICS- Integrated Curriculum Systems', 'admin@ics.com', NULL, '2025-05-21 05:55:22', '$2y$10$VbYsW/LAH6tzs/27GvJkI.6HDBh3uo4t4G8fe6BzZSr2I0zjBGz3m', NULL, 'company', 0, 3, 'uploads/users-avatar/kappframework-YkSGyF(1)(1)_1747850230.png', 0, 0, 'en', '#2180f3', 3, 'Account,Hrm,Lead,Paypal,Pos,Stripe,ProductService', '2026-07-26', NULL, 10, 0, 1, NULL, NULL, 1, NULL, '0', '1', 498640, 0, 0, 3, 1, '2025-05-21 17:55:19', '2025-07-26 16:10:46'); -- -------------------------------------------------------- -- -- Table structure for table `user_active_modules` -- CREATE TABLE `user_active_modules` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `module` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `user_active_modules` -- INSERT INTO `user_active_modules` (`id`, `user_id`, `module`, `created_at`, `updated_at`) VALUES (58, 6, 'Account', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (59, 6, 'Hrm', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (60, 6, 'Lead', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (61, 6, 'Paypal', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (62, 6, 'Pos', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (63, 6, 'Stripe', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (64, 6, 'ProductService', '2025-04-13 09:16:45', '2025-04-13 09:16:45'), (89, 12, 'Account', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (90, 12, 'Hrm', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (91, 12, 'Lead', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (92, 12, 'Paypal', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (93, 12, 'Pos', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (94, 12, 'Stripe', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (95, 12, 'ProductService', '2025-07-26 16:10:46', '2025-07-26 16:10:46'), (103, 2, 'Account', '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (104, 2, 'Hrm', '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (105, 2, 'Lead', '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (106, 2, 'Paypal', '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (107, 2, 'Pos', '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (108, 2, 'Stripe', '2025-07-26 16:14:35', '2025-07-26 16:14:35'), (109, 2, 'ProductService', '2025-07-26 16:14:35', '2025-07-26 16:14:35'); -- -------------------------------------------------------- -- -- Table structure for table `user_coupons` -- CREATE TABLE `user_coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `user` int(11) NOT NULL, `coupon` int(11) NOT NULL, `order` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `user_deals` -- CREATE TABLE `user_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `user_leads` -- CREATE TABLE `user_leads` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `lead_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `user_leads` -- INSERT INTO `user_leads` (`id`, `user_id`, `lead_id`, `created_at`, `updated_at`) VALUES (1, 6, 1, '2024-11-06 18:01:09', '2024-11-06 18:01:09'), (2, 7, 1, '2024-11-06 18:01:09', '2024-11-06 18:01:09'), (3, 6, 2, '2025-02-14 21:45:09', '2025-02-14 21:45:09'), (4, 11, 2, '2025-02-14 21:45:09', '2025-02-14 21:45:09'), (5, 6, 3, '2025-02-14 21:47:37', '2025-02-14 21:47:37'), (6, 11, 3, '2025-02-14 21:47:37', '2025-02-14 21:47:37'); -- -------------------------------------------------------- -- -- Table structure for table `user_projects` -- CREATE TABLE `user_projects` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `project_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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `vender_projects` -- CREATE TABLE `vender_projects` ( `id` bigint(20) UNSIGNED NOT NULL, `vender_id` int(11) NOT NULL, `project_id` int(11) NOT NULL, `is_active` int(11) NOT NULL DEFAULT 1, `permission` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `vendors` -- CREATE TABLE `vendors` ( `id` bigint(20) UNSIGNED NOT NULL, `vendor_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `contact` varchar(255) DEFAULT NULL, `tax_number` varchar(255) DEFAULT NULL, `billing_name` varchar(255) DEFAULT NULL, `billing_country` varchar(255) DEFAULT NULL, `billing_state` varchar(255) DEFAULT NULL, `billing_city` varchar(255) DEFAULT NULL, `billing_phone` varchar(255) DEFAULT NULL, `billing_zip` varchar(255) DEFAULT NULL, `billing_address` text DEFAULT NULL, `shipping_name` varchar(255) DEFAULT NULL, `shipping_country` varchar(255) DEFAULT NULL, `shipping_state` varchar(255) DEFAULT NULL, `shipping_city` varchar(255) DEFAULT NULL, `shipping_phone` varchar(255) DEFAULT NULL, `shipping_zip` varchar(255) DEFAULT NULL, `shipping_address` text DEFAULT NULL, `lang` varchar(255) NOT NULL DEFAULT 'en', `balance` double(8,2) NOT NULL DEFAULT 0.00, `debit_note_balance` varchar(255) NOT NULL DEFAULT '0.00', `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `vendors` -- INSERT INTO `vendors` (`id`, `vendor_id`, `user_id`, `name`, `email`, `contact`, `tax_number`, `billing_name`, `billing_country`, `billing_state`, `billing_city`, `billing_phone`, `billing_zip`, `billing_address`, `shipping_name`, `shipping_country`, `shipping_state`, `shipping_city`, `shipping_phone`, `shipping_zip`, `shipping_address`, `lang`, `balance`, `debit_note_balance`, `workspace`, `created_by`, `remember_token`, `created_at`, `updated_at`) VALUES (3, 1, 7, 'عطارة الحمد', 'vendor@example.com', '01143096696', NULL, 'عطارة الحمد', 'مصر', 'الهرم', 'الجيزة', '0114396696', '1541', '15 شارع عباس ابو الحسن', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'en', 0.00, '0.00', 2, 6, NULL, '2024-10-10 14:23:55', '2024-10-10 14:23:55'), (4, 2, 9, 'عطارة البدر', 'ali@example.com', '01150406051', NULL, 'عطارة البدر', 'مصر', 'بولاق', 'بولاق', '01150406051', '5897', '45 شارع حسن محمد', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'en', 0.00, '0.00', 2, 6, NULL, '2024-10-10 14:25:03', '2024-10-10 14:25:03'); -- -------------------------------------------------------- -- -- Table structure for table `warehouses` -- CREATE TABLE `warehouses` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `address` text NOT NULL, `city` varchar(255) NOT NULL, `city_zip` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `warehouses` -- INSERT INTO `warehouses` (`id`, `name`, `address`, `city`, `city_zip`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'EG Warehouse', 'Egypt', 'Egypt', '11511', 1, 2, '2024-08-11 08:22:12', '2024-08-11 13:52:15'), (2, 'North Warehouse', '723 N. Tillamook Street Portland, OR Portland, United States', 'Portland', '97227', 2, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (3, 'North Warehouse', '723 N. Tillamook Street Portland, OR Portland, United States', 'Portland', '97227', 3, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (4, 'North Warehouse', '723 N. Tillamook Street Portland, OR Portland, United States', 'Portland', '97227', 4, 12, '2025-07-26 16:10:46', '2025-07-26 16:10:46'); -- -------------------------------------------------------- -- -- Table structure for table `warehouse_products` -- CREATE TABLE `warehouse_products` ( `id` bigint(20) UNSIGNED NOT NULL, `warehouse_id` int(11) NOT NULL DEFAULT 0, `product_id` int(11) NOT NULL DEFAULT 0, `quantity` int(11) NOT NULL DEFAULT 0, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `warehouse_products` -- INSERT INTO `warehouse_products` (`id`, `warehouse_id`, `product_id`, `quantity`, `workspace`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, 1, 994, 1, 2, '2024-09-09 10:29:20', '2025-06-22 23:07:46'), (3, 2, 3, 160, 2, 6, '2024-10-09 18:14:10', '2024-10-10 14:30:35'), (4, 2, 4, 160, 2, 6, '2024-10-09 18:18:03', '2024-10-10 14:31:27'), (5, 2, 5, 206, 2, 6, '2024-10-09 18:24:01', '2024-10-10 14:32:55'), (8, 2, 2, 135, 2, 6, '2024-10-10 14:15:38', '2024-10-10 14:29:50'), (9, 2, 8, 150, 2, 6, '2024-10-10 14:34:20', '2024-10-10 14:35:13'), (10, 2, 9, 5, 2, 6, '2024-10-10 14:51:36', '2024-10-10 14:51:36'), (11, 2, 10, 7, 2, 6, '2024-10-10 14:55:18', '2024-10-10 14:55:18'); -- -------------------------------------------------------- -- -- Table structure for table `warehouse_transfers` -- CREATE TABLE `warehouse_transfers` ( `id` bigint(20) UNSIGNED NOT NULL, `from_warehouse` int(11) NOT NULL DEFAULT 0, `to_warehouse` int(11) NOT NULL DEFAULT 0, `product_id` int(11) NOT NULL DEFAULT 0, `quantity` int(11) NOT NULL DEFAULT 0, `date` date DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `warnings` -- CREATE TABLE `warnings` ( `id` bigint(20) UNSIGNED NOT NULL, `warning_to` int(11) NOT NULL, `warning_by` int(11) NOT NULL, `subject` varchar(255) NOT NULL, `warning_date` date NOT NULL, `description` longtext NOT NULL, `created_by` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `work_spaces` -- CREATE TABLE `work_spaces` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `enable_domain` varchar(255) DEFAULT NULL, `domain_type` varchar(255) DEFAULT NULL, `domain` varchar(255) DEFAULT NULL, `subdomain` varchar(255) DEFAULT NULL, `status` varchar(255) NOT NULL DEFAULT 'active', `slug` varchar(255) DEFAULT NULL, `is_disable` int(11) NOT NULL DEFAULT 1, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `work_spaces` -- INSERT INTO `work_spaces` (`id`, `name`, `enable_domain`, `domain_type`, `domain`, `subdomain`, `status`, `slug`, `is_disable`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'ICS', 'off', NULL, NULL, NULL, 'active', 'workdo-2', 1, 2, '2024-08-11 08:22:12', '2025-06-22 03:18:52'), (2, 'ICS Group', NULL, NULL, NULL, NULL, 'active', 'ics-group', 1, 6, '2024-10-09 15:18:12', '2024-10-09 15:18:12'), (3, 'ICS', NULL, NULL, NULL, NULL, 'active', 'ics', 1, 12, '2025-05-21 17:55:19', '2025-05-21 17:55:19'), (4, 'Rab7', NULL, NULL, NULL, NULL, 'active', 'rab7', 0, 12, '2025-06-03 23:43:55', '2025-07-26 16:10:46'); -- -- Indexes for dumped tables -- -- -- Indexes for table `activity_logs` -- ALTER TABLE `activity_logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `add_ons` -- ALTER TABLE `add_ons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `allowances` -- ALTER TABLE `allowances` ADD PRIMARY KEY (`id`); -- -- Indexes for table `allowance_options` -- ALTER TABLE `allowance_options` ADD PRIMARY KEY (`id`); -- -- Indexes for table `allowance_taxs` -- ALTER TABLE `allowance_taxs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `announcements` -- ALTER TABLE `announcements` ADD PRIMARY KEY (`id`); -- -- Indexes for table `announcement_employees` -- ALTER TABLE `announcement_employees` ADD PRIMARY KEY (`id`); -- -- Indexes for table `api_key_settings` -- ALTER TABLE `api_key_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attendances` -- ALTER TABLE `attendances` ADD PRIMARY KEY (`id`); -- -- Indexes for table `awards` -- ALTER TABLE `awards` ADD PRIMARY KEY (`id`); -- -- Indexes for table `award_types` -- ALTER TABLE `award_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bank_accounts` -- ALTER TABLE `bank_accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bank_transfers` -- ALTER TABLE `bank_transfers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bank_transfer_payments` -- ALTER TABLE `bank_transfer_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bills` -- ALTER TABLE `bills` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bill_accounts` -- ALTER TABLE `bill_accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bill_attechments` -- ALTER TABLE `bill_attechments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bill_payments` -- ALTER TABLE `bill_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bill_products` -- ALTER TABLE `bill_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `branches` -- ALTER TABLE `branches` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bug_comments` -- ALTER TABLE `bug_comments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bug_files` -- ALTER TABLE `bug_files` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bug_reports` -- ALTER TABLE `bug_reports` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bug_stages` -- ALTER TABLE `bug_stages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chart_of_accounts` -- ALTER TABLE `chart_of_accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chart_of_account_parents` -- ALTER TABLE `chart_of_account_parents` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chart_of_account_sub_types` -- ALTER TABLE `chart_of_account_sub_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chart_of_account_types` -- ALTER TABLE `chart_of_account_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ch_favorites` -- ALTER TABLE `ch_favorites` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ch_messages` -- ALTER TABLE `ch_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `client_deals` -- ALTER TABLE `client_deals` ADD PRIMARY KEY (`id`), ADD KEY `client_deals_client_id_foreign` (`client_id`), ADD KEY `client_deals_deal_id_foreign` (`deal_id`); -- -- Indexes for table `client_permissions` -- ALTER TABLE `client_permissions` ADD PRIMARY KEY (`id`), ADD KEY `client_permissions_client_id_foreign` (`client_id`), ADD KEY `client_permissions_deal_id_foreign` (`deal_id`); -- -- Indexes for table `client_projects` -- ALTER TABLE `client_projects` ADD PRIMARY KEY (`id`); -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `commissions` -- ALTER TABLE `commissions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `company_contributions` -- ALTER TABLE `company_contributions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `company_policies` -- ALTER TABLE `company_policies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `complaints` -- ALTER TABLE `complaints` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `credit_notes` -- ALTER TABLE `credit_notes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customers` -- ALTER TABLE `customers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_credit_notes` -- ALTER TABLE `customer_credit_notes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_debit_notes` -- ALTER TABLE `customer_debit_notes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `custom_domain_requests` -- ALTER TABLE `custom_domain_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deals` -- ALTER TABLE `deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_activity_logs` -- ALTER TABLE `deal_activity_logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_calls` -- ALTER TABLE `deal_calls` ADD PRIMARY KEY (`id`), ADD KEY `deal_calls_deal_id_foreign` (`deal_id`); -- -- Indexes for table `deal_discussions` -- ALTER TABLE `deal_discussions` ADD PRIMARY KEY (`id`), ADD KEY `deal_discussions_deal_id_foreign` (`deal_id`); -- -- Indexes for table `deal_emails` -- ALTER TABLE `deal_emails` ADD PRIMARY KEY (`id`), ADD KEY `deal_emails_deal_id_foreign` (`deal_id`); -- -- Indexes for table `deal_files` -- ALTER TABLE `deal_files` ADD PRIMARY KEY (`id`), ADD KEY `deal_files_deal_id_foreign` (`deal_id`); -- -- Indexes for table `deal_stages` -- ALTER TABLE `deal_stages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_tasks` -- ALTER TABLE `deal_tasks` ADD PRIMARY KEY (`id`), ADD KEY `deal_tasks_deal_id_foreign` (`deal_id`); -- -- Indexes for table `debit_notes` -- ALTER TABLE `debit_notes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deduction_options` -- ALTER TABLE `deduction_options` ADD PRIMARY KEY (`id`); -- -- Indexes for table `departments` -- ALTER TABLE `departments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `designations` -- ALTER TABLE `designations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `documents` -- ALTER TABLE `documents` ADD PRIMARY KEY (`id`); -- -- Indexes for table `document_types` -- ALTER TABLE `document_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `email_templates` -- ALTER TABLE `email_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `email_template_langs` -- ALTER TABLE `email_template_langs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `employees` -- ALTER TABLE `employees` ADD PRIMARY KEY (`id`); -- -- Indexes for table `employee_documents` -- ALTER TABLE `employee_documents` ADD PRIMARY KEY (`id`); -- -- Indexes for table `events` -- ALTER TABLE `events` ADD PRIMARY KEY (`id`); -- -- Indexes for table `event_employees` -- ALTER TABLE `event_employees` ADD PRIMARY KEY (`id`); -- -- Indexes for table `experience_certificates` -- ALTER TABLE `experience_certificates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `helpdesk_conversions` -- ALTER TABLE `helpdesk_conversions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `helpdesk_tickets` -- ALTER TABLE `helpdesk_tickets` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `helpdesk_tickets_ticket_id_unique` (`ticket_id`); -- -- Indexes for table `helpdesk_ticket_categories` -- ALTER TABLE `helpdesk_ticket_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `holidays` -- ALTER TABLE `holidays` ADD PRIMARY KEY (`id`); -- -- Indexes for table `invoices` -- ALTER TABLE `invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `invoice_attechments` -- ALTER TABLE `invoice_attechments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `invoice_payments` -- ALTER TABLE `invoice_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `invoice_products` -- ALTER TABLE `invoice_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ip_restricts` -- ALTER TABLE `ip_restricts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `joining_letters` -- ALTER TABLE `joining_letters` ADD PRIMARY KEY (`id`); -- -- Indexes for table `join_us` -- ALTER TABLE `join_us` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `join_us_email_unique` (`email`); -- -- Indexes for table `labels` -- ALTER TABLE `labels` ADD PRIMARY KEY (`id`); -- -- Indexes for table `landingpage_pixels` -- ALTER TABLE `landingpage_pixels` ADD PRIMARY KEY (`id`); -- -- Indexes for table `landing_page_settings` -- ALTER TABLE `landing_page_settings` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `landing_page_settings_name_unique` (`name`); -- -- Indexes for table `languages` -- ALTER TABLE `languages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `leads` -- ALTER TABLE `leads` ADD PRIMARY KEY (`id`); -- -- Indexes for table `lead_activity_logs` -- ALTER TABLE `lead_activity_logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `lead_calls` -- ALTER TABLE `lead_calls` ADD PRIMARY KEY (`id`), ADD KEY `lead_calls_lead_id_foreign` (`lead_id`); -- -- Indexes for table `lead_discussions` -- ALTER TABLE `lead_discussions` ADD PRIMARY KEY (`id`), ADD KEY `lead_discussions_lead_id_foreign` (`lead_id`); -- -- Indexes for table `lead_emails` -- ALTER TABLE `lead_emails` ADD PRIMARY KEY (`id`), ADD KEY `lead_emails_lead_id_foreign` (`lead_id`); -- -- Indexes for table `lead_files` -- ALTER TABLE `lead_files` ADD PRIMARY KEY (`id`), ADD KEY `lead_files_lead_id_foreign` (`lead_id`); -- -- Indexes for table `lead_stages` -- ALTER TABLE `lead_stages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `lead_tasks` -- ALTER TABLE `lead_tasks` ADD PRIMARY KEY (`id`), ADD KEY `lead_tasks_lead_id_foreign` (`lead_id`); -- -- Indexes for table `leaves` -- ALTER TABLE `leaves` ADD PRIMARY KEY (`id`); -- -- Indexes for table `leave_types` -- ALTER TABLE `leave_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `loans` -- ALTER TABLE `loans` ADD PRIMARY KEY (`id`); -- -- Indexes for table `loan_options` -- ALTER TABLE `loan_options` ADD PRIMARY KEY (`id`); -- -- Indexes for table `login_details` -- ALTER TABLE `login_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `marketplace_page_settings` -- ALTER TABLE `marketplace_page_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `milestones` -- ALTER TABLE `milestones` ADD PRIMARY KEY (`id`); -- -- Indexes for table `noc_certificates` -- ALTER TABLE `noc_certificates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_template_langs` -- ALTER TABLE `notification_template_langs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `order_order_id_unique` (`order_id`); -- -- Indexes for table `other_payments` -- ALTER TABLE `other_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `overtimes` -- ALTER TABLE `overtimes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `password_reset_tokens` -- ALTER TABLE `password_reset_tokens` ADD PRIMARY KEY (`email`); -- -- Indexes for table `payments` -- ALTER TABLE `payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `payslip_types` -- ALTER TABLE `payslip_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pay_slips` -- ALTER TABLE `pay_slips` ADD PRIMARY KEY (`id`); -- -- Indexes for table `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `permissions_name_unique` (`name`); -- -- Indexes for table `permission_role` -- ALTER TABLE `permission_role` ADD PRIMARY KEY (`permission_id`,`role_id`), ADD KEY `permission_role_role_id_foreign` (`role_id`); -- -- Indexes for table `permission_user` -- ALTER TABLE `permission_user` ADD PRIMARY KEY (`user_id`,`permission_id`,`user_type`), ADD KEY `permission_user_permission_id_foreign` (`permission_id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `pipelines` -- ALTER TABLE `pipelines` ADD PRIMARY KEY (`id`); -- -- Indexes for table `plans` -- ALTER TABLE `plans` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pos` -- ALTER TABLE `pos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pos_payments` -- ALTER TABLE `pos_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pos_products` -- ALTER TABLE `pos_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products_log_times` -- ALTER TABLE `products_log_times` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_services` -- ALTER TABLE `product_services` ADD PRIMARY KEY (`id`); -- -- Indexes for table `projects` -- ALTER TABLE `projects` ADD PRIMARY KEY (`id`); -- -- Indexes for table `project_files` -- ALTER TABLE `project_files` ADD PRIMARY KEY (`id`); -- -- Indexes for table `promotions` -- ALTER TABLE `promotions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `proposals` -- ALTER TABLE `proposals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `proposal_attechments` -- ALTER TABLE `proposal_attechments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `proposal_products` -- ALTER TABLE `proposal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `purchases` -- ALTER TABLE `purchases` ADD PRIMARY KEY (`id`); -- -- Indexes for table `purchase_attachments` -- ALTER TABLE `purchase_attachments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `purchase_debit_notes` -- ALTER TABLE `purchase_debit_notes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `purchase_payments` -- ALTER TABLE `purchase_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `purchase_products` -- ALTER TABLE `purchase_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `receipts` -- ALTER TABLE `receipts` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `receipts_order_id_unique` (`order_id`), ADD UNIQUE KEY `receipts_receipt_url_unique` (`receipt_url`), ADD KEY `receipts_billable_id_billable_type_index` (`billable_id`,`billable_type`), ADD KEY `receipts_paddle_subscription_id_index` (`paddle_subscription_id`); -- -- Indexes for table `referral_settings` -- ALTER TABLE `referral_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `referral_transactions` -- ALTER TABLE `referral_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `resignations` -- ALTER TABLE `resignations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `revenues` -- ALTER TABLE `revenues` ADD PRIMARY KEY (`id`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `role_user` -- ALTER TABLE `role_user` ADD PRIMARY KEY (`user_id`,`role_id`,`user_type`), ADD KEY `role_user_role_id_foreign` (`role_id`); -- -- Indexes for table `saturation_deductions` -- ALTER TABLE `saturation_deductions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `settings` -- ALTER TABLE `settings` ADD PRIMARY KEY (`id`), ADD KEY `settings_created_by_index` (`created_by`); -- -- Indexes for table `sources` -- ALTER TABLE `sources` ADD PRIMARY KEY (`id`); -- -- Indexes for table `stages` -- ALTER TABLE `stages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `stock_reports` -- ALTER TABLE `stock_reports` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sub_tasks` -- ALTER TABLE `sub_tasks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tasks` -- ALTER TABLE `tasks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `task_files` -- ALTER TABLE `task_files` ADD PRIMARY KEY (`id`); -- -- Indexes for table `taxes` -- ALTER TABLE `taxes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tax_brackets` -- ALTER TABLE `tax_brackets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tax_rebates` -- ALTER TABLE `tax_rebates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tax_thresholds` -- ALTER TABLE `tax_thresholds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `terminations` -- ALTER TABLE `terminations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `termination_types` -- ALTER TABLE `termination_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `time_sheets` -- ALTER TABLE `time_sheets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transaction_lines` -- ALTER TABLE `transaction_lines` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transaction_orders` -- ALTER TABLE `transaction_orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transfers` -- ALTER TABLE `transfers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `travels` -- ALTER TABLE `travels` ADD PRIMARY KEY (`id`); -- -- Indexes for table `units` -- ALTER TABLE `units` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `user_active_modules` -- ALTER TABLE `user_active_modules` ADD PRIMARY KEY (`id`), ADD KEY `user_active_modules_user_id_index` (`user_id`); -- -- Indexes for table `user_coupons` -- ALTER TABLE `user_coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `user_deals` -- ALTER TABLE `user_deals` ADD PRIMARY KEY (`id`), ADD KEY `user_deals_user_id_foreign` (`user_id`), ADD KEY `user_deals_deal_id_foreign` (`deal_id`); -- -- Indexes for table `user_leads` -- ALTER TABLE `user_leads` ADD PRIMARY KEY (`id`), ADD KEY `user_leads_user_id_foreign` (`user_id`), ADD KEY `user_leads_lead_id_foreign` (`lead_id`); -- -- Indexes for table `user_projects` -- ALTER TABLE `user_projects` ADD PRIMARY KEY (`id`); -- -- Indexes for table `vender_projects` -- ALTER TABLE `vender_projects` ADD PRIMARY KEY (`id`); -- -- Indexes for table `vendors` -- ALTER TABLE `vendors` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `vendors_email_unique` (`email`); -- -- Indexes for table `warehouses` -- ALTER TABLE `warehouses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `warehouse_products` -- ALTER TABLE `warehouse_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `warehouse_transfers` -- ALTER TABLE `warehouse_transfers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `warnings` -- ALTER TABLE `warnings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `work_spaces` -- ALTER TABLE `work_spaces` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `activity_logs` -- ALTER TABLE `activity_logs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `add_ons` -- ALTER TABLE `add_ons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `allowances` -- ALTER TABLE `allowances` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `allowance_options` -- ALTER TABLE `allowance_options` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `allowance_taxs` -- ALTER TABLE `allowance_taxs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `announcements` -- ALTER TABLE `announcements` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `announcement_employees` -- ALTER TABLE `announcement_employees` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `api_key_settings` -- ALTER TABLE `api_key_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attendances` -- ALTER TABLE `attendances` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `awards` -- ALTER TABLE `awards` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `award_types` -- ALTER TABLE `award_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bank_accounts` -- ALTER TABLE `bank_accounts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `bank_transfers` -- ALTER TABLE `bank_transfers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bank_transfer_payments` -- ALTER TABLE `bank_transfer_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bills` -- ALTER TABLE `bills` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `bill_accounts` -- ALTER TABLE `bill_accounts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bill_attechments` -- ALTER TABLE `bill_attechments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bill_payments` -- ALTER TABLE `bill_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bill_products` -- ALTER TABLE `bill_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `branches` -- ALTER TABLE `branches` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bug_comments` -- ALTER TABLE `bug_comments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bug_files` -- ALTER TABLE `bug_files` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bug_reports` -- ALTER TABLE `bug_reports` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bug_stages` -- ALTER TABLE `bug_stages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `chart_of_accounts` -- ALTER TABLE `chart_of_accounts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=449; -- -- AUTO_INCREMENT for table `chart_of_account_parents` -- ALTER TABLE `chart_of_account_parents` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chart_of_account_sub_types` -- ALTER TABLE `chart_of_account_sub_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53; -- -- AUTO_INCREMENT for table `chart_of_account_types` -- ALTER TABLE `chart_of_account_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `client_deals` -- ALTER TABLE `client_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `client_permissions` -- ALTER TABLE `client_permissions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `client_projects` -- ALTER TABLE `client_projects` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `commissions` -- ALTER TABLE `commissions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `company_contributions` -- ALTER TABLE `company_contributions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `company_policies` -- ALTER TABLE `company_policies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `complaints` -- ALTER TABLE `complaints` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `credit_notes` -- ALTER TABLE `credit_notes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customers` -- ALTER TABLE `customers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `customer_credit_notes` -- ALTER TABLE `customer_credit_notes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_debit_notes` -- ALTER TABLE `customer_debit_notes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `custom_domain_requests` -- ALTER TABLE `custom_domain_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deals` -- ALTER TABLE `deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_activity_logs` -- ALTER TABLE `deal_activity_logs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_calls` -- ALTER TABLE `deal_calls` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_discussions` -- ALTER TABLE `deal_discussions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_emails` -- ALTER TABLE `deal_emails` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_files` -- ALTER TABLE `deal_files` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_stages` -- ALTER TABLE `deal_stages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `deal_tasks` -- ALTER TABLE `deal_tasks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `debit_notes` -- ALTER TABLE `debit_notes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deduction_options` -- ALTER TABLE `deduction_options` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `departments` -- ALTER TABLE `departments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `designations` -- ALTER TABLE `designations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `documents` -- ALTER TABLE `documents` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `document_types` -- ALTER TABLE `document_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `email_templates` -- ALTER TABLE `email_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; -- -- AUTO_INCREMENT for table `email_template_langs` -- ALTER TABLE `email_template_langs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=339; -- -- AUTO_INCREMENT for table `employees` -- ALTER TABLE `employees` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `employee_documents` -- ALTER TABLE `employee_documents` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `events` -- ALTER TABLE `events` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `event_employees` -- ALTER TABLE `event_employees` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `experience_certificates` -- ALTER TABLE `experience_certificates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `helpdesk_conversions` -- ALTER TABLE `helpdesk_conversions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `helpdesk_tickets` -- ALTER TABLE `helpdesk_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `helpdesk_ticket_categories` -- ALTER TABLE `helpdesk_ticket_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `holidays` -- ALTER TABLE `holidays` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoices` -- ALTER TABLE `invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `invoice_attechments` -- ALTER TABLE `invoice_attechments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoice_payments` -- ALTER TABLE `invoice_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `invoice_products` -- ALTER TABLE `invoice_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `ip_restricts` -- ALTER TABLE `ip_restricts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `joining_letters` -- ALTER TABLE `joining_letters` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53; -- -- AUTO_INCREMENT for table `join_us` -- ALTER TABLE `join_us` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `labels` -- ALTER TABLE `labels` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `landingpage_pixels` -- ALTER TABLE `landingpage_pixels` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `landing_page_settings` -- ALTER TABLE `landing_page_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56; -- -- AUTO_INCREMENT for table `languages` -- ALTER TABLE `languages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `leads` -- ALTER TABLE `leads` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `lead_activity_logs` -- ALTER TABLE `lead_activity_logs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `lead_calls` -- ALTER TABLE `lead_calls` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_discussions` -- ALTER TABLE `lead_discussions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_emails` -- ALTER TABLE `lead_emails` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_files` -- ALTER TABLE `lead_files` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_stages` -- ALTER TABLE `lead_stages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `lead_tasks` -- ALTER TABLE `lead_tasks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `leaves` -- ALTER TABLE `leaves` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `leave_types` -- ALTER TABLE `leave_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loans` -- ALTER TABLE `loans` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loan_options` -- ALTER TABLE `loan_options` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `login_details` -- ALTER TABLE `login_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60; -- -- AUTO_INCREMENT for table `marketplace_page_settings` -- ALTER TABLE `marketplace_page_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=162; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=215; -- -- AUTO_INCREMENT for table `milestones` -- ALTER TABLE `milestones` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `noc_certificates` -- ALTER TABLE `noc_certificates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- AUTO_INCREMENT for table `notification_template_langs` -- ALTER TABLE `notification_template_langs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `other_payments` -- ALTER TABLE `other_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `overtimes` -- ALTER TABLE `overtimes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payments` -- ALTER TABLE `payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payslip_types` -- ALTER TABLE `payslip_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pay_slips` -- ALTER TABLE `pay_slips` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=502; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pipelines` -- ALTER TABLE `pipelines` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `plans` -- ALTER TABLE `plans` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `pos` -- ALTER TABLE `pos` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `pos_payments` -- ALTER TABLE `pos_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `pos_products` -- ALTER TABLE `pos_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `products_log_times` -- ALTER TABLE `products_log_times` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_services` -- ALTER TABLE `product_services` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `projects` -- ALTER TABLE `projects` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `project_files` -- ALTER TABLE `project_files` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `promotions` -- ALTER TABLE `promotions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `proposals` -- ALTER TABLE `proposals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `proposal_attechments` -- ALTER TABLE `proposal_attechments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `proposal_products` -- ALTER TABLE `proposal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `purchases` -- ALTER TABLE `purchases` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `purchase_attachments` -- ALTER TABLE `purchase_attachments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `purchase_debit_notes` -- ALTER TABLE `purchase_debit_notes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `purchase_payments` -- ALTER TABLE `purchase_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `purchase_products` -- ALTER TABLE `purchase_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `receipts` -- ALTER TABLE `receipts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `referral_settings` -- ALTER TABLE `referral_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `referral_transactions` -- ALTER TABLE `referral_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `resignations` -- ALTER TABLE `resignations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `revenues` -- ALTER TABLE `revenues` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `saturation_deductions` -- ALTER TABLE `saturation_deductions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `settings` -- ALTER TABLE `settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=259; -- -- AUTO_INCREMENT for table `sources` -- ALTER TABLE `sources` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `stages` -- ALTER TABLE `stages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `stock_reports` -- ALTER TABLE `stock_reports` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33; -- -- AUTO_INCREMENT for table `sub_tasks` -- ALTER TABLE `sub_tasks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tasks` -- ALTER TABLE `tasks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `task_files` -- ALTER TABLE `task_files` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `taxes` -- ALTER TABLE `taxes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tax_brackets` -- ALTER TABLE `tax_brackets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tax_rebates` -- ALTER TABLE `tax_rebates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tax_thresholds` -- ALTER TABLE `tax_thresholds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `terminations` -- ALTER TABLE `terminations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `termination_types` -- ALTER TABLE `termination_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `time_sheets` -- ALTER TABLE `time_sheets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `transaction_lines` -- ALTER TABLE `transaction_lines` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `transaction_orders` -- ALTER TABLE `transaction_orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transfers` -- ALTER TABLE `transfers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `travels` -- ALTER TABLE `travels` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `units` -- ALTER TABLE `units` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `user_active_modules` -- ALTER TABLE `user_active_modules` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=110; -- -- AUTO_INCREMENT for table `user_coupons` -- ALTER TABLE `user_coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user_deals` -- ALTER TABLE `user_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user_leads` -- ALTER TABLE `user_leads` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `user_projects` -- ALTER TABLE `user_projects` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vender_projects` -- ALTER TABLE `vender_projects` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vendors` -- ALTER TABLE `vendors` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `warehouses` -- ALTER TABLE `warehouses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `warehouse_products` -- ALTER TABLE `warehouse_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `warehouse_transfers` -- ALTER TABLE `warehouse_transfers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `warnings` -- ALTER TABLE `warnings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `work_spaces` -- ALTER TABLE `work_spaces` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Constraints for dumped tables -- -- -- Constraints for table `client_deals` -- ALTER TABLE `client_deals` ADD CONSTRAINT `client_deals_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `client_deals_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `client_permissions` -- ALTER TABLE `client_permissions` ADD CONSTRAINT `client_permissions_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `client_permissions_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `deal_calls` -- ALTER TABLE `deal_calls` ADD CONSTRAINT `deal_calls_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `deal_discussions` -- ALTER TABLE `deal_discussions` ADD CONSTRAINT `deal_discussions_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `deal_emails` -- ALTER TABLE `deal_emails` ADD CONSTRAINT `deal_emails_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `deal_files` -- ALTER TABLE `deal_files` ADD CONSTRAINT `deal_files_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `deal_tasks` -- ALTER TABLE `deal_tasks` ADD CONSTRAINT `deal_tasks_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE; -- -- Constraints for table `lead_calls` -- ALTER TABLE `lead_calls` ADD CONSTRAINT `lead_calls_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; -- -- Constraints for table `lead_discussions` -- ALTER TABLE `lead_discussions` ADD CONSTRAINT `lead_discussions_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; -- -- Constraints for table `lead_emails` -- ALTER TABLE `lead_emails` ADD CONSTRAINT `lead_emails_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; -- -- Constraints for table `lead_files` -- ALTER TABLE `lead_files` ADD CONSTRAINT `lead_files_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; -- -- Constraints for table `lead_tasks` -- ALTER TABLE `lead_tasks` ADD CONSTRAINT `lead_tasks_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE; -- -- Constraints for table `permission_role` -- ALTER TABLE `permission_role` ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `permission_user` -- ALTER TABLE `permission_user` ADD CONSTRAINT `permission_user_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `role_user` -- ALTER TABLE `role_user` ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_deals` -- ALTER TABLE `user_deals` ADD CONSTRAINT `user_deals_deal_id_foreign` FOREIGN KEY (`deal_id`) REFERENCES `deals` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `user_deals_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `user_leads` -- ALTER TABLE `user_leads` ADD CONSTRAINT `user_leads_lead_id_foreign` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `user_leads_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; COMMIT; /*!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 */;