Task:Create a Form to create Retail Sales Invoice
,
February 21, 2007 at 1:59 PM
Task:Create a Form to create Retail Sales Invoice
Title:Create Sales Invoice
Criteria:
1. Invoice Id will be max Id +1 in the table sal_invoice_t 2. user will write Article Code,Quantity ,Rate. 3. User can add more than one article in a Invoice 4. Added articles will appear in grid format 5. There should be functionality to remove added articles 6. Grand Total ( Article Qty* Price) will appear at the bottom of the grid 7. On clicking on Save button, data will be saved and the saved Invoice id and appropriate message should appear on the next page.
Technology: Struts
Tables:sal_invoice_t,sal_invoicedetails_t
Mandatory fields for sal_invoice_t INVOICE_ID - max Id+1 INVOICE_DT - current date TEMPLATE_ID - 1 PAYMENT_TYPE -C STATUS _ P
Mandatory fields for sal_invoicedetails_t
INVOICE_ID - max Id+1 ARTICLE_ID - User will write QTY - User will write RATE - User will write