719dbd49d2
Added Void or Reprint Report. Changed Product.SalePrice -> Price Changed Inventory.Rate -> Price
145 lines
4.2 KiB
C#
145 lines
4.2 KiB
C#
using System;
|
|
using Tanshu.Accounts.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public class BillItemValue
|
|
{
|
|
public int ProductID { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
public decimal FullPrice { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
private decimal _discount;
|
|
public Product Product { get; private set; }
|
|
|
|
public decimal Discount
|
|
{
|
|
get { return _discount; }
|
|
set
|
|
{
|
|
if (value < 0)
|
|
throw new ArgumentException("Discount has to be non-negative greater than or equal to zero.");
|
|
if (value > 1)
|
|
throw new ArgumentException("Discount has to be less than one.");
|
|
_discount = value;
|
|
}
|
|
}
|
|
|
|
public decimal Tax { get; set; }
|
|
public decimal TaxAmount
|
|
{
|
|
get
|
|
{
|
|
return Quantity * Price * (1 - _discount) * (1 + ServiceCharge) * Tax;
|
|
}
|
|
}
|
|
|
|
public decimal ServiceCharge { get; set; }
|
|
public decimal ServiceChargeAmount
|
|
{
|
|
get
|
|
{
|
|
return Quantity * Price * (1 - _discount) * ServiceCharge;
|
|
}
|
|
}
|
|
|
|
public decimal DiscountAmount
|
|
{
|
|
get
|
|
{
|
|
return Quantity * Price * _discount;
|
|
}
|
|
}
|
|
|
|
public decimal GrossAmount
|
|
{
|
|
get
|
|
{
|
|
return Quantity * Price * (1 - _discount);
|
|
}
|
|
}
|
|
|
|
public bool Printed { get; set; }
|
|
|
|
public decimal Value
|
|
{
|
|
get
|
|
{
|
|
return Price * Quantity * (1 - _discount) * (1 + ServiceCharge) * (1 + Tax);
|
|
}
|
|
}
|
|
|
|
public string Display
|
|
{
|
|
get
|
|
{
|
|
var output = string.Format("{0} @ Rs. {1:#.##}", Name, Price);
|
|
if (_discount != 0)
|
|
output += string.Format(" - {0:#.##%}", _discount);
|
|
if (Modifiers != null)
|
|
foreach (var item in Modifiers)
|
|
output += string.Format("\n\r -- {0}", item.Name);
|
|
return output;
|
|
|
|
//if (Price == 0)
|
|
// return string.Format(" -- {0}", Name);
|
|
//string output = string.Format("{0} @ Rs. {1:#.##}", Name, Price);
|
|
//if (discount != 0)
|
|
// output += string.Format(" - {0:#.##%}", discount);
|
|
//return output;
|
|
}
|
|
}
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} - {1}", ProductID, Name);
|
|
}
|
|
public IList<Modifier> Modifiers { get; set; }
|
|
public BillItemValue(Product product)
|
|
{
|
|
Modifiers = new List<Modifier>();
|
|
if (product != null)
|
|
{
|
|
Product = product;
|
|
ProductID = product.ProductID;
|
|
Name = product.Units == string.Empty ? product.Name : product.Name + " (" + product.Units + ")";
|
|
Quantity = 1;
|
|
Price = product.Price;
|
|
FullPrice = product.FullPrice;
|
|
Tax = product.Tax.Rate;
|
|
ServiceCharge = product.ServiceCharge;
|
|
Discount = 0;
|
|
Printed = false;
|
|
}
|
|
}
|
|
public BillItemValue()
|
|
{
|
|
Product = null;
|
|
ProductID = 0;
|
|
Discount = 0;
|
|
Name = "== New Kot ==";
|
|
Price = 0;
|
|
FullPrice = 0;
|
|
Printed = true;
|
|
Quantity = 0;
|
|
Tax = -1;
|
|
ServiceCharge = 0;
|
|
}
|
|
|
|
public BillItemValue(Kot kot)
|
|
{
|
|
Product = null;
|
|
ProductID = kot.KotID;
|
|
Discount = 0;
|
|
Name = string.Format("Kot: {0} / {1:dd-MMM HH:mm} ({2})", kot.Code, kot.Date, kot.User.Name);
|
|
Price = 0;
|
|
FullPrice = 0;
|
|
Printed = true;
|
|
Quantity = 0;
|
|
Tax = -1;
|
|
ServiceCharge = 0;
|
|
}
|
|
|
|
}
|
|
} |