Exemple #1
0
 public void DistributorsOrderCreateWithoutLines()
 {
     var order = new ENDistributorsOrder();
     var orderList = order.ReadAll();
     var oldCount = orderList.Count;
     var now = DateTime.Now;
     order.DataOrder = now;
     order.Distributor = 1;
     order.Save();
     orderList = order.ReadAll();
     order.Delete();
     Assert.IsTrue(oldCount < orderList.Count);
     var actual = orderList[orderList.Count - 1];
     Assert.IsTrue(actual.Id > 0);
     Assert.AreEqual(now, actual.DataOrder); //Por lo visto no guarda bien la hora, pero sí la fecha
 }
 public JsonResult DistributorOrderUpdate(ENDistributorsOrder order)
 {
     try
     {
         order.Save();
         return Json(new { Result = "OK" });
     }
     catch (Exception ex)
     {
         return Json(new { Result = "ERROR", Message = ex.Message });
     }
 }