From f947c5dd70611dde639fcf7b241ffe191c866d86 Mon Sep 17 00:00:00 2001 From: zyf <1071160500@qq.com> Date: 星期三, 04 十二月 2024 22:45:20 +0800 Subject: [PATCH] 销售订单已完成,销售退货写了一部分 --- MESApplication/Controllers/BasicData/ProductionOrderController.cs | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MESApplication/Controllers/BasicData/ProductionOrderController.cs b/MESApplication/Controllers/BasicData/ProductionOrderController.cs index 23c4931..fd7a8de 100644 --- a/MESApplication/Controllers/BasicData/ProductionOrderController.cs +++ b/MESApplication/Controllers/BasicData/ProductionOrderController.cs @@ -2,6 +2,7 @@ using MES.Service.Dto.webApi; using MES.Service.Modes; using MES.Service.service; +using MES.Service.service.BasicData; using MES.Service.util; using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json; @@ -14,14 +15,14 @@ { private readonly MessageCenterManager _manager = new(); + private readonly ProductionOrderManager m = new(); + private readonly string METHOD = "POST"; private readonly string TableName = "PRODUCTION_ORDER"; private readonly string URL = - "http://localhost:10054/api/PRODUCTION_ORDER/"; - - private readonly ProductionOrderManager m = new(); + "http://localhost:10054/api/ProductionOrder/"; // [HttpPost("Save")] -- Gitblit v1.9.3