我想知道我想做的事情在 MVC3 控制器中是否可行。我有 3 张桌子;成员,付款和支付类别。我在类别表中有 3 个不同的付款类别(CatA、CatB 和 CatC)。在支付视图中是接受会员 ID 和支付价值(十进制)的表格。我希望做的是,当一个值通过表单传递到控制器时,该值按比例分成 3,每个类别的计算值,并且相同的成员 Id 被提交到数据库。例如,如果 CatA 为 30%,CatB 为 50%,CatC 为 20%,并且成员 Id 为 1010 并且 100.00 被传递给控制器,则应将以下内容提交到数据库
标识符 | 中度 | 猫科动物 | 价值
1 | 1010 | 1 | 30.00
2 | 1010 | 2 | 50.00
3 | 1010 | 3 | 20.00
任何线索或任何形式的帮助将不胜感激。控制器
// POST: /AutoPay/Create
[HttpPost]
public ActionResult Create(AutoPay autopay, int tcd, int id, int tzid, FormCollection formCollection)
{
if (ModelState.IsValid)
{
string[] rawpaysplit = formCollection["PayCatSplit"].Split(' ');
foreach (var x in rawpaysplit){
if (x.Equals (rawpaysplit[0])){
autopay.PId = 3;}
if (x.Equals (rawpaysplit[1])){
autopay.PId = tzid;}
if (x.Equals (rawpaysplit[2])){
autopay.PId = 4;}
autopay.Pay= Convert.ToDecimal(x);
autopay.UId = id;
autopay.Tcd = tcd;
autopay.PDate = DateTime.Now;
autopay.LastUpdate = DateTime.Now;
autopay.PEntryId = Membership.GetUser().UserName;
db.AutoPays.Add(autopay);
db.SaveChanges();
}
return RedirectToAction("Index");
}
模型
public class AutoPay
{
[Key]
public int Id { get; set; }
public int? Tcd { get; set; }
public int UId { get; set; }
public virtual Member Member { get; set; }
public int PId { get; set; }
public virtual PayCat PayCat { get; set; }
public int YId { get; set; }
public virtual DateYear DateYear { get; set; }
public int MId { get; set; }
public virtual DateMonth DateMonth { get; set; }
[DisplayFormat(DataFormatString = "{0:F2}", ApplyFormatInEditMode = true)]
[DisplayName("Amount")]
public decimal Pay { get; set; }
[ScaffoldColumn(false)]
public DateTime PDate { get; set; }
[DisplayName("Entry By")]
public string PEntryId { get; set; }
[DisplayName("last Upadated By")]
public string PUpdatedBy { get; set; }
[DisplayName("Receipt No")]
public string RecNo { get; set; }
[DisplayName("Book No")]
public int BId { get; set; }
public virtual ReceiptBook ReceiptBook { get; set; }
public bool POK { get; set; }
[ScaffoldColumn(false)]
public DateTime LastUpdate { get; set; }
public string PayCatSplit
{
get { return string.Format("{0} {1} {2}", Math.Round((this.Pay * 0.773211m), 2), Math.Round((this.Pay * 0.123703m),2), Math.Round((this.Pay * 0.103086m))); }
}
我在查询字符串中传递了很多变量以减少视图表单中的字段数量。我设法完成了这个编码,但它跳过了前两个值,只保存了数据库中最后一个正确的条目。我需要专家帮助