humanware

Excise Renew

Jul 28th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>अन्त: शुल्क इजाजत तथा नवीकरण दस्तुर गणना</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <style>
  7. p, h1, h2, h3, h4, h5, h6, ul, li, div, span, address, footer, header, table, tr, td, tbody, thead, input, label {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. body {
  12. background-color:skyblue;
  13. }
  14. #container {
  15. width: 900px;
  16. height: auto;
  17. padding: 20px;
  18. margin: auto;
  19. margin-top: 100px;
  20. background-color: white;
  21. border-radius: 10px;
  22. box-shadow: 0px 0px 10px 1px #ccc;
  23. }
  24. .header {
  25. background-color: #f5f5f5;
  26. padding:5px;
  27. margin-bottom: 10px;
  28. }
  29. .header h3 {
  30. text-align: center;
  31. font-size: 25px;
  32. font-family: arial;
  33. }
  34. .userinput {
  35. background-color:#D5FFD7;
  36. padding:10px;
  37. line-height:30px;
  38. }
  39. input, select {
  40. width: 200px;
  41. margin-right: 20px;
  42. padding: 3px;
  43. }
  44. .label {
  45. width: 300px;
  46. }
  47. .result {
  48. padding: 10px;
  49. line-height: 30px;
  50. background-color: #FFE9E8;
  51. margin-top: 20px;
  52. }
  53. </style>
  54. <script type='text/javascript'>
  55. function utpadankarobar_showhide() {
  56. var utpadanshow = document.getElementById("utpadan");
  57. var bikribitaranshow = document.getElementById("bikribitaran");
  58. utpadankarobar.style.display = utpadanshow.checked ? "table-row" : "none";
  59. bikribitaranrow.style.display = bikribitaranshow.checked ? "table-row" : "none";
  60.  
  61. }
  62.  
  63. function hotelkisim_showhide() {
  64. var bikribitarankisim = document.getElementById("bikribitarankisim");
  65. var hotelkisim = document.getElementById("hotelkisim");
  66. var madirabikretakisim = document.getElementById("madirabikretakisim");
  67. var churotkhainikisim = document.getElementById("churotkhainikisim");
  68. hotelkisim.style.display = bikribitarankisim.value == "hotelshow" ? "block" : "none";
  69. madirabikretakisim.style.display = bikribitarankisim.value == "madirabikretashow" ? "block" : "none";
  70. churotkhainikisim.style.display = bikribitarankisim.value == "churotkhainishow" ? "block" : "none";
  71. }
  72.  
  73. function startCalc(){
  74. interval = setInterval("calc()",1);
  75. }
  76.  
  77. function calc(){
  78. //From User Input
  79. var excise_fy = document.getElementById("excise_fy").value;
  80. var excise_month = 4;
  81. var exciserenew_year = document.getElementById("exciserenew_year").value;
  82. var exciserenew_month = document.getElementById("exciserenew_month").value;
  83. var utpadankarobar = document.getElementById("utpadankarobar").value;
  84. var hotelkisim = document.getElementById("hotelkisim").value;
  85. var madirabikretakisim = document.getElementById("madirabikretakisim").value;
  86. var churotkhainikisim = document.getElementById("churotkhainikisim").value;
  87. var renewrate = 0;
  88.  
  89. if (utpadankarobar == "utpadan1" && excise_fy <= 0) {
  90. renewrate = 0;
  91. } else if (utpadankarobar == "utpadan1" && excise_fy <= 2069) {
  92. renewrate = 80000;
  93. } else if (utpadankarobar == "utpadan1" && excise_fy >= 2070) {
  94. renewrate = 160000;
  95. } else if (utpadankarobar == "utpadan2" && excise_fy <= 0) {
  96. renewrate = 0;
  97. } else if (utpadankarobar == "utpadan2" && excise_fy <= 2069) {
  98. renewrate = 80000;
  99. } else if (utpadankarobar == "utpadan2" && excise_fy >= 2070) {
  100. renewrate = 160000;
  101. } else if (utpadankarobar == "utpadan3" && excise_fy <= 0) {
  102. renewrate = 0;
  103. } else if (utpadankarobar == "utpadan3" && excise_fy <= 2069) {
  104. renewrate = 80000;
  105. } else if (utpadankarobar == "utpadan3" && excise_fy >= 2070) {
  106. renewrate = 160000;
  107. } else if (utpadankarobar == "utpadan4" && excise_fy <= 0) {
  108. renewrate = 0;
  109. } else if (utpadankarobar == "utpadan4" && excise_fy <= 2069) {
  110. renewrate = 40000;
  111. } else if (utpadankarobar == "utpadan4" && excise_fy >= 2070) {
  112. renewrate = 80000;
  113. } else if (utpadankarobar == "utpadan5" && excise_fy <= 0) {
  114. renewrate = 0;
  115. } else if (utpadankarobar == "utpadan5" && excise_fy <= 2069) {
  116. renewrate = 80000;
  117. } else if (utpadankarobar == "utpadan5" && excise_fy >= 2070) {
  118. renewrate = 160000;
  119. } else if (utpadankarobar == "utpadan6" && excise_fy <= 0) {
  120. renewrate = 0;
  121. } else if (utpadankarobar == "utpadan6" && excise_fy <= 2069) {
  122. renewrate = 100000;
  123. } else if (utpadankarobar == "utpadan6" && excise_fy >= 2070) {
  124. renewrate = 200000;
  125. } else if (utpadankarobar == "utpadan7" && excise_fy <= 0) {
  126. renewrate = 0;
  127. } else if (utpadankarobar == "utpadan7" && excise_fy <= 2069) {
  128. renewrate = 25000;
  129. } else if (utpadankarobar == "utpadan7" && excise_fy <= 2071) {
  130. renewrate = 40000;
  131. } else if (utpadankarobar == "utpadan7" && excise_fy >= 2072) {
  132. renewrate = 100000;
  133. } else if (hotelkisim == "hotelkisim1" && excise_fy <= 0) {
  134. renewrate = 0;
  135. } else if (hotelkisim == "hotelkisim1" && excise_fy <= 2069) {
  136. renewrate = 30000;
  137. } else if (hotelkisim == "hotelkisim1" && excise_fy >= 2070) {
  138. renewrate = 50000;
  139. } else if (hotelkisim == "hotelkisim2" && excise_fy <= 0) {
  140. renewrate = 0;
  141. } else if (hotelkisim == "hotelkisim2" && excise_fy <= 2069) {
  142. renewrate = 25000;
  143. } else if (hotelkisim == "hotelkisim2" && excise_fy >= 2070) {
  144. renewrate = 40000;
  145. } else if (hotelkisim == "hotelkisim3" && excise_fy <= 0) {
  146. renewrate = 0;
  147. } else if (hotelkisim == "hotelkisim3" && excise_fy <= 2069) {
  148. renewrate = 18000;
  149. } else if (hotelkisim == "hotelkisim3" && excise_fy >= 2070) {
  150. renewrate = 30000;
  151. } else if (hotelkisim == "hotelkisim4" && excise_fy <= 0) {
  152. renewrate = 0;
  153. } else if (hotelkisim == "hotelkisim4" && excise_fy <= 2069) {
  154. renewrate = 12500;
  155. } else if (hotelkisim == "hotelkisim4" && excise_fy >= 2070) {
  156. renewrate = 20000;
  157. } else if (hotelkisim == "hotelkisim5" && excise_fy <= 0) {
  158. renewrate = 0;
  159. } else if (hotelkisim == "hotelkisim5" && excise_fy <= 2069) {
  160. renewrate = 7000;
  161. } else if (hotelkisim == "hotelkisim5" && excise_fy >= 2070) {
  162. renewrate = 10000;
  163. } else if (hotelkisim == "hotelkisim6" && excise_fy <= 0) {
  164. renewrate = 0;
  165. } else if (hotelkisim == "hotelkisim6" && excise_fy <= 2069) {
  166. renewrate = 5000;
  167. } else if (hotelkisim == "hotelkisim6" && excise_fy >= 2070) {
  168. renewrate = 7000;
  169. } else if (hotelkisim == "hotelkisim7" && excise_fy <= 0) {
  170. renewrate = 0;
  171. } else if (hotelkisim == "hotelkisim7" && excise_fy <= 2069) {
  172. renewrate = 3000;
  173. } else if (hotelkisim == "hotelkisim7" && excise_fy >= 2070) {
  174. renewrate = 3000;
  175. } else if (madirabikretakisim == "madirabikretakisim1" && excise_fy <= 0) {
  176. renewrate = 0;
  177. } else if (madirabikretakisim == "madirabikretakisim1" && excise_fy <= 2069) {
  178. renewrate = 20000;
  179. } else if (madirabikretakisim == "madirabikretakisim1" && excise_fy >= 2070) {
  180. renewrate = 30000;
  181. } else if (madirabikretakisim == "madirabikretakisim2" && excise_fy <= 0) {
  182. renewrate = 0;
  183. } else if (madirabikretakisim == "madirabikretakisim2" && excise_fy <= 2069) {
  184. renewrate = 12000;
  185. } else if (madirabikretakisim == "madirabikretakisim2" && excise_fy >= 2070) {
  186. renewrate = 20000;
  187. } else if (madirabikretakisim == "madirabikretakisim3" && excise_fy <= 0) {
  188. renewrate = 0;
  189. } else if (madirabikretakisim == "madirabikretakisim3" && excise_fy <= 2069) {
  190. renewrate = 8000;
  191. } else if (madirabikretakisim == "madirabikretakisim3" && excise_fy >= 2070) {
  192. renewrate = 10000;
  193. } else if (madirabikretakisim == "madirabikretakisim4" && excise_fy <= 0) {
  194. renewrate = 0;
  195. } else if (madirabikretakisim == "madirabikretakisim4" && excise_fy <= 2069) {
  196. renewrate = 2000;
  197. } else if (madirabikretakisim == "madirabikretakisim4" && excise_fy >= 2070) {
  198. renewrate = 3000;
  199. } else if (madirabikretakisim == "madirabikretakisim5" && excise_fy <= 0) {
  200. renewrate = 0;
  201. } else if (madirabikretakisim == "madirabikretakisim5" && excise_fy <= 2069) {
  202. renewrate = 6000;
  203. } else if (madirabikretakisim == "madirabikretakisim5" && excise_fy >= 2070) {
  204. renewrate = 7000;
  205. } else if (madirabikretakisim == "madirabikretakisim6" && excise_fy <= 0) {
  206. renewrate = 0;
  207. } else if (madirabikretakisim == "madirabikretakisim6" && excise_fy <= 2069) {
  208. renewrate = 10000;
  209. } else if (madirabikretakisim == "madirabikretakisim6" && excise_fy >= 2070) {
  210. renewrate = 20000;
  211. } else if (madirabikretakisim == "madirabikretakisim7" && excise_fy <= 0) {
  212. renewrate = 0;
  213. } else if (madirabikretakisim == "madirabikretakisim7" && excise_fy <= 2069) {
  214. renewrate = 20000;
  215. } else if (madirabikretakisim == "madirabikretakisim7" && excise_fy >= 2070) {
  216. renewrate = 40000;
  217. } else if (madirabikretakisim == "madirabikretakisim8" && excise_fy <= 0) {
  218. renewrate = 0;
  219. } else if (madirabikretakisim == "madirabikretakisim8" && excise_fy <= 2069) {
  220. renewrate = 3500;
  221. } else if (madirabikretakisim == "madirabikretakisim8" && excise_fy >= 2070) {
  222. renewrate = 5000;
  223. } else if (churotkhainikisim == "churotkhainikisim1" && excise_fy <= 0) {
  224. renewrate = 0;
  225. } else if (churotkhainikisim == "churotkhainikisim1" && excise_fy <= 2069) {
  226. renewrate = 10000;
  227. } else if (churotkhainikisim == "churotkhainikisim1" && excise_fy >= 2070) {
  228. renewrate = 40000;
  229. } else if (churotkhainikisim == "churotkhainikisim2" && excise_fy <= 0) {
  230. renewrate = 0;
  231. } else if (churotkhainikisim == "churotkhainikisim2" && excise_fy <= 2069) {
  232. renewrate = 10000;
  233. } else if (churotkhainikisim == "churotkhainikisim2" && excise_fy >= 2070) {
  234. renewrate = 40000;
  235. } else if (churotkhainikisim == "churotkhainikisim3" && excise_fy <= 0) {
  236. renewrate = 0;
  237. } else if (churotkhainikisim == "churotkhainikisim3" && excise_fy <= 2069) {
  238. renewrate = 5000;
  239. } else if (churotkhainikisim == "churotkhainikisim3" && excise_fy >= 2070) {
  240. renewrate = 6000;
  241. } else if (churotkhainikisim == "churotkhainikisim4" && excise_fy <= 0) {
  242. renewrate = 0;
  243. } else if (churotkhainikisim == "churotkhainikisim4" && excise_fy <= 2069) {
  244. renewrate = 1500;
  245. } else if (churotkhainikisim == "churotkhainikisim4" && excise_fy >= 2070) {
  246. renewrate = 1500;
  247. } else if (churotkhainikisim == "churotkhainikisim5" && excise_fy <= 0) {
  248. renewrate = 0;
  249. } else if (churotkhainikisim == "churotkhainikisim5" && excise_fy <= 2069) {
  250. renewrate = 8000;
  251. } else if (churotkhainikisim == "churotkhainikisim5" && excise_fy >= 2070) {
  252. renewrate = 15000;
  253. } else if (churotkhainikisim == "churotkhainikisim6" && excise_fy <= 0) {
  254. renewrate = 0;
  255. } else if (churotkhainikisim == "churotkhainikisim6" && excise_fy <= 2069) {
  256. renewrate = 3500;
  257. } else if (churotkhainikisim == "churotkhainikisim6" && excise_fy >= 2070) {
  258. renewrate = 5000;
  259. } else if (churotkhainikisim == "churotkhainikisim7" && excise_fy <= 0) {
  260. renewrate = 0;
  261. } else if (churotkhainikisim == "churotkhainikisim7" && excise_fy <= 2069) {
  262. renewrate = 0;
  263. } else if (churotkhainikisim == "churotkhainikisim7" && excise_fy >= 2070) {
  264. renewrate = 5000;
  265. } else if (churotkhainikisim == "churotkhainikisim8" && excise_fy <= 0) {
  266. renewrate = 0;
  267. } else if (churotkhainikisim == "churotkhainikisim8" && excise_fy <= 2069) {
  268. renewrate = 0;
  269. } else if (churotkhainikisim == "churotkhainikisim8" && excise_fy >= 2070) {
  270. renewrate = 10000;
  271. } else if (churotkhainikisim == "churotkhainikisim9" && excise_fy <= 0) {
  272. renewrate = 0;
  273. } else if (churotkhainikisim == "churotkhainikisim9" && excise_fy <= 2069) {
  274. renewrate = 15000;
  275. } else if (churotkhainikisim == "churotkhainikisim9" && excise_fy >= 2070) {
  276. renewrate = 20000;
  277. } else if (churotkhainikisim == "churotkhainikisim10" && excise_fy <= 0) {
  278. renewrate = 0;
  279. } else if (churotkhainikisim == "churotkhainikisim10" && excise_fy <= 2069) {
  280. renewrate = 30000;
  281. } else if (churotkhainikisim == "churotkhainikisim10" && excise_fy >= 2070) {
  282. renewrate = 40000;
  283. }
  284.  
  285. //var karobarsthan = document.getElementById("karobarsthan").value;
  286. //var bikrikarobar = document.getElementById("bikrikarobar").value;
  287. var jammabarsa = exciserenew_year - excise_fy;
  288. var jammamonth = exciserenew_month - excise_month;
  289. var totalmonth = (jammabarsa * 12) + jammamonth;
  290.  
  291. var dhilabujhaeko_shulka = 0;
  292.  
  293. if (totalmonth <= 0) {
  294. dhilabujhaeko_shulka = 0;
  295. } else if (totalmonth <= 3) {
  296. dhilabujhaeko_shulka = renewrate * 0.25;
  297. } else if (totalmonth <= 6) {
  298. dhilabujhaeko_shulka = renewrate * 0.5;
  299. } else if (totalmonth <= 9) {
  300. dhilabujhaeko_shulka = renewrate * 0.75;
  301. } else if (totalmonth > 9) {
  302. dhilabujhaeko_shulka = renewrate;
  303. }
  304.  
  305. renewrate = Math.round(renewrate);
  306. dhilabujhaeko_shulka = Math.round(dhilabujhaeko_shulka);
  307. if (renewrate < 0) {
  308. renewrate = 0;
  309. }
  310. if (dhilabujhaeko_shulka < 0) {
  311. dhilabujhaeko_shulka = 0;
  312. }
  313.  
  314.  
  315. //Result
  316. document.getElementById("bujhaunuparne_kar").value = parseFloat(renewrate);
  317. document.getElementById("bujhaeko_shulka").value = parseFloat(dhilabujhaeko_shulka);
  318. var jamma_kar = parseFloat(document.getElementById("bujhaunuparne_kar").value) + parseFloat(document.getElementById("bujhaeko_shulka").value);
  319. if (jamma_kar < 0) {
  320. jamma_kar = 0;
  321. }
  322. document.getElementById("jamma_kar").value = parseFloat(jamma_kar);
  323. }
  324.  
  325. function reset_result() {
  326. document.getElementById("utpadankarobar").value = 0;
  327. document.getElementById("hotelkisim").value = 0;
  328. document.getElementById("madirabikretakisim").value = 0;
  329. document.getElementById("churotkhainikisim").value = 0;
  330. }
  331.  
  332. function stopCalc(){
  333. clearInterval(interval);
  334. }
  335. </script>
  336. </head>
  337. <body>
  338. <div id="container">
  339. <div class="header">
  340. <h3>अन्त: शुल्क इजाजत तथा नवीकरण दस्तुर गणना</h3>
  341. </div>
  342. <div class="userinput">
  343. <table id="calculator">
  344. <thead></thead>
  345. <tbody>
  346. <tr>
  347. <td class="label">आर्थिक वर्ष</td>
  348. <td><select id="excise_fy" name="excise_fy" onFocus="startCalc();" onBlur="stopCalc();" required>
  349. <option value="0" selected="selected">आ.व. छान्नुहोस्</option>
  350. <option value="2068">आ.व. २०६८/०६९</option>
  351. <option value="2069">आ.व. २०६९/७०</option>
  352. <option value="2070">आ.व. २०७०/०७१</option>
  353. <option value="2071">आ.व. २०७१/०७२</option>
  354. <option value="2072">आ.व. २०७२/०७३</option>
  355. <option value="2073">आ.व. २०७३/०७४</option>
  356. <option value="2074">आ.व. २०७४/०७५</option>
  357. <option value="2075">आ.व. २०७५/०७६</option>
  358. </select>
  359. </td>
  360. <td></td>
  361. </tr>
  362. <tr>
  363. <td class="label">नवीकरण गर्ने वर्ष र महिना</td>
  364. <td>
  365. <select id="exciserenew_year" name="exciserenew_year" onFocus="startCalc();" onBlur="stopCalc();" required>
  366. <option value="0" selected="selected">वर्ष छान्नुहोस्</option>
  367. <option value="2073">२०७३</option>
  368. <option value="2074">२०७४</option>
  369. <option value="2075">२०७५</option>
  370. <option value="2076">२०७६</option>
  371. </select>
  372. </td>
  373. <td>
  374. <select id="exciserenew_month" name="exciserenew_month" onFocus="startCalc();" onBlur="stopCalc();">
  375. <option value="0" selected="selected">महिना छान्नुहोस्</option>
  376. <option value="1">बैशाख</option>
  377. <option value="2">जेष्ठ</option>
  378. <option value="3">आषाढ</option>
  379. <option value="4">श्रावण</option>
  380. <option value="5">भाद्र</option>
  381. <option value="6">आश्विन</option>
  382. <option value="7">कार्तिक</option>
  383. <option value="8">मंग्सिर</option>
  384. <option value="9">पौष</option>
  385. <option value="10">माघ</option>
  386. <option value="11">फाल्गुण</option>
  387. <option value="12">चैत्र</option>
  388. </select>
  389. </td>
  390. </tr>
  391. <tr>
  392. <td class="label">कारोबारको किसिम</td>
  393. <td>
  394. <input style="width: auto; margin-right: 2px;" type="radio" id="utpadan" name="karobarkisim" value="utpadan" onclick="utpadankarobar_showhide(); reset_result();" onFocus="startCalc();" onBlur="stopCalc();" /> उत्पादन &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  395. <input style="width: auto; margin-right: 2px;" type="radio" id="bikribitaran" name="karobarkisim" value="bikribitaran" onclick="utpadankarobar_showhide(); reset_result();" onFocus="startCalc();" onBlur="stopCalc();" /> बिक्रि / वितरण
  396. </td>
  397. <td>
  398. <select style="display: none;" id="utpadankarobar" name="utpadankarobar" onFocus="startCalc();" onBlur="stopCalc();">
  399. <option value="0" selected="selected">उत्पादन किसिम छान्नुहोस्</option>
  400. <option value="utpadan1">स्प्रिट उत्पादन गर्ने</option>
  401. <option value="utpadan2">वियर उत्पादन गर्ने</option>
  402. <option value="utpadan3">इथानोल उत्पादन गर्ने</option>
  403. <option value="utpadan4">वाइन / ब्रान्डी (फलफूलमा आधारित) बनाउने</option>
  404. <option value="utpadan5">अन्य मदिरा उत्पादन</option>
  405. <option value="utpadan6">चुरोट उत्पादन गर्ने</option>
  406. <option value="utpadan7">पान मसला, खैनी, जर्दा, नश, सुर्ती तथा सुर्तीजन्य वस्तु उत्पादन गर्ने</option>
  407. </select>
  408. </td>
  409. </tr>
  410. <tr style="display: none;" id="bikribitaranrow">
  411. <td class="label">विक्री वितिरणको प्रकार छान्नुहोस्</td>
  412. <td>
  413. <select id="bikribitarankisim" name="bikribitarankisim" onclick="reset_result();" onchange="hotelkisim_showhide()" onFocus="startCalc();" onBlur="stopCalc();">
  414. <option value="0" selected="selected">बिक्रि वितरणको प्रकार छान्नुहोस्</option>
  415. <option value="hotelshow">होटल, रेस्टुरेन्ट तथा लजहरु</option>
  416. <option value="madirabikretashow">मदिरा बिक्रेता</option>
  417. <option value="churotkhainishow">चुरोट, सिगार, सुर्ती, खैनी, पानमसला</option>
  418. </select>
  419. </td>
  420. <td>
  421. <select style="display: none;" id="hotelkisim" name="hotelkisim" onFocus="startCalc();" onBlur="stopCalc();">
  422. <option value="0" selected="selected">होटेलको किसिम छान्नुहोस्</option>
  423. <option value="hotelkisim1">पाँचतारे होटेल</option>
  424. <option value="hotelkisim2">चारतारे होटेल</option>
  425. <option value="hotelkisim3">तीनतारे होटेल</option>
  426. <option value="hotelkisim4">दुइतारे होटेल</option>
  427. <option value="hotelkisim5">एकतारे होटेल</option>
  428. <option value="hotelkisim6">स्वदेसी तथा बिदेशी मदिरा बोतल खोलि बिक्रि गर्ने</option>
  429. <option value="hotelkisim7">स्वदेसी मदिरा बोतल खोलि बिक्रि वितरण गर्ने</option>
  430. </select>
  431. <select style="display: none;" id="madirabikretakisim" name="madirabikretakisim" onFocus="startCalc();" onBlur="stopCalc();">
  432. <option value="0" selected="selected">मदिरा बिक्रेताको किसिम छान्नुहोस्</option>
  433. <option value="madirabikretakisim1">मदिरा वितरक</option>
  434. <option value="madirabikretakisim2">थोक बिक्रेता</option>
  435. <option value="madirabikretakisim3">स्वदेसी तथा बिदेसी मदिराको खुद्र बिक्रेता</option>
  436. <option value="madirabikretakisim4">स्वदेसी मदिरा मात्र खुद्र बिक्रेता (गा.वि.स.)</option>
  437. <option value="madirabikretakisim5">स्वदेसी मदिरा मात्र खुद्र बिक्रेता (न.पा. / उप.म.न.पा. / म.न.पा.)</option>
  438. <option value="madirabikretakisim6">डिपार्टमेन्टल स्टोर</option>
  439. <option value="madirabikretakisim7">बिदेसी मदिरा र स्प्रिट पैठारीकर्ता</option>
  440. <option value="madirabikretakisim8">मदिरा निकासीकर्ता</option>
  441. </select>
  442. <select style="display: none;" id="churotkhainikisim" name="churotkhainikisim" onFocus="startCalc();" onBlur="stopCalc();">
  443. <option value="0" selected="selected">चुरोट, खैनी र अन्यको किसिम छान्नुहोस्</option>
  444. <option value="churotkhainikisim1">बिदेसी चुरोट र सिगार</option>
  445. <option value="churotkhainikisim2">सुर्ती र सुर्तीजन्य बस्तु पैठारी गर्ने</option>
  446. <option value="churotkhainikisim3">थोक बिक्रि</option>
  447. <option value="churotkhainikisim4">खुद्र खरिद बिक्रि</option>
  448. <option value="churotkhainikisim5">बिदेशी खुदो र गुड पैठारी गर्ने</option>
  449. <option value="churotkhainikisim6">खुदो, गुड र स्प्रिट खरिद बिक्रि (निकासी सहित)</option>
  450. <option value="churotkhainikisim7">नेपाल बाहिर चुरोट र अन्य सुर्तीजन्य बस्तुहरु निकासीकर्ता</option>
  451. <option value="churotkhainikisim8">अन्त: शुल्क लाग्ने बस्तुहरु पैठारी गर्ने</option>
  452. <option value="churotkhainikisim9">सक्खर (गुण), कालो सक्खर र सकट उत्पादन गर्ने (भर्टिकल रोलर प्रयोग गर्ने उद्योग)</option>
  453. <option value="churotkhainikisim10">सक्खर (गुण), कालो सक्खर र सकट उत्पादन गर्ने (होरिजेन्टल रोलर प्रयोग गर्ने उद्योग)</option>
  454. </select>
  455. </td>
  456. </tr>
  457. <!--<tr>
  458. <td class="label">कारोबार रहेको स्थान छान्नुहोस्</td>
  459. <td><select id="karobarsthan" name="karobarsthan" onFocus="startCalc();" onBlur="stopCalc();">
  460. <option value="0" selected="selected">स्थान छान्नुहोस्</option>
  461. <option value="1500">गा.वि.स.</option>
  462. <option value="2500">नगरपालिका</option>
  463. <option value="3500">उप महानगरपालिका</option>
  464. <option value="5000">महा नगरपालिका</option>
  465. </select>
  466. </td>
  467. </tr> -->
  468. <!--<tr>
  469. <td class="label">विक्री कारोबार र अन्य आय (रु.)</td>
  470. <td><input style="width: 190px;" type="number" id="bikrikarobar" name="bikrikarobar" onFocus="startCalc();" onBlur="stopCalc();" />
  471. </td>
  472. </tr> -->
  473. </tbody>
  474. </table>
  475. </div>
  476. <div class="result">
  477. <table>
  478. <tr>
  479. <td class="label">इजाजतपत्र तथा नविकरण दस्तुर</td>
  480. <td><input type="text" id="bujhaunuparne_kar" name="bujhaunuparne_kar" onFocus="startCalc();" onBlur="stopCalc();" /></td>
  481. </tr>
  482. <tr>
  483. <td class="label">नविकरण ढिला गरेको जरिवाना</td>
  484. <td><input type="text" id="bujhaeko_shulka" name="bujhaeko_shulka" onFocus="startCalc();" onBlur="stopCalc();" /></td>
  485. </tr>
  486. <!-- <tr>
  487. <td class="label">कर ढिला बुझाएको ब्याज</td>
  488. <td><input type="text" id="dhila_byaj" name="dhila_byaj" onFocus="startCalc();" onBlur="stopCalc();" /></td>
  489. </tr> -->
  490. <tr>
  491. <td class="label">जम्मा बुझाउनुपर्ने अन्त:शुल्क रकम</td>
  492. <td><input type="number" id="jamma_kar" name="jamma_kar" onFocus="startCalc();" onBlur="stopCalc();" /></td>
  493. </tr>
  494. </table>
  495. </div>
  496. </div>
  497. </body>
  498. </html>
Advertisement
Add Comment
Please, Sign In to add comment