blob: 42f2c1bbe00bdbd0fa6f0b49b1560e3788a58921 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace InvoiceTotal
{
public partial class frmInvoiceTotal3 : Form
{
public frmInvoiceTotal3()
{
InitializeComponent();
}
private void btnCalculate_Click(object sender, EventArgs e)
{
string customerType = txtCustomerType.Text.ToUpper();
decimal subtotal = Convert.ToDecimal(txtSubtotal.Text);
decimal discountPercent = .0m;
/* if (customerType == "R") {
if (subtotal >= 250 && subtotal < 500)
discountPercent = .25m;
else if (subtotal >= 500)
discountPercent = .3m;
else
discountPercent = .1m;
}
else if (customerType == "C")
discountPercent = .2m;
else if (customerType == "T")
if (subtotal >= 500)
discountPercent = .5m;
else
discountPercent = .4m;
else
discountPercent = .1m; */
switch (customerType) {
case "R":
if (subtotal >= 250 && subtotal < 500)
discountPercent = .25m;
else if (subtotal >= 500)
discountPercent = .3m;
else
discountPercent = .1m;
break;
case "C":
discountPercent = .2m;
break;
case "T":
if (subtotal >= 500)
discountPercent = .5m;
else
discountPercent = .4m;
break;
default:
discountPercent = .1m;
break;
}
decimal discountAmount = subtotal * discountPercent;
decimal invoiceTotal = subtotal - discountAmount;
txtDiscountPercent.Text = discountPercent.ToString("p1");
txtDiscountAmount.Text = discountAmount.ToString("c");
txtTotal.Text = invoiceTotal.ToString("c");
txtCustomerType.Focus();
}
private void btnExit_Click(object sender, EventArgs e)
{
this.Close();
}
private void frmInvoiceTotal3_Load(object sender, EventArgs e)
{
txtSubtotal.Text = "";
}
}
}
|