Shopping:
- shoppingID - Every shopping cart should have an ID so that it is unique to all user.
- memberID - Acquire from Member table.
- productID - Acquire from Product table.
- productType - Product info, you may have something else.
- productBrand - Product info, you may have something else.
- productSeries - Product info, you may have something else.
- productPrice - Product price, is a compulsory information for shopping cart.
- shoppingQuantity - Purchase quantity.
- shoppingTotal - Total price. productPrice multiply with shoppingQuantity.
- shoppingImage - To display the product image, optional.
- salesID - Every sales should have an ID so that it is unique to all other sales.
- shoppingID - Acquire from Shopping table.
- memberID - Acquire from Member table.
- productID - Acquire from Product table.
- productType - Product info, you may have something else.
- productBrand - Product info, you may have something else.
- productSeries - Product info, you may have something else.
- productPrice - Product price, is a compulsory information for shopping cart.
- shoppingQuantity - Purchase quantity.
- shoppingTotal - Total price. productPrice multiply with shoppingQuantity.
- paymentID - Acquire from Payment table, every successful sales should involved a payment.
- paymentDate - Acquire from Payment table, which mark the date of payment made.
Payment:
- paymentID - Use to identify every payment made by the user.
- memberID - Acquire from Member table.
- paymentTotal - Payment information, compulsory
- paymentMode - Payment mode: Credit Card, Direct Bank Debit, Charge Card.
- paymentSalutation - Payor salutation.
- paymentFName - Payor first name.
- paymentLName - Payor last name.
- paymentAddress - Payor given address.
- paymentCity - Payor given city in the address.
- paymentState - Payor given state in the address.
- paymentCountry - Payor given country in the address.
- paymentPhoneNo - Payor contact number.
- paymentEmail - Payor email address.
- paymentOriginal - Is the address belongs to the payor? Or someone else address?
- paymentDate - Date the payment is made.
- paymentBank - Selected bank in Direct Bank Debit payment mode.
- paymentCardType - Select card type in Credit Card and Charge Card payment mode.
- paymentCardNumber - Respective card number.
- paymentCardHolder - Card holder name.
Thanks a lot bro....
ReplyDeleteNow i get it.... i'll try get them linked up...
ReplyDelete# productType - Product info, you may have something else.
# productBrand - Product info, you may have something else.
# productSeries - Product info, you may have something else.
I think I'm just going to have productType- men's or women's
productBrand and productSeries don't think I'll add it...
tq
No problem dude, just pass me the DB when is ready. Can't do much without the data :)
ReplyDelete