ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

64 lines
2.2 KiB

  1. 1 rem This is Master3 The Accounts Payable/Vendor Menu
  2. %INCLUDE ALL.BAS
  3. 1025 PRINT clear$:PRINT
  4. 1030 PRINT "*** PURCHASE ORDER ENTRY / VENDOR PAYABLES MENU ***":PRINT
  5. 2000 PRINT "1 - ENTER NEW VENDOR INFORMATION"
  6. 2005 PRINT
  7. 2010 PRINT "2 - ENTER PURCHASE ORDERS"
  8. 2015 PRINT
  9. 2020 PRINT "3 - LIST PURCHASE ORDERS"
  10. 2025 PRINT
  11. 2030 PRINT "4 - PRINT PLAIN PAPER (FORMATTED) PURCHASE ORDERS"
  12. 2035 PRINT
  13. 2040 PRINT "5 - PRINT PRE-PRINTED PURCHASE ORDERS"
  14. 2045 PRINT
  15. 2050 PRINT "6 - POST PURCHASE ORDERS TO GENERAL LEDGER"
  16. 2055 PRINT
  17. 2060 PRINT "7 - PRINT AGED ACCOUNTS PAYABLE REPORT"
  18. 2065 PRINT
  19. 2070 PRINT "8 - PRINT VENDOR LABELS"
  20. 2075 PRINT
  21. 2080 PRINT "9 - FINISHED"
  22. 3000 PRINT
  23. 3010 INPUT Z
  24. 3020 IF Z<1 OR Z>9 THEN 1025
  25. 4000 ON Z GOTO 9000,9050,9100,9150,9200,9250,9300,9350,9400
  26. 9000 print clear$:print
  27. print "Install appropriate Vendor Information disk in Drive B:"
  28. print:Input "Type return to continue.";line temp$:initialize
  29. chain "VPENTRY"
  30. 9050 print clear$:print
  31. print "Install appropriate Pur Order Register disk in Drive B:"
  32. print "This file should be on a separate disk from the Vendor"
  33. print "Information disk."
  34. print:Input "Type return to continue.";line temp$:initialize
  35. chain "VPJOTRAN"
  36. 9100 print clear$:print
  37. print "Install appropriate Vendor Information disk in Drive B:"
  38. print:Input "Type return to continue.";line temp$:initialize
  39. chain "VPJOLIST"
  40. 9150 print clear$:print
  41. print "Install appropriate Vendor Information disk in Drive B:"
  42. print:Input "Type return to continue.";line temp$:initialize
  43. chain "VPFMPO"
  44. 9200 print clear$:print
  45. print "Install appropriate Vendor Information disk in Drive B:"
  46. print:Input "Type return to continue.";line temp$:initialize
  47. chain "VPPPPO"
  48. 9250 CHAIN "VPJOPOST"
  49. 9300 print clear$:print
  50. print "Install appropriate Vendor Information disk in Drive B:"
  51. print:Input "Type return to continue.";line temp$:initialize
  52. chain "VPRPT"
  53. 9350 print clear$:print
  54. print "Install appropriate Vendor Information disk in Drive B:"
  55. print:Input "Type return to continue.";line temp$:initialize
  56. chain "VPLABELS"
  57. 9400 print clear$:print:print "Replace disk #5 in drive A."
  58. print "Type return to continue."
  59. input line temp$
  60. initialize
  61. chain "bizmii"
  62. 9800 GOTO 1025