home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a031 / samples.exe / INVOICES.PRG < prev    next >
Encoding:
Text File  |  1992-03-10  |  11.9 KB  |  397 lines

  1. ******************************************************************************
  2. * PROGRAM NAME: INVOICES.PRG
  3. *               SAMPLE CUSTOM REPORT - INVOICES
  4. *               GENERATES INVOICES & UPDATES ACCT_REC.DBF
  5. *               SAMPLE BUSINESS APPLICATION
  6. * LAST CHANGED: 09/25/89 09:26AM
  7. * WRITTEN BY:   Borland International Inc.
  8. ******************************************************************************
  9. *              Logic and some variable names modeled after reports generator
  10. ******************************************************************************
  11. *
  12. SET PROCEDURE TO Library
  13. SET COLOR TO &c_normal.
  14. CLEAR
  15. inv_month = 0
  16. ll_ans = NodShake(" ;                        INVOICE PRINTING ; ;" + ;
  17.                   " ************************************************************** ;" + ;
  18.                   "  This will process and alter current data in: Acct_rec,Orders ; ;" + ;
  19.                   "            Are you sure you want to print invoices?", ;
  20.                     6, 6, 7, 65, .T. )
  21. answer = IIF( ll_ans, "Y", "N" )
  22.  
  23. IF answer = "N"
  24.    RETURN TO Business
  25. ELSE
  26.    ?? CHR(7)
  27.    inv_month = MONTH(DATE())-1
  28.    @ 10, 8 CLEAR TO 14,72
  29.    @ 12,12 SAY "What month do want to process orders for (01-12)?" ;
  30.       GET inv_month PICTURE "99" RANGE 1,12
  31.    READ
  32. ENDIF
  33.  
  34. * Open database files and choose active indexes
  35. SELECT 1
  36. USE Orders   ORDER Order
  37. USE Cust     ORDER Cust_id IN 2
  38. USE Acct_rec ORDER Cust_id IN 3
  39. USE Goods    ORDER part_id IN 4
  40.  
  41. * Relate database files and activate the relation
  42. SET RELATION TO cust_id INTO Cust, cust_id INTO Acct_rec, part_id INTO Goods
  43. GO TOP
  44.  
  45. * Error message window
  46. DEFINE WINDOW err_wndo FROM 16,3 TO 23,60 COLOR &c_pop.
  47.  
  48. * If user presses Esc during printing, exit
  49. ON ESCAPE DO Stop_rpt
  50.  
  51. * Process errors
  52. ON ERROR DO Err_msg
  53.  
  54. * Set up environment
  55. SET SPACE OFF
  56. _plineno  =  0
  57. _peject   = "NONE"
  58. _pageno   = 1
  59.  
  60. * Initialize variables
  61. continu_on  = .T.               && Continue printing flag - set by Esc to .F.
  62. complete = .F.
  63. on_pg_line = 0                  && Line at which ON PAGE works
  64. STORE 0  TO amt_of_bil, amt_of_cur, inv_amount, oldbalance
  65. STORE 0  TO inv_count, ord_count, grand_tot, tot_price
  66. STORE "" TO invoice_no, mcust_id, today, this_year, this_month
  67. today      = DTOC(DATE())
  68. this_year  = RIGHT(today,2)
  69. this_month = LEFT(today,2)
  70.  
  71. * Calculate line no. to break page on
  72. on_pg_line = INT(_plength - 6)  && Height minus footer and margin
  73.  
  74. * Set up line number where page break procedure executes
  75. ON PAGE AT LINE on_pg_line DO Page_brk
  76.  
  77. SET CONSOLE off
  78. SET PRINTER on
  79. *================================ Begin Print Job ============================
  80. PRINTJOB
  81.    * ======= File loop - process records in index order to end of file =======
  82.    *                     or until user presses Esc (continu_on = .F.)
  83.    * Process all uninvoiced records for a particular customer
  84.    SCAN FOR .NOT. invoiced .AND. inv_month = MONTH(date_trans) ;
  85.         WHILE continu_on
  86.       mcust_id = cust_id
  87.       DO Pg_head      && Print standard page heading
  88.       DO Inv_head     && Print invoice heading
  89.       complete = .F.  && Flag customer's invoices not completely processed
  90.       * Print orders for this customer
  91.       SCAN FOR .NOT. invoiced .AND. inv_month = MONTH(date_trans) ;
  92.            WHILE cust_id = mcust_id .AND. continu_on
  93.          DO Detail
  94.       ENDSCAN
  95.       complete = .T.  && Flag customer's invoices are completely processed
  96.       SKIP -1         && Return to last record for customer
  97.       DO Inv_calc     && Print invoice total for last customer
  98.       EJECT PAGE      && Print invoice footer - Inv_foot called by ON PAGE
  99.       DO Updat_ar     && Update Acct_rec database file with processed data
  100.       DO Reinit       && Re-initialize summary variables
  101.    ENDSCAN
  102.    IF continu_on
  103.       * End of file - User did not press Esc to stop printing
  104.       message = "Invoices were completely processed and printed for month " ;
  105.                 + STR(inv_month,2)
  106.    ELSE
  107.       * Not EOF - User pressed Esc to stop printing
  108.       message = "Invoices were NOT COMPLETED - stopped by user at " + TIME()
  109.    ENDIF
  110.    DO Rpt_end WITH message
  111.    ON PAGE
  112. ENDPRINTJOB
  113. *============================= End Print Job =================================
  114. EJECT PAGE
  115. ON PAGE
  116. SET CONSOLE on
  117. SET PRINTER off
  118. CLEAR
  119. ll_ans = NodShake(" ;                        ARCHIVE ORDERS   ; ;" + ;
  120.                   " ************************************************************** ;" + ;
  121.                   " (Copy processed orders to archive file and delete from Orders); ;" + ;
  122.                   "        Do you want to archive the processed orders?", ;
  123.                     6, 6, 7, 65, .F. )
  124. answer = IIF( ll_ans, "Y", "N" )
  125. IF answer = "Y"
  126.    ?? CHR(7)
  127.    @ 10,12 SAY "COPYING processed orders...please wait                 "
  128.    @ 12,10 SAY SPACE(61)
  129.    @ 13,10 SAY SPACE(63)
  130.  
  131.    CLOSE DATABASES
  132.    * Create an archive database file for processed orders.
  133.    * Records will be copied to it, then erased from Orders.
  134.    IF .NOT. FILE("Archiv_o.dbf")
  135.       USE Orders
  136.       COPY STRUCTURE TO Archiv_o
  137.    ENDIF
  138.    USE Archiv_o
  139.  
  140.    APPEND FROM Orders FOR invoiced
  141.  
  142.    *-- Remove the archived records from Orders
  143.    USE Orders
  144.    SET TALK on
  145.    DELETE ALL FOR invoiced
  146.    @ 10,10 SAY "ERASING processed orders...please wait               "
  147.    PACK
  148.    SET TALK off
  149. ELSE
  150.    ?? CHR(7)
  151.    DO Err_Box WITH "Processed orders will not be erased"
  152. ENDIF
  153. ON ESCAPE
  154. ON ERROR
  155. CLOSE ALL
  156. SET PROCEDURE TO
  157. RETURN TO Business
  158. ********************* END OF MAIN REPORT PROCEDURE ***************************
  159.  
  160. * UTILITY PROCEDURES
  161.  
  162. PROCEDURE Detail
  163.    * Print report detail
  164.    ?? date_trans       AT 0,
  165.    ?? part_id          AT 10,
  166.    ?? Goods->part_name AT 21,
  167.    ?? part_qty         AT 53 PICTURE "999",
  168.    ?? Goods->price     AT 58 PICTURE "99,999.99",
  169.    * Extend price
  170.    tot_price  = ROUND(part_qty * Goods->price,2)
  171.    ?? tot_price        AT 70 PICTURE "99,999.99"
  172.    ?
  173.    * Accumulate total amount of current invoice
  174.    amt_of_cur = amt_of_cur + tot_price
  175.    * Accumulate number of orders processed
  176.    ord_count  = ord_count + 1
  177.    * Update the posted flag "invoiced" to .T. in Orders dbf for this order
  178.    REPLACE invoiced WITH .T.
  179. RETURN
  180.  
  181. PROCEDURE Err_msg
  182.    * Error messages
  183.    SET PRINTER off
  184.    SET CONSOLE on
  185.    ACTIVATE WINDOW err_wndo
  186.       CLEAR
  187.       ? "--------------------- ERROR WARNING --------------------"
  188.       IF .NOT. PRINTSTATUS()
  189.          * Printer caused error
  190.          msg = "Printer error - fix paper or select ONLINE button"
  191.       ELSE
  192.          * Unknown cause of error - show system message
  193.          msg = MESSAGE()
  194.       ENDIF
  195.       ? " Error Number ", LTRIM(STR(ERROR(),4))
  196.       ? " " + msg
  197.       WAIT " Press spacebar to continue..."
  198.    DEACTIVATE WINDOW err_wndo
  199.    SET CONSOLE off
  200.    SET PRINTER on
  201. RETURN
  202.  
  203. PROCEDURE Inv_calc
  204.    * Print calculated summary data on details at cust_id break
  205.    amt_of_bil = amt_of_cur + oldbalance
  206.    ?? "----------" AT 69
  207.    ?
  208.    ?? "CURRENT ORDERS" AT 0,
  209.    ?? "$" AT 66,
  210.    ?? amt_of_cur PICTURE "999,999.99" AT 69
  211.    ?
  212.    IF oldbalance <> 0
  213.       ?? "----------" AT 69
  214.       ? "+ OLD BALANCE"
  215.       ?? oldbalance PICTURE "999,999.99" AT 69,
  216.       ?
  217.    ENDIF
  218.    ?? "==========" AT 69
  219.    ?
  220.    ?? "TOTAL AMOUNT DUE" STYLE "B" AT 0,
  221.    ?? "$" STYLE "B" AT 66,
  222.    ?? amt_of_bil PICTURE "999,999.99" STYLE "B" AT 69
  223.    ?
  224.    ?? "==========" AT 69
  225.    * Accumulate total billings for end of report
  226.    grand_tot = grand_tot + amt_of_bil
  227.    ?
  228.    ?
  229. RETURN
  230.  
  231. PROCEDURE Inv_foot
  232.    * Print invoice page footer
  233.    ?
  234.    ? "TERMS: " AT 27,Cust->terms
  235.    ?
  236.    ? Acct_rec->notes  AT 18
  237.    * Start new page
  238.    EJECT PAGE
  239. RETURN
  240.  
  241. PROCEDURE Inv_head
  242.    * Encode new unique invoice number
  243.    invoice_no = cust_id + this_year + this_month
  244.    * Increment invoice count
  245.    inv_count  = inv_count + 1
  246.    ?
  247.    ?? "INVOICE NO.: " STYLE "B" AT 0,
  248.    ?? invoice_no STYLE "B" FUNCTION "T" PICTURE "XXXXXXXXXX" ,
  249.    ?? DATE() AT 69
  250.    ?
  251.    ?
  252.    ?? "CUSTOMER NO.: " AT 0,
  253.    ?? cust_id FUNCTION "T" PICTURE "XXXXXX"
  254.    ?
  255.    ?
  256.    ?? Cust->customer AT 0
  257.    ?
  258.    ?? Cust->address1 AT 0, Cust->address2 AT LEN(TRIM(Cust->address1))+2
  259.    ?
  260.    ?? Cust->city PICTURE "@T XXXXXXXXXXXXXXXXXXXX" AT 0,
  261.    ?? ", ",
  262.    ?? Cust->state," ",
  263.    ?? Cust->zip
  264.    ?
  265.    ?? "ATTENTION: " AT 0 ,
  266.    ?? Cust->contact PICTURE "@T XXXXXXXXXXXXXXXXXXXX","  ",
  267.    ?? Cust->phone_cont
  268.    ?
  269.    ?  REPLICATE(CHR(205),80)        && Draw double line 80 characters wide
  270.    ?
  271.    ?
  272.    ?? "PREVIOUS ACTIVITY:" STYLE "BU" AT 0
  273.    ?
  274.    ?? "INVOICE NO.:" AT 4, Acct_rec->invoic_old AT 15
  275.    ?? "SENT:" AT 31, Acct_rec->dat_lstbil AT 37
  276.    ?
  277.    ?? "AMOUNT  $ " AT 4, Acct_rec->amt_lstbil PICTURE "999,999.99" AT 15
  278.    ?
  279.    ?? "PAID    $ " AT 4, Acct_rec->amt_lst_pd PICTURE "999,999.99" AT 15
  280.    ?
  281.    ?? "----------" AT 15
  282.    ?
  283.    ?? "BALANCE $ " AT 4
  284.    oldbalance = Acct_rec->oldbalance
  285.    ?? oldbalance PICTURE "999,999.99" AT 15
  286.    ?
  287.    ?
  288.    ?? "CURRENT ACTIVITY:" STYLE "BU" AT 0
  289.    ?  REPLICATE(CHR(196),80)        && Draw single line 80 characters wide
  290.    ?  "Ordered"    AT 0
  291.    ?? "Part no."   AT 10
  292.    ?? "Part name"  AT 21
  293.    ?? "Qty"        AT 53
  294.    ?? "Price"      AT 59
  295.    ?? "Total"      AT 74
  296.    ?  REPLICATE(CHR(196),80)        && Draw single line 80 characters wide
  297.    ?
  298. RETURN
  299.  
  300. PROCEDURE Page_brk
  301.    * Page break logic - occurs when report detail line = on_pg_line
  302.    DO Inv_foot
  303.    * Print heading if customer's invoices were not completed on prior page
  304.    IF .NOT. EOF() .AND. .NOT. complete
  305.       DO Pg_head
  306.    ENDIF
  307. RETURN
  308.  
  309. PROCEDURE Pg_head
  310.    * Print information at top of each invoice page
  311.    ?
  312.    ?  "Page " ,
  313.    ?? _pageno PICTURE "999"
  314.    ?
  315.    ?
  316.    ?  "A-T  FURNITURE INDUSTRIES" STYLE "B"   AT 27
  317.    ?
  318.    DEFINE BOX FROM 34 TO 45 HEIGHT 3 SINGLE
  319.    ?
  320.    ?? "INVOICE" STYLE "B" AT 36
  321.    ?
  322.    ?
  323.    ?  REPLICATE(CHR(205),80)        && Draw double line 80 characters wide
  324.    ?
  325. RETURN
  326.  
  327. PROCEDURE Reinit
  328.    * Re-initialize summary/calculation variables at customer breaks
  329.    STORE 0 TO amt_of_cur, inv_amount
  330.    _pageno = 1
  331. RETURN
  332.  
  333. PROCEDURE Rpt_end
  334.    PARAMETERS message
  335.    * Print end-of-report summary data
  336.    ?
  337.    ?
  338.    ?  "A-T  FURNITURE INDUSTRIES" STYLE "BU"   AT 27
  339.    ?
  340.    ?
  341.    ?  "INVOICE SUMMARY PAGE" STYLE "B" AT 30
  342.    ?
  343.    inv_date = CTOD(STR(inv_month,2)+RIGHT(DTOC(DATE()),6))
  344.    ?  "FOR MONTH of " AT 31, CMONTH(inv_date)
  345.    ?
  346.    ?
  347.    ?
  348.    ?  REPLICATE(CHR(205),80)        && Draw double line 80 characters wide
  349.    ?  DATE() AT 0 ,
  350.    ?? TIME() AT 69
  351.    ?  REPLICATE(CHR(205),80)        && Draw double line 80 characters wide
  352.    ?
  353.    ?
  354.    ?
  355.    ?
  356.    ?? "===========" AT 67,
  357.    ?
  358.    ?? "GRAND TOTAL for " AT 0,
  359.    ?? inv_count PICTURE "999",
  360.    ?? " invoices " AT 21,
  361.    ?? "and ", ord_count PICTURE "9,999",
  362.    ?? " orders:",
  363.    ?? "$" AT 66,
  364.    ?? grand_tot PICTURE "999,999.99" ,
  365.    ?
  366.    ?? "===========" AT 67
  367.    ?
  368.    ?
  369.    ?
  370.    ?  message AT 6
  371.    ?
  372. RETURN
  373.  
  374. PROCEDURE Stop_rpt
  375.    continu_on = .F.   && Set stop printing flag to .F. when user presses Esc
  376. RETURN
  377.  
  378. PROCEDURE Updat_ar
  379.    * Update the related Acct_rec database record for this customer with data
  380.    * processed/calculated during invoicing and prior data
  381.    SELECT Acct_rec
  382.    IF Orders->cust_id <> cust_id
  383.       * If customer has never been invoiced, create an AR record for customer
  384.       APPEND BLANK
  385.       REPLACE cust_id WITH Orders->cust_id
  386.    ENDIF
  387.    REPLACE invoic_old WITH invoice_no, dat_lstbil WITH dat_of_bil, ;
  388.            amt_lst_pd WITH amt_cur_pd, amt_lstbil WITH amt_of_cur, ;
  389.            oldbalance WITH amt_lstbil - amt_lst_pd, comments WITH "", ;
  390.            notes WITH "", invoice_no WITH m->invoice_no, ;
  391.            dat_of_bil WITH DATE(), amt_of_cur WITH m->amt_of_cur, ;
  392.            amt_of_bil WITH m->amt_of_bil
  393.    SELECT Orders
  394. RETURN
  395.  
  396. ****************************************** END OF INVOICES.PRG ***************
  397.