out to out

transport

  1. // ==UserScript==
  2. // @name out to out
  3. // @namespace suvidha
  4. // @description transport
  5. // @include https://www.biharcommercialtax.gov.in/bweb/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. if(document.getElementById('strTrckOwnrName')){
  10. var mn = prompt("मालिक का नाम","");
  11. document.getElementById('strTrckOwnrName').value=mn;
  12. var mp = prompt("मालिक का पता","");
  13. document.getElementById('strTrckOwnrAddress').value=mp;
  14. document.getElementById('strTrckOwnrSTNo').value="2354323";
  15. document.getElementById('strTrckOwnrPanNo').value="AAAAA2222A";
  16. document.getElementById('strTrckOwnrEmail').value="AAAA@AA.AA";
  17. document.getElementById('strTrckOwnrPhoneNo').value="9498979973";
  18. var vn = prompt("गाड़ी नंबर","");
  19. document.getElementById('strVehicleNo').value=vn;
  20. var ve = prompt("इंजन नंबर","");
  21. document.getElementById('vehicleEngNo').value=ve;
  22. var vci = prompt("चेचिस नंबर","");
  23. document.getElementById('vehicleChasesNo').value=vci;
  24. var dr = prompt("ड्राईवर का नाम","");
  25. document.getElementById('strDrvrName').value=dr;
  26. var dln = prompt("ड्राईवर लाइसेंस नंबर","");
  27. document.getElementById('strLicNo').value=dln;
  28. var dph = prompt("ड्राईवर फोन नंबर","");
  29. document.getElementById('drvPhoneNo').value=dph;
  30. var cen = prompt("प्राप्त करने वाले का नाम","");
  31. document.getElementById('consigneeName').value=cen;
  32. var cea = prompt("प्राप्त करने वाले का पता","");
  33. document.getElementById('consigneeAddress').value=cea;
  34. var cev = prompt("प्राप्त करने वाले का वैट नंबर","");
  35. document.getElementById('consigneeVAT').value=cev;
  36. document.getElementById('consigneeCST').value="NILL";
  37. document.getElementById('consigneePhoneNo').value=" 9955221144";
  38. var pd = prompt("माल आने का स्थान ","");
  39. document.getElementById('strPlaceDispatch').value=pd;
  40. var sn = prompt("भेजने वाले का नाम","");
  41. document.getElementById('strName').value=sn;
  42. var sea = prompt("भेजने वाले का पता","");
  43. document.getElementById('strAddress').value=sea;
  44. var sev = prompt("भेजने वाले का वैट नंबर","");
  45. document.getElementById('strVATTIN').value=sev;
  46. document.getElementById('strCSTTIN').value="NILL";
  47. document.getElementById('strPhoneNo').value=" 9411562356";
  48. var dc = prompt("माल जाने का स्थान ","");
  49. document.getElementById('strDestination').value=dc;
  50. }