You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
682 B
27 lines
682 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
using Warehouse.DAL.Report;
|
|
|
|
namespace Warehouse.WebApi
|
|
{
|
|
public class BatchRateController : ApiController
|
|
{
|
|
|
|
BatchRateDal DT = new BatchRateDal();
|
|
|
|
[Route("api/BatchRate/BatchRate")]
|
|
[HttpPost]
|
|
public IHttpActionResult Repair(dynamic para)
|
|
{
|
|
string sale_order = para.sale_order;
|
|
string workorder = para.workorder;
|
|
string workshop = para.workshop;
|
|
var res = DT.BatchRate(sale_order, workorder,workshop);
|
|
return Json(res);
|
|
}
|
|
}
|
|
}
|
|
|