Server IP : 150.95.80.236 / Your IP : 3.129.70.213 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/plugins/formvalidation/dist/amd/validators/vat/ |
Upload File : |
define(["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function gbVat(value) { var v = value; if (/^GB[0-9]{9}$/.test(v) || /^GB[0-9]{12}$/.test(v) || /^GBGD[0-9]{3}$/.test(v) || /^GBHA[0-9]{3}$/.test(v) || /^GB(GD|HA)8888[0-9]{5}$/.test(v)) { v = v.substr(2); } if (!/^[0-9]{9}$/.test(v) && !/^[0-9]{12}$/.test(v) && !/^GD[0-9]{3}$/.test(v) && !/^HA[0-9]{3}$/.test(v) && !/^(GD|HA)8888[0-9]{5}$/.test(v)) { return { meta: {}, valid: false, }; } var length = v.length; if (length === 5) { var firstTwo = v.substr(0, 2); var lastThree = parseInt(v.substr(2), 10); return { meta: {}, valid: ('GD' === firstTwo && lastThree < 500) || ('HA' === firstTwo && lastThree >= 500), }; } else if (length === 11 && ('GD8888' === v.substr(0, 6) || 'HA8888' === v.substr(0, 6))) { if (('GD' === v.substr(0, 2) && parseInt(v.substr(6, 3), 10) >= 500) || ('HA' === v.substr(0, 2) && parseInt(v.substr(6, 3), 10) < 500)) { return { meta: {}, valid: false, }; } return { meta: {}, valid: parseInt(v.substr(6, 3), 10) % 97 === parseInt(v.substr(9, 2), 10), }; } else if (length === 9 || length === 12) { var weight = [8, 7, 6, 5, 4, 3, 2, 10, 1]; var sum = 0; for (var i = 0; i < 9; i++) { sum += parseInt(v.charAt(i), 10) * weight[i]; } sum = sum % 97; var isValid = parseInt(v.substr(0, 3), 10) >= 100 ? sum === 0 || sum === 42 || sum === 55 : sum === 0; return { meta: {}, valid: isValid, }; } return { meta: {}, valid: true, }; } exports.default = gbVat; });