| | |
| | | { |
| | | return Service.GetStockData(); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("PrintOrder"), AllowAnonymous] |
| | | public Task<WebResponseContent> PrintOrder([FromBody]object[] key) |
| | | { |
| | | return Service.PrintOrder(key); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 鐗规畩鍑哄簱 |
| | | /// </summary> |
| | | /// <param name="details"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("UpdateDataStockDetail"), AllowAnonymous] |
| | | public WebResponseContent UpdateDataStockDetail([FromBody]List<DtStockInfoDetail> details) |
| | | { |
| | | return Service.UpdateDataStockDetail(details); |
| | | } |
| | | } |