erp产品价格
ERP产品价格成本计算的几个方法
一般财务计算产品价格又很多方法,我这里做了几个供参考,实体属性主要是编号、数量、价格等,这里就不列出了。
///
/// 先进先出算法 ///
/// 入库记录(一个周期内)
/// 出库记录(一个周期内)
///
public List
(List
{
//排序
var inList = (from o in inRecord
orderby o.CDate
select o).ToList();
var outList = (from o in outRecord
orderby o.CDate
select o).ToList();
foreach (var outItem in outList)
{
//当前条已出部分金额
decimal money = 0;
//当前还需出的数量
decimal qty = outItem.Qty;
foreach (var inItem in inList)
{
//如果当前这一条够出库,那么结束去计算价格
if (inItem.Qty > qty)
{
money = money + inItem.Price * qty;
//更新入库表
inItem.Qty = inItem.Qty - qty;
break;
}
else
{
qty = qty - inItem.Qty;
money = money + (inItem.Price * inItem.Qty);
//更新入库表
inItem.Qty = 0;
}
}
//计算出货价格
outItem.Price = money / outItem.Qty;
}
return outList;
}
///
/// 后进先出算法 ///
/// 入库记录(一个周期内)
/// 出库记录(一个周期内)
///
public List
(List
{
//排序
var inList = (from o in inRecord
orderby o.CDate descending
select o).ToList();
var outList = (from o in outRecord
orderby o.CDate
select o).ToList();
foreach (var outItem in outList)
{
//当前条已出部分金额
decimal money = 0;
//当前还需出的数量
decimal qty = outItem.Qty;
foreach (var inItem in inList)
{
//如果当前这一条够出库,那么结束去计算价格
if (inItem.Qty > qty)
{
money = money + inItem.Price * qty;
//更新入库表
inItem.Qty = inItem.Qty - qty;
break;
}
else
{
qty = qty - inItem.Qty;
money = money + (inItem.Price * inItem.Qty);
//更新入库表
inItem.Qty = 0;
}
}
//计算出货价格
outItem.Price = money / outItem.Qty;
}
return outList;
}
///
/// 加权平均算法 ///
/// 入库记录(一个周期内)
/// 出库记录(一个周期内)
/// 上期价格
/// 上期数量
///
public List
(List
decimal prePrice, decimal preQty)
{
decimal money = 0;
decimal qty = 0;
foreach (var inItem in inRecord)
{
money = money + inItem.Price * inItem.Qty;
qty = qty + inItem.Qty;
}
decimal price = (money + prePrice * preQty) / (qty + preQty);
foreach (var outItem in outRecord)
{
outItem.Price = price;
}
return outRecord;
}
///
/// 移动加权平均算法 ///
/// 入库记录(一个周期内)
/// 出库记录(一个周期内)
/// 上期价格
/// 上期数量
///
public List
(List
decimal prePrice, decimal preQty, DateTime preDate)
{
//排序
var outList = (from o in outRecord
orderby o.CDate
select o).ToList();
List
foreach (var outItem in outList)
{
//取出比当前出库记录要早的入库记录,并且排除已经结算的记录
var inList = (from o in inRecord
where o.CDate <= outItem.CDate
&& !preDetail_IDs.Contains(o.Detail_ID)
orderby o.CDate
select o).ToList();
decimal money = 0;
decimal qty = 0;
foreach (var inItem in inList)
{
money = money + inItem.Price * inItem.Qty;
qty = qty + inItem.Qty;
preDetail_IDs.Add(inItem.Detail_ID);
}
outItem.Price = (money + prePrice * preQty) / (qty + preQty);
//修改上期价格和数量
prePrice = outItem.Price;
preQty = qty - outItem.Qty;
}
return outList;
}
- 1企业买erp要多少钱
- 2便宜的erp管理软件
- 3erp软件价格多少
- 4erp管理软件报价
- 5进销存软件多少钱
- 6erp系统内有报价系统
- 7定制erp多少钱
- 8erp产品价格
- 9erp管理系统要多少钱
- 10erp软件开发价格
- 11erp云价格
- 12erp系统多少钱
- 13erp财务软件多少钱
- 14做一个erp系统多少钱
- 15自己开发erp需要多少钱
- 16erp软件系统费用
- 17行业erp多少钱
- 18erp系统一套要多少钱
- 19erp系统售价
- 20国内erp公司有哪些
- 21进销存管理系统多少钱
- 22erp管理系统报价
- 23erp系统价钱
- 24erp软件的原理
- 25erp企业管理系统定制多少钱
- 26生产erp管理软件价格
- 27办公软件erp价格
- 28一套erp开发价格
- 29erp管理软件费用
- 30erp管理系统的价格
成都公司:成都市成华区建设南路160号1层9号
重庆公司:重庆市江北区红旗河沟华创商务大厦18楼