PSEUDO CODE - Just need a general idea
Our department is in need of a report containing the invoices that have not been paid for the current period. With pseudo code, write a program that has the needed functionalities. Assume that the files given to you are two indexed files, which have the following information:
File 1: Contains customer information, such as Account number, Name, Business address, remaining balance.
File 2: Invoice information, such as Account number, Invoice number, inv. date, inv total, payment total and payment date.
The Output should be printed to a new file.
It is better to have a sorted file 2 to easily access invoices for a current period after getting to the start date in that file and then accessing simultaneous records in that file up till the end data.
Hence, if File 2 is not sorted, then sort File 2 first according to inv. date
Design code to get the input of the period for which the report has to be generated through either command line arguments or by normal input as per the programming language chosen.
Then iterate to the record in file2 from which the current period starts.
And for every record, find the value of inv total - payment total.
If it is greater than 0, add corresponding columns of the record(according to your requirement for the report into a list)
Do the above process for all the records in that file until the end period reaches.
If you want the customer information also to be printed in the report, then for every row in the list, get the customer information using account number and finding that customer information from file1 and store into the list.
Finally, output the stored list into a new file created earlier or create program in such a way that it generates filename according to the program running time so that a new file with report generated date and time will be generated whenever you run the program and it will be easier to access the report at a later time.
PSEUDO CODE - Just need a general idea Our department is in need of a report...
I need help with this code. I'm using C++ and Myprogramming lab to execute it. 11.7: Customer Accounts Write a program that uses a structure to store the following data about a customer account: Customer name Customer address City State ZIP code Telephone Account balance Date of last payment The program should use an array of at least 20 structures. It should let the user enter data into the array, change the contents of any element, and display all the...
Programming Assignment 1 Structures, arrays of structures, functions, header files, multiple code files Program description: Read and process a file containing customer purchase data for books. The books available for purchase will be read from a separate data file. Process the customer sales and produce a report of the sales and the remaining book inventory. You are to read a data file (customerList.txt, provided) containing customer book purchasing data. Create a structure to contain the information. The structure will contain...
The One Stop Fabric Shop sells 80 yards bolt of fabric for $100 each. Your job is to write a program that provides an invoice to a customer that will also include information on anything that might be back ordered. The program should have a function that asks for the following data: Customer information (include name, mailing address and phone number) The number of bolts ordered. The number of bolts in stock. Whether there are special shipping and handling charges....
is this being purchased for Zappo from cog hill?
would this be a debit which would make the balance
decrease?
is this entered correctly?
Purchases Invoices-Enter the information in the Purchases Journal on the date the invoice is received for each purchase of merchandise inventory or supplies. Post to the Subsidiary Accounts Payable Ledger. Mr. Stephens will send you an interoffice memorandum when he wants you to prepare checks for payment of these invoices. Business Paper No. 4 Invoice #...
Reference the narrative for
Figure 3-12(picture 1) to complete picture 2 the missing labels and
data flows.
3.12 Charting, Inc., a new audit client of yours, processes its sales and cash receipts documents in the following manner: 1 Payment on account. Each morning a mail clerk in the sales department opens the mail. The mail clerk prepares a remittance advice (showing customer and amount paid) if one is not received. The checks and remittance advices are then for warded to...
Upscale Inc. is a medium-sized distributor of designer clothing lines. The company headquarters in New York City manages the purchases to cash disbursements (Expenditure cycle) process. You have conducted several interviews with department supervisors who oversee the expenditure cycle processes. The following is a summary of your discussions. Use this narrative to prepare a flowchart to depict the expenditure cycle for Upscale Inc. The process begins in the purchasing department where a purchase requisition is received from a department when...
c++ programming
no use of classes
use of functions
pseudo code with comments
Requirement: Provide one application for a business store that sale 2 models of one proo model FA218 and model FA318. The application first provides the menu to allow users can select one of the following tasks per time and when they finish one task, they can continue the application to select other task from the menu until they choose exit. All the output on the screen and...
CIVES 12.2, 12.3) Taylor Electronics Company is engaging in manufacturing ents. The company purchases its raw materials from various supp orders t.25 (OBJECTIVES 12-2, 12-3) Taylor of onic comp a description of the purchasing system of Taylor Electronics ed volved following is uction supervisors complete a requisition form when they are in need of raw This is triggered by checking the current level of inventory on the inventory The bollowing onents T risk of ificant system w materials. Orders cannot...
vvvvvvv Get to Know QuickBooks Better Working Around the Home Page Identify which area of the Home page you would go to perform the following tasks (areas include: Vendors, Customers, Employees, Company, and Banking), as well as the task icon you would choose. (Hint: You may need to utilize the “tool tips” feature.) Task Home Page Area Task Icon Create a bill for a customer to pay at a later date Create invoice customer Write a check to the grocery...
Write the code to maintain a list of student records. The main flow of your program should be to read all information from file(s) and place it in arrays, loop and do stuff with the records (e.g., add, update, look up, etc.), before exiting optionally write the new information back to the file(s) before exiting. Please note the files are only accessed at the beginning and the end, do not change the files during the "do stuff loop" (unless you...