Thanks for any help.How about a table for payments, like so:
create table dbo.t_issue_saved_report_sql
(
PayID intnot null,
CustomerID int not null,
Amount varchar(255) not null,
DueDate datetime,
PaidDate datetime
)
So when your customer signs up, your program will populate the table with 5 entries, including the due dates for each year and the amount due. This is a simple representation, and I'm sure I'm missing something, but perhaps a start.
No comments:
Post a Comment