parent
							
								
									31a3e21508
								
							
						
					
					
						commit
						38baee10f2
					
				| @ -0,0 +1,39 @@ | ||||
| using System.Web.Http; | ||||
| using WebActivatorEx; | ||||
| using Swashbuckle.Application; | ||||
| using System.Linq; | ||||
| using System.Reflection; | ||||
| using FactorySystemApi; | ||||
| using FactorySystemApi.Controllers; | ||||
| 
 | ||||
| [assembly: PreApplicationStartMethod(typeof(SwaggerConfig), "Register")] | ||||
| namespace FactorySystemApi | ||||
| { | ||||
|     public class SwaggerConfig | ||||
|     { | ||||
|         public static void Register() | ||||
|         { | ||||
|             var thisAssembly = typeof(SwaggerConfig).Assembly; | ||||
| 
 | ||||
|             GlobalConfiguration.Configuration | ||||
|                 .EnableSwagger(c => | ||||
|                 { | ||||
|                     c.SingleApiVersion("v1", "Åä·½Ðͬ½Ó¿ÚÎĵµ"); | ||||
| 
 | ||||
| 
 | ||||
|                     c.OperationFilter<HttpAuthHeaderFilter>(); | ||||
| 
 | ||||
|                     c.IncludeXmlComments(string.Format("{0}/bin/FactorySystemModel.xml", System.AppDomain.CurrentDomain.BaseDirectory)); | ||||
|                     c.IncludeXmlComments(string.Format("{0}/bin/FactorySystemApi.xml", System.AppDomain.CurrentDomain.BaseDirectory)); | ||||
|                     c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First()); | ||||
|                     c.CustomProvider((defaultProvider) => new SwaggerCacheProvider(defaultProvider, string.Format("{0}/bin/FactorySystemApi.XML",System.AppDomain.CurrentDomain.BaseDirectory))); | ||||
|                     c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First()); | ||||
|                 }) | ||||
|                 .EnableSwaggerUi(c => | ||||
|                 { | ||||
|                     c.InjectJavaScript(Assembly.GetExecutingAssembly(), "FactorySystemApi.Scripts.swagger.js"); | ||||
|                 }); | ||||
|         } | ||||
|     } | ||||
|      | ||||
| } | ||||
| @ -0,0 +1,55 @@ | ||||
| using System.Collections.Generic; | ||||
| using System.Web.Http; | ||||
| using FactorySystemBll; | ||||
| using FactorySystemCommon; | ||||
| using FactorySystemModel.BusinessModel; | ||||
| using FactorySystemModel.ResponseModel; | ||||
| 
 | ||||
| namespace FactorySystemApi.Controllers | ||||
| { | ||||
|     /// <summary> | ||||
|     /// 操作日志 | ||||
|     /// </summary> | ||||
|     [UserLoginFilter] | ||||
|     public class OperateLogController : ApiController | ||||
|     { | ||||
|         private readonly OperateLogBll _operateLogBll = new OperateLogBll(); | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// 获取分页 | ||||
|         /// </summary> | ||||
|         [HttpPost] | ||||
|         public ApiResult GetPageList(Dictionary<string, object> inParam) | ||||
|         { | ||||
|             var apiResult = new ApiResult(); | ||||
|             return ExceptionHelper.TryReturnException(() => | ||||
|             { | ||||
|                 apiResult.Data = new | ||||
|                 { | ||||
|                     List = _operateLogBll.GetPageList(inParam, out int totalCount), | ||||
|                     Total = totalCount | ||||
|                 }; | ||||
|             }, apiResult, Request); | ||||
|         } | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// 保存操作日志 | ||||
|         /// </summary> | ||||
|         [HttpPost] | ||||
|         public ApiResult Save(Dictionary<string, object> inParams) | ||||
|         { | ||||
|             var teamId = int.Parse(inParams["teamId"].ToString()); | ||||
|             var type = int.Parse(inParams["type"].ToString()); | ||||
|             var desc = inParams["desc"].ToString(); | ||||
|             var apiResult = new ApiResult(); | ||||
|             return ExceptionHelper.TryReturnException(() => | ||||
|             { | ||||
|                 if (Request.Properties["token"] is ApiAuthInfo user) | ||||
|                 { | ||||
|                     OperateLogBll.Add(teamId, type, desc, user.FID); | ||||
|                 } | ||||
|             }, apiResult, Request); | ||||
|         } | ||||
| 
 | ||||
|     } | ||||
| } | ||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								
											
												Binary file not shown.
											
										
									
								| @ -0,0 +1 @@ | ||||
| <%@ Application Codebehind="Global.asax.cs" Inherits="FactorySystemApi.WebApiApplication" Language="C#" %> | ||||
| @ -0,0 +1,25 @@ | ||||
| using System.Web; | ||||
| using System.Web.Http; | ||||
| using System.Web.Mvc; | ||||
| using System.Web.Routing; | ||||
| 
 | ||||
| namespace FactorySystemApi | ||||
| { | ||||
|     /// <summary> | ||||
|     ///  | ||||
|     /// </summary> | ||||
|     public class WebApiApplication : HttpApplication | ||||
|     { | ||||
|         /// <summary> | ||||
|         /// Æô¶¯ | ||||
|         /// </summary> | ||||
|         protected void Application_Start() | ||||
|         { | ||||
|             AreaRegistration.RegisterAllAreas(); | ||||
|             GlobalConfiguration.Configure(WebApiConfig.Register); | ||||
|             FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); | ||||
|             RouteConfig.RegisterRoutes(RouteTable.Routes); | ||||
|         } | ||||
| 
 | ||||
|     } | ||||
| } | ||||
| @ -0,0 +1,21 @@ | ||||
| <?xml version='1.0' encoding='utf-8'?> | ||||
| <SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="FactorySystemApi.Properties" GeneratedClassName="Settings"> | ||||
|   <Profiles /> | ||||
|   <Settings> | ||||
|     <Setting Name="WeChatMsg" Type="(Web Service URL)" Scope="Application"> | ||||
|       <Value Profile="(Default)">http://dd.hbflavor.com:28888/PlmMsg/SendPLMMsgInterface.asmx</Value> | ||||
|     </Setting> | ||||
|     <Setting Name="Plm_Formula" Type="(Web Service URL)" Scope="Application"> | ||||
|       <Value Profile="(Default)">https://plmtest.hbflavor.com/PlmWebService/OAService.asmx</Value> | ||||
|     </Setting> | ||||
|     <Setting Name="Sap_Material" Type="System.String" Scope="Application"> | ||||
|       <Value Profile="(Default)">http://sappoqas.hbglobal.com:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_mm100_mcs_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fmm</Value> | ||||
|     </Setting> | ||||
|     <Setting Name="SAP_Formula" Type="(Web Service URL)" Scope="Application"> | ||||
|       <Value Profile="(Default)">http://sappoqas.hbglobal.com:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_pp062_bc_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fpp</Value> | ||||
|     </Setting> | ||||
|     <Setting Name="Sap_Group" Type="(Web Service URL)" Scope="Application"> | ||||
|       <Value Profile="(Default)">http://sappoqas.hbglobal.com:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_pp071_mcs_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fpp</Value> | ||||
|     </Setting> | ||||
|   </Settings> | ||||
| </SettingsFile> | ||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												
													File diff suppressed because one or more lines are too long
												
											
										
									
								
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												
													File diff suppressed because one or more lines are too long
												
											
										
									
								
											
												
													File diff suppressed because one or more lines are too long
												
											
										
									
								
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												
													File diff suppressed because one or more lines are too long
												
											
										
									
								
											
												
													File diff suppressed because one or more lines are too long
												
											
										
									
								
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								| @ -0,0 +1,6 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/"> | ||||
|   <contractRef ref="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx?wsdl" docRef="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> | ||||
|   <soap address="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx" xmlns:q1="http://tempuri.org/" binding="q1:OAServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> | ||||
|   <soap address="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx" xmlns:q2="http://tempuri.org/" binding="q2:OAServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> | ||||
| </discovery> | ||||
| @ -0,0 +1,349 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | ||||
|   <wsdl:types> | ||||
|     <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> | ||||
|       <s:element name="CreateMaterialSpec"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="oa" type="tns:OAMateral_New" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:complexType name="OAMateral_New"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Factory" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Amount" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="RawMaterialDescription" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="EnglishName" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="OtherNames" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="BotanicalSpeciesName" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="BotanicalFamily" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="CAS_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="FL_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="FEMA_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="NAS_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="CoE_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="EINECS_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="JECFA_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="EU_Additive_No" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="INS" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="CNS" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="EmpiricalFormula" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="MW" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="AcidValue" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="AerobicPlateCount" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Aldehyde" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Appearance" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Ash_total" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Assay" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="BoilingPointOrBoilingRange" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Coliform" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="FlashPoint" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HeavyMetals_As" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="AsHeavyMetals_asPbhTotal" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="InsolubleMatter" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="LC50" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="LogP" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="LossOnDrying" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="MeltingPointOrMeltingRange" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Methanol" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Specific_OpticalRotation" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="RefractiveIndex" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="EvaporationResidue" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="BurningResidue" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Solubility" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="RelativeDensity" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="VapourPressure" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Viscosity" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Odor" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Moisture" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="AromaThresholdValues" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="TasteThresholdValues" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="FragranceNotes" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="NaturalOccurrence" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Synthesis" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Remarks" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="ReferenceStandard" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="MDM_code" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="SAP_Name" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Supplier" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="PurchasePrice" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Halal" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Kosher" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Allergen" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="irradiation" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="GeneticallyModified" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="RMC" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="category" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="OldCode" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="OldCode2" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="RawMaterialResource" type="s:string" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:element name="CreateMaterialSpecResponse"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="CreateMaterialSpecResult" type="tns:RestResult" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:complexType name="RestResult"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="1" maxOccurs="1" name="code" type="s:int" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="message" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="data" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:complexType name="Specifications"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Code" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="Version" type="s:string" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:complexType name="OAProject"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_HBBT" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_SQR" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_SQRQ" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_SQBM" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_SSGS" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_YWBK" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_SMMC" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMHZXZ" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMLX" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMJB" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMBJ" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMJZ" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_KHFL" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMBH" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMURLDZ" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_XMJD" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_YFBMLD" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_YYBMLD" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_TXS" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="HB_YYGCS" type="s:string" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:element name="MySoapHeader" type="tns:MySoapHeader" /> | ||||
|       <s:complexType name="MySoapHeader"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="UserName" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="PassWord" type="s:string" /> | ||||
|         </s:sequence> | ||||
|         <s:anyAttribute /> | ||||
|       </s:complexType> | ||||
|       <s:element name="OAProjectDataToPLM"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="oAProject" type="tns:OAProject" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:element name="OAProjectDataToPLMResponse"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="OAProjectDataToPLMResult" type="tns:RestResult" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:element name="OAworkflowToPLM"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="oAWorkFlowInfo" type="tns:OAWorkFlowInfo" /> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="oAWorkFlowInfoDetial_list" type="tns:ArrayOfOAWorkFlowInfoDetial" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:complexType name="OAWorkFlowInfo"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="ShortDescription" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="userWorkCode" type="s:string" /> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="ApplicationDays" type="s:string" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:complexType name="ArrayOfOAWorkFlowInfoDetial"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="unbounded" name="OAWorkFlowInfoDetial" nillable="true" type="tns:OAWorkFlowInfoDetial" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:complexType name="OAWorkFlowInfoDetial"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="1" name="SpecificationValue_ITEM" type="s:string" /> | ||||
|           <s:element minOccurs="1" maxOccurs="1" name="ifAllow" type="s:int" /> | ||||
|           <s:element minOccurs="1" maxOccurs="1" name="AllowRevision" type="s:int" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:element name="OAworkflowToPLMResponse"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="OAworkflowToPLMResult" type="tns:RestResult" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:element name="GetSpecificationsList"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="Specificationinfo" type="tns:ArrayOfSpecifications" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:complexType name="ArrayOfSpecifications"> | ||||
|         <s:sequence> | ||||
|           <s:element minOccurs="0" maxOccurs="unbounded" name="Specifications" nillable="true" type="tns:Specifications" /> | ||||
|         </s:sequence> | ||||
|       </s:complexType> | ||||
|       <s:element name="GetSpecificationsListResponse"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="GetSpecificationsListResult" type="tns:RestResult" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|     </s:schema> | ||||
|   </wsdl:types> | ||||
|   <wsdl:message name="CreateMaterialSpecSoapIn"> | ||||
|     <wsdl:part name="parameters" element="tns:CreateMaterialSpec" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="CreateMaterialSpecSoapOut"> | ||||
|     <wsdl:part name="parameters" element="tns:CreateMaterialSpecResponse" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="CreateMaterialSpecMySoapHeader"> | ||||
|     <wsdl:part name="MySoapHeader" element="tns:MySoapHeader" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="OAProjectDataToPLMSoapIn"> | ||||
|     <wsdl:part name="parameters" element="tns:OAProjectDataToPLM" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="OAProjectDataToPLMSoapOut"> | ||||
|     <wsdl:part name="parameters" element="tns:OAProjectDataToPLMResponse" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="OAProjectDataToPLMMySoapHeader"> | ||||
|     <wsdl:part name="MySoapHeader" element="tns:MySoapHeader" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="OAworkflowToPLMSoapIn"> | ||||
|     <wsdl:part name="parameters" element="tns:OAworkflowToPLM" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="OAworkflowToPLMSoapOut"> | ||||
|     <wsdl:part name="parameters" element="tns:OAworkflowToPLMResponse" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="OAworkflowToPLMMySoapHeader"> | ||||
|     <wsdl:part name="MySoapHeader" element="tns:MySoapHeader" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="GetSpecificationsListSoapIn"> | ||||
|     <wsdl:part name="parameters" element="tns:GetSpecificationsList" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="GetSpecificationsListSoapOut"> | ||||
|     <wsdl:part name="parameters" element="tns:GetSpecificationsListResponse" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:portType name="OAServiceSoap"> | ||||
|     <wsdl:operation name="CreateMaterialSpec"> | ||||
|       <wsdl:input message="tns:CreateMaterialSpecSoapIn" /> | ||||
|       <wsdl:output message="tns:CreateMaterialSpecSoapOut" /> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="OAProjectDataToPLM"> | ||||
|       <wsdl:input message="tns:OAProjectDataToPLMSoapIn" /> | ||||
|       <wsdl:output message="tns:OAProjectDataToPLMSoapOut" /> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="OAworkflowToPLM"> | ||||
|       <wsdl:input message="tns:OAworkflowToPLMSoapIn" /> | ||||
|       <wsdl:output message="tns:OAworkflowToPLMSoapOut" /> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="GetSpecificationsList"> | ||||
|       <wsdl:input message="tns:GetSpecificationsListSoapIn" /> | ||||
|       <wsdl:output message="tns:GetSpecificationsListSoapOut" /> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:portType> | ||||
|   <wsdl:binding name="OAServiceSoap" type="tns:OAServiceSoap"> | ||||
|     <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> | ||||
|     <wsdl:operation name="CreateMaterialSpec"> | ||||
|       <soap:operation soapAction="http://tempuri.org/CreateMaterialSpec" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap:body use="literal" /> | ||||
|         <soap:header message="tns:CreateMaterialSpecMySoapHeader" part="MySoapHeader" use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="OAProjectDataToPLM"> | ||||
|       <soap:operation soapAction="http://tempuri.org/OAProjectDataToPLM" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap:body use="literal" /> | ||||
|         <soap:header message="tns:OAProjectDataToPLMMySoapHeader" part="MySoapHeader" use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="OAworkflowToPLM"> | ||||
|       <soap:operation soapAction="http://tempuri.org/OAworkflowToPLM" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap:body use="literal" /> | ||||
|         <soap:header message="tns:OAworkflowToPLMMySoapHeader" part="MySoapHeader" use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="GetSpecificationsList"> | ||||
|       <soap:operation soapAction="http://tempuri.org/GetSpecificationsList" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:binding> | ||||
|   <wsdl:binding name="OAServiceSoap12" type="tns:OAServiceSoap"> | ||||
|     <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> | ||||
|     <wsdl:operation name="CreateMaterialSpec"> | ||||
|       <soap12:operation soapAction="http://tempuri.org/CreateMaterialSpec" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap12:body use="literal" /> | ||||
|         <soap12:header message="tns:CreateMaterialSpecMySoapHeader" part="MySoapHeader" use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="OAProjectDataToPLM"> | ||||
|       <soap12:operation soapAction="http://tempuri.org/OAProjectDataToPLM" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap12:body use="literal" /> | ||||
|         <soap12:header message="tns:OAProjectDataToPLMMySoapHeader" part="MySoapHeader" use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="OAworkflowToPLM"> | ||||
|       <soap12:operation soapAction="http://tempuri.org/OAworkflowToPLM" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap12:body use="literal" /> | ||||
|         <soap12:header message="tns:OAworkflowToPLMMySoapHeader" part="MySoapHeader" use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|     <wsdl:operation name="GetSpecificationsList"> | ||||
|       <soap12:operation soapAction="http://tempuri.org/GetSpecificationsList" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:binding> | ||||
|   <wsdl:service name="OAService"> | ||||
|     <wsdl:port name="OAServiceSoap" binding="tns:OAServiceSoap"> | ||||
|       <soap:address location="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx" /> | ||||
|     </wsdl:port> | ||||
|     <wsdl:port name="OAServiceSoap12" binding="tns:OAServiceSoap12"> | ||||
|       <soap12:address location="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx" /> | ||||
|     </wsdl:port> | ||||
|   </wsdl:service> | ||||
| </wsdl:definitions> | ||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								| @ -0,0 +1,7 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|   <Results> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx?wsdl" filename="OAService.wsdl" /> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="https://plmtest.hbflavor.com/PlmWebService/OAService.asmx?disco" filename="OAService.disco" /> | ||||
|   </Results> | ||||
| </DiscoveryClientResultsFile> | ||||
| @ -0,0 +1,10 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!-- | ||||
|     This file is automatically generated by Visual Studio .Net. It is  | ||||
|     used to store generic object data source configuration information.   | ||||
|     Renaming the file extension or editing the content of this file may    | ||||
|     cause the file to be unrecognizable by the program. | ||||
| --> | ||||
| <GenericObjectDataSource DisplayName="RestResult" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> | ||||
|    <TypeInfo>FactorySystemApi.Plm_Formula.RestResult, Web References.Plm_Formula.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> | ||||
| </GenericObjectDataSource> | ||||
| @ -0,0 +1,6 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|   <Results> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://sappoqas.hbglobal.com:50000/dir/wsdl?p=ic/20d87a69c09f303695c195ca7731a2c9" filename="si_pp062_bc_sender.wsdl" /> | ||||
|   </Results> | ||||
| </DiscoveryClientResultsFile> | ||||
| @ -0,0 +1,10 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!-- | ||||
|     This file is automatically generated by Visual Studio .Net. It is  | ||||
|     used to store generic object data source configuration information.   | ||||
|     Renaming the file extension or editing the content of this file may    | ||||
|     cause the file to be unrecognizable by the program. | ||||
| --> | ||||
| <GenericObjectDataSource DisplayName="dt_pp062_res" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> | ||||
|    <TypeInfo>FactorySystemApi.Sap_Formula.dt_pp062_res, Web References.Sap_Formula.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> | ||||
| </GenericObjectDataSource> | ||||
| @ -0,0 +1,204 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <wsdl:definitions xmlns:p1="http://www.zmc.com/flavor/pp" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" name="si_pp062_bc_sender" targetNamespace="http://www.zmc.com/flavor/pp" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | ||||
|   <wsdl:documentation /> | ||||
|   <wsp:UsingPolicy wsdl:required="true" /> | ||||
|   <wsp:Policy wsu:Id="OP_si_pp062_bc_sender" /> | ||||
|   <wsdl:types> | ||||
|     <xsd:schema xmlns="http://www.hbflavor.com/pp" targetNamespace="http://www.hbflavor.com/pp" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|       <xsd:complexType name="dt_pp062_res"> | ||||
|         <xsd:annotation> | ||||
|           <xsd:documentation xml:lang="EN">response数据类型</xsd:documentation> | ||||
|           <xsd:appinfo source="http://sap.com/xi/VersionID">001603eb0edc11ed97a60000001b7af6</xsd:appinfo> | ||||
|         </xsd:annotation> | ||||
|         <xsd:sequence> | ||||
|           <xsd:element minOccurs="0" name="MSGTY" type="xsd:string"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">b5c8cca8a67c11ec88cb6018953d3d57</xsd:appinfo> | ||||
|               <xsd:documentation>消息类型</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|           </xsd:element> | ||||
|           <xsd:element minOccurs="0" name="MSGTX" type="xsd:string"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">44e2cd7a71b811ecb8f7e86a642def83</xsd:appinfo> | ||||
|               <xsd:documentation>消息文本</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|           </xsd:element> | ||||
|           <xsd:element minOccurs="0" maxOccurs="unbounded" name="DATA"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">44e2f07871b811ecb430e86a642def83</xsd:appinfo> | ||||
|               <xsd:documentation>销售与订单明细对应</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|             <xsd:complexType> | ||||
|               <xsd:sequence> | ||||
|                 <xsd:element minOccurs="0" name="MATNR" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">e594a547a99411ec89a36018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>父项物料</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="MAKTX" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">44e2cd8171b811ecc217e86a642def83</xsd:appinfo> | ||||
|                     <xsd:documentation>物料描述</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="WERKS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">85c192e1a65e11ec90d86018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工厂</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="STLAN" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">b5a1faa0a65e11ec99e16018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>BOM 用途</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="STLAL" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">909f10fba26e11ecb31b6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>可选BOM</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|               </xsd:sequence> | ||||
|             </xsd:complexType> | ||||
|           </xsd:element> | ||||
|         </xsd:sequence> | ||||
|       </xsd:complexType> | ||||
|       <xsd:complexType name="dt_pp062_req"> | ||||
|         <xsd:annotation> | ||||
|           <xsd:documentation xml:lang="EN">request数据类型</xsd:documentation> | ||||
|           <xsd:appinfo source="http://sap.com/xi/VersionID">732ebfde0ed911edcda30000001b7af6</xsd:appinfo> | ||||
|         </xsd:annotation> | ||||
|         <xsd:sequence> | ||||
|           <xsd:element minOccurs="0" maxOccurs="unbounded" name="DATA"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">3d982b0a66e311ec9012e86a642def83</xsd:appinfo> | ||||
|               <xsd:documentation>输入数据</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|             <xsd:complexType> | ||||
|               <xsd:sequence> | ||||
|                 <xsd:element minOccurs="0" name="SOURCESYS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218671a99311ec86886018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>源系统ID</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="TARGETSYS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218672a99311ecb30c6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>目标系统ID</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="UPDATETIME" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218673a99311ecb0fb6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>数据时间戳</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="MATNR" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218674a99311ec8a466018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>物料</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="WERKS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218675a99311ecc5bd6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工厂</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="STLAN" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218676a99311ecba976018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>BOM用途</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="STLAL" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">617e0829af0011ec867d6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>可选BOM</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="ERDAT_S" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218677a99311ec90676018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>BOM更新起始日期</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="ERDAT_E" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218678a99311eca97d6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>BOM更新结束日期</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="ZCATEG" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab218679a99311ecb06f6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>产品分类</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="LKENZ" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab21867aa99311ecb6f16018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>BOM删除标识</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="DATUV" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">ab21867ba99311eccac26018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>有效期自</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|               </xsd:sequence> | ||||
|             </xsd:complexType> | ||||
|           </xsd:element> | ||||
|         </xsd:sequence> | ||||
|       </xsd:complexType> | ||||
|     </xsd:schema> | ||||
|     <xsd:schema xmlns="http://www.zmc.com/flavor/pp" xmlns:p5="http://www.hbflavor.com/pp" targetNamespace="http://www.zmc.com/flavor/pp" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|       <xsd:import namespace="http://www.hbflavor.com/pp" /> | ||||
|       <xsd:element name="mt_pp062_res" type="p5:dt_pp062_res" /> | ||||
|       <xsd:element name="mt_pp062_req" type="p5:dt_pp062_req" /> | ||||
|     </xsd:schema> | ||||
|   </wsdl:types> | ||||
|   <wsdl:message name="mt_pp062_req"> | ||||
|     <wsdl:documentation /> | ||||
|     <wsdl:part name="mt_pp062_req" element="p1:mt_pp062_req" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="mt_pp062_res"> | ||||
|     <wsdl:documentation /> | ||||
|     <wsdl:part name="mt_pp062_res" element="p1:mt_pp062_res" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:portType name="si_pp062_bc_sender"> | ||||
|     <wsdl:documentation /> | ||||
|     <wsdl:operation name="si_pp062_bc_sender"> | ||||
|       <wsdl:documentation /> | ||||
|       <wsp:Policy> | ||||
|         <wsp:PolicyReference URI="#OP_si_pp062_bc_sender" /> | ||||
|       </wsp:Policy> | ||||
|       <wsdl:input message="p1:mt_pp062_req" /> | ||||
|       <wsdl:output message="p1:mt_pp062_res" /> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:portType> | ||||
|   <wsdl:binding name="si_pp062_bc_senderBinding" type="p1:si_pp062_bc_sender"> | ||||
|     <binding transport="http://schemas.xmlsoap.org/soap/http" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|     <wsdl:operation name="si_pp062_bc_sender"> | ||||
|       <operation soapAction="http://sap.com/xi/WebService/soap1.1" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|       <wsdl:input> | ||||
|         <body use="literal" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <body use="literal" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:binding> | ||||
|   <wsdl:service name="si_pp062_bc_senderService"> | ||||
|     <wsdl:port name="HTTP_Port" binding="p1:si_pp062_bc_senderBinding"> | ||||
|       <address location="http://sappoqas.hbglobal.com:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_pp062_bc_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fpp" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|     </wsdl:port> | ||||
|     <wsdl:port name="HTTPS_Port" binding="p1:si_pp062_bc_senderBinding"> | ||||
|       <address location="https://sappoqas.hbglobal.com:50001/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_pp062_bc_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fpp" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|     </wsdl:port> | ||||
|   </wsdl:service> | ||||
| </wsdl:definitions> | ||||
| @ -0,0 +1,6 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|   <Results> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://sappoqas.hbglobal.com:50000/dir/wsdl?p=ic/e07e48bca18c3ffa84b2e1cc3d2ca0b6" filename="si_pp071_mcs_sender.wsdl" /> | ||||
|   </Results> | ||||
| </DiscoveryClientResultsFile> | ||||
| @ -0,0 +1,10 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!-- | ||||
|     This file is automatically generated by Visual Studio .Net. It is  | ||||
|     used to store generic object data source configuration information.   | ||||
|     Renaming the file extension or editing the content of this file may    | ||||
|     cause the file to be unrecognizable by the program. | ||||
| --> | ||||
| <GenericObjectDataSource DisplayName="dt_pp071_resDATA" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> | ||||
|    <TypeInfo>FactorySystemApi.Sap_Group.dt_pp071_resDATA, Web References.Sap_Group.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> | ||||
| </GenericObjectDataSource> | ||||
| @ -0,0 +1,352 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <wsdl:definitions xmlns:p1="http://www.zmc.com/flavor/pp" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" name="si_pp071_mcs_sender" targetNamespace="http://www.zmc.com/flavor/pp" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | ||||
|   <wsdl:documentation /> | ||||
|   <wsp:UsingPolicy wsdl:required="true" /> | ||||
|   <wsp:Policy wsu:Id="OP_si_pp071_mcs_sender" /> | ||||
|   <wsdl:types> | ||||
|     <xsd:schema xmlns="http://www.hbflavor.com/pp" targetNamespace="http://www.hbflavor.com/pp" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|       <xsd:complexType name="dt_pp071_res"> | ||||
|         <xsd:annotation> | ||||
|           <xsd:documentation xml:lang="EN">response数据类型</xsd:documentation> | ||||
|           <xsd:appinfo source="http://sap.com/xi/VersionID">721939b013bb11ed901d0000001b7af6</xsd:appinfo> | ||||
|         </xsd:annotation> | ||||
|         <xsd:sequence> | ||||
|           <xsd:element minOccurs="0" maxOccurs="unbounded" name="DATA"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">44e2f07871b811ecb430e86a642def83</xsd:appinfo> | ||||
|               <xsd:documentation>销售与订单明细对应</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|             <xsd:complexType> | ||||
|               <xsd:sequence> | ||||
|                 <xsd:element minOccurs="0" name="MSGTY" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">e594a547a99411ec89a36018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>消息类型</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="MSGTX" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">f0b3d3fd12f811ed9c646018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>消息文本</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="PLNNR" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">f0b3d3fe12f811ed90ee6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工艺路线组</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="PLNAL" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">44e2cd8171b811ecc217e86a642def83</xsd:appinfo> | ||||
|                     <xsd:documentation>组计数器</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="MATNR" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">85c192e1a65e11ec90d86018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>物料</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" name="WERKS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">71f4c5b113bb11edc3af6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工厂</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|               </xsd:sequence> | ||||
|             </xsd:complexType> | ||||
|           </xsd:element> | ||||
|         </xsd:sequence> | ||||
|       </xsd:complexType> | ||||
|       <xsd:complexType name="dt_pp071_req"> | ||||
|         <xsd:annotation> | ||||
|           <xsd:documentation xml:lang="EN">request数据类型</xsd:documentation> | ||||
|           <xsd:appinfo source="http://sap.com/xi/VersionID">9847a7fa12f311ed93080000001b7af6</xsd:appinfo> | ||||
|         </xsd:annotation> | ||||
|         <xsd:sequence> | ||||
|           <xsd:element name="SOURCESYS" type="xsd:string"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">40f38bac12f011ed80536018953d3d57</xsd:appinfo> | ||||
|               <xsd:documentation>源系统ID</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|           </xsd:element> | ||||
|           <xsd:element name="TARGETSYS" type="xsd:string"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">40f38bad12f011ed8ac56018953d3d57</xsd:appinfo> | ||||
|               <xsd:documentation>目标系统ID</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|           </xsd:element> | ||||
|           <xsd:element name="UPDATETIME" type="xsd:string"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">40f38bae12f011edcace6018953d3d57</xsd:appinfo> | ||||
|               <xsd:documentation>数据时间戳</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|           </xsd:element> | ||||
|           <xsd:element minOccurs="0" maxOccurs="unbounded" name="HEAD"> | ||||
|             <xsd:annotation> | ||||
|               <xsd:appinfo source="http://sap.com/xi/TextID">40f38bb412f011eda7036018953d3d57</xsd:appinfo> | ||||
|               <xsd:documentation>工艺路线抬头表</xsd:documentation> | ||||
|             </xsd:annotation> | ||||
|             <xsd:complexType> | ||||
|               <xsd:sequence> | ||||
|                 <xsd:element name="WERKS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">40f38baf12f011ed8f076018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工厂</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="DATUV" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">40f38bb012f011edb0256018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>生效日期</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="MATNR" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">40f38bb112f011edc3816018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>物料</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="PLNAL" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">40f38bb212f011edc52a6018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>组计数器</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="VERWE" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">40f38bb312f011ed98766018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>用途</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="STATU" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">7d5fd91a12f011ed94616018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>状态</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="LOSVN" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">8b121c6112f011edc9416018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>从批量</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="LOSBS" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">98d7af0d12f011ed81786018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>到批量</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element name="KTEXT" type="xsd:string"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">b23ce2f912f011edb4276018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工艺路线描述</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                 </xsd:element> | ||||
|                 <xsd:element minOccurs="0" maxOccurs="unbounded" name="ITEM"> | ||||
|                   <xsd:annotation> | ||||
|                     <xsd:appinfo source="http://sap.com/xi/TextID">cf06554a12f011edc1616018953d3d57</xsd:appinfo> | ||||
|                     <xsd:documentation>工艺路线行项目表</xsd:documentation> | ||||
|                   </xsd:annotation> | ||||
|                   <xsd:complexType> | ||||
|                     <xsd:sequence> | ||||
|                       <xsd:element name="BMSCH" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">df5ce45312f011edaf6c6018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>基本数量</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="PLNME" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">f5c0361b12f011ed9f636018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>工序单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VORNR" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">040b340b12f111ed8c936018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>工序编号</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="ARBPL" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">57cfeb1512f211ed95606018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>工作中心</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="STEUS" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">917a453d12f211ed99c56018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>控制码</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="LTXA1" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">9f695ef712f211ed83b06018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>工序描述</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW01" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">b04fc7e812f211ed9e486018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>人工(直接)</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE01" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">2542cb4212f311eda7336018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>人工直接工时单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW02" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">576985b112f311edbf296018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>人工(间接)</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE02" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">576985b212f311edc1d16018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>人工间接工时单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW03" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">66b8795b12f311edba5b6018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>机器工时</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE03" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">983a1c4312f311eda6a46018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>机器工时单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW04" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">a4a9253212f311eda1666018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>电</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE04" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">b343491212f311edc4026018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>电单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW05" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">c2899bbc12f311edcbf76018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>水</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE05" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">d313f48d12f311ed8f656018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>水单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW06" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">e098fd0e12f311ed83896018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>蒸汽</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE06" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">ffa010eb12f311edb09b6018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>蒸汽单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW07" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">0ccabca912f411ed83336018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>物耗仓储运输</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE07" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">185679c412f411edbc656018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>物耗仓储运输单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW08" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">24469ea312f411edc4646018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>其他</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE08" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">32dc809312f411ed93076018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>其他单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGW09" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">3f74274012f411edb0346018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>环保支出</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                       <xsd:element name="VGE09" type="xsd:string"> | ||||
|                         <xsd:annotation> | ||||
|                           <xsd:appinfo source="http://sap.com/xi/TextID">4c6e4b7912f411edb06a6018953d3d57</xsd:appinfo> | ||||
|                           <xsd:documentation>环保支出单位</xsd:documentation> | ||||
|                         </xsd:annotation> | ||||
|                       </xsd:element> | ||||
|                     </xsd:sequence> | ||||
|                   </xsd:complexType> | ||||
|                 </xsd:element> | ||||
|               </xsd:sequence> | ||||
|             </xsd:complexType> | ||||
|           </xsd:element> | ||||
|         </xsd:sequence> | ||||
|       </xsd:complexType> | ||||
|     </xsd:schema> | ||||
|     <xsd:schema xmlns="http://www.zmc.com/flavor/pp" xmlns:p5="http://www.hbflavor.com/pp" targetNamespace="http://www.zmc.com/flavor/pp" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|       <xsd:import namespace="http://www.hbflavor.com/pp" /> | ||||
|       <xsd:element name="mt_pp071_res" type="p5:dt_pp071_res" /> | ||||
|       <xsd:element name="mt_pp071_req" type="p5:dt_pp071_req" /> | ||||
|     </xsd:schema> | ||||
|   </wsdl:types> | ||||
|   <wsdl:message name="mt_pp071_req"> | ||||
|     <wsdl:documentation /> | ||||
|     <wsdl:part name="mt_pp071_req" element="p1:mt_pp071_req" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="mt_pp071_res"> | ||||
|     <wsdl:documentation /> | ||||
|     <wsdl:part name="mt_pp071_res" element="p1:mt_pp071_res" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:portType name="si_pp071_mcs_sender"> | ||||
|     <wsdl:documentation /> | ||||
|     <wsdl:operation name="si_pp071_mcs_sender"> | ||||
|       <wsdl:documentation /> | ||||
|       <wsp:Policy> | ||||
|         <wsp:PolicyReference URI="#OP_si_pp071_mcs_sender" /> | ||||
|       </wsp:Policy> | ||||
|       <wsdl:input message="p1:mt_pp071_req" /> | ||||
|       <wsdl:output message="p1:mt_pp071_res" /> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:portType> | ||||
|   <wsdl:binding name="si_pp071_mcs_senderBinding" type="p1:si_pp071_mcs_sender"> | ||||
|     <binding transport="http://schemas.xmlsoap.org/soap/http" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|     <wsdl:operation name="si_pp071_mcs_sender"> | ||||
|       <operation soapAction="http://sap.com/xi/WebService/soap1.1" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|       <wsdl:input> | ||||
|         <body use="literal" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <body use="literal" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:binding> | ||||
|   <wsdl:service name="si_pp071_mcs_senderService"> | ||||
|     <wsdl:port name="HTTP_Port" binding="p1:si_pp071_mcs_senderBinding"> | ||||
|       <address location="http://sappoqas.hbglobal.com:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_pp071_mcs_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fpp" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|     </wsdl:port> | ||||
|     <wsdl:port name="HTTPS_Port" binding="p1:si_pp071_mcs_senderBinding"> | ||||
|       <address location="https://sappoqas.hbglobal.com:50001/XISOAPAdapter/MessageServlet?senderParty=&senderService=ZMCS_FLAVOR&receiverParty=&receiverService=&interface=si_pp071_mcs_sender&interfaceNamespace=http%3A%2F%2Fwww.zmc.com%2Fflavor%2Fpp" xmlns="http://schemas.xmlsoap.org/wsdl/soap/" /> | ||||
|     </wsdl:port> | ||||
|   </wsdl:service> | ||||
| </wsdl:definitions> | ||||
| @ -0,0 +1,6 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|   <Results> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://sappoqas.hbglobal.com:50000/dir/wsdl?p=ic/e90f0ead833c328aba271c10a4d823e2" filename="si_mm100_mcs_sender.wsdl" /> | ||||
|   </Results> | ||||
| </DiscoveryClientResultsFile> | ||||
| @ -0,0 +1,10 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <!-- | ||||
|     This file is automatically generated by Visual Studio .Net. It is  | ||||
|     used to store generic object data source configuration information.   | ||||
|     Renaming the file extension or editing the content of this file may    | ||||
|     cause the file to be unrecognizable by the program. | ||||
| --> | ||||
| <GenericObjectDataSource DisplayName="dt_mm100_res" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource"> | ||||
|    <TypeInfo>FactorySystemApi.Sap_Material1.dt_mm100_res, Web References.Sap_Material1.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo> | ||||
| </GenericObjectDataSource> | ||||
| @ -0,0 +1,7 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||
|   <Results> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx?disco" filename="SendPlmMsgInterface.disco" /> | ||||
|     <DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx?wsdl" filename="SendPlmMsgInterface.wsdl" /> | ||||
|   </Results> | ||||
| </DiscoveryClientResultsFile> | ||||
| @ -0,0 +1,6 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/"> | ||||
|   <contractRef ref="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx?wsdl" docRef="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> | ||||
|   <soap address="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx" xmlns:q1="http://tempuri.org/" binding="q1:SendPLMMsgInterfaceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> | ||||
|   <soap address="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx" xmlns:q2="http://tempuri.org/" binding="q2:SendPLMMsgInterfaceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> | ||||
| </discovery> | ||||
| @ -0,0 +1,67 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | ||||
|   <wsdl:types> | ||||
|     <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> | ||||
|       <s:element name="SendMsg"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="userid" type="s:string" /> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="message" type="s:string" /> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="send_system" type="s:string" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|       <s:element name="SendMsgResponse"> | ||||
|         <s:complexType> | ||||
|           <s:sequence> | ||||
|             <s:element minOccurs="0" maxOccurs="1" name="SendMsgResult" type="s:string" /> | ||||
|           </s:sequence> | ||||
|         </s:complexType> | ||||
|       </s:element> | ||||
|     </s:schema> | ||||
|   </wsdl:types> | ||||
|   <wsdl:message name="SendMsgSoapIn"> | ||||
|     <wsdl:part name="parameters" element="tns:SendMsg" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:message name="SendMsgSoapOut"> | ||||
|     <wsdl:part name="parameters" element="tns:SendMsgResponse" /> | ||||
|   </wsdl:message> | ||||
|   <wsdl:portType name="SendPLMMsgInterfaceSoap"> | ||||
|     <wsdl:operation name="SendMsg"> | ||||
|       <wsdl:input message="tns:SendMsgSoapIn" /> | ||||
|       <wsdl:output message="tns:SendMsgSoapOut" /> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:portType> | ||||
|   <wsdl:binding name="SendPLMMsgInterfaceSoap" type="tns:SendPLMMsgInterfaceSoap"> | ||||
|     <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> | ||||
|     <wsdl:operation name="SendMsg"> | ||||
|       <soap:operation soapAction="http://tempuri.org/SendMsg" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:binding> | ||||
|   <wsdl:binding name="SendPLMMsgInterfaceSoap12" type="tns:SendPLMMsgInterfaceSoap"> | ||||
|     <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> | ||||
|     <wsdl:operation name="SendMsg"> | ||||
|       <soap12:operation soapAction="http://tempuri.org/SendMsg" style="document" /> | ||||
|       <wsdl:input> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:input> | ||||
|       <wsdl:output> | ||||
|         <soap12:body use="literal" /> | ||||
|       </wsdl:output> | ||||
|     </wsdl:operation> | ||||
|   </wsdl:binding> | ||||
|   <wsdl:service name="SendPLMMsgInterface"> | ||||
|     <wsdl:port name="SendPLMMsgInterfaceSoap" binding="tns:SendPLMMsgInterfaceSoap"> | ||||
|       <soap:address location="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx" /> | ||||
|     </wsdl:port> | ||||
|     <wsdl:port name="SendPLMMsgInterfaceSoap12" binding="tns:SendPLMMsgInterfaceSoap12"> | ||||
|       <soap12:address location="http://dd.hbflavor.com:8099/PlmMsg/SendPlmMsgInterface.asmx" /> | ||||
|     </wsdl:port> | ||||
|   </wsdl:service> | ||||
| </wsdl:definitions> | ||||
| After Width: | Height: | Size: 31 KiB | 
| @ -0,0 +1,76 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <packages> | ||||
|   <package id="Antlr" version="3.5.0.2" targetFramework="net45" /> | ||||
|   <package id="Aspose.Cells" version="22.8.0" targetFramework="net48" /> | ||||
|   <package id="bootstrap" version="3.4.1" targetFramework="net45" /> | ||||
|   <package id="jQuery" version="3.4.1" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.Mvc.zh-Hans" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.Razor.zh-Hans" version="3.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.Web.Optimization.zh-Hans" version="1.1.3" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.Client" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.Client.zh-Hans" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.Core" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.Core.zh-Hans" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.HelpPage" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebApi.WebHost.zh-Hans" version="5.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNet.WebPages.zh-Hans" version="3.2.7" targetFramework="net45" /> | ||||
|   <package id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.2" targetFramework="net452" /> | ||||
|   <package id="Microsoft.AspNetCore.Http.Extensions" version="1.1.2" targetFramework="net452" /> | ||||
|   <package id="Microsoft.AspNetCore.Http.Features" version="1.1.2" targetFramework="net452" /> | ||||
|   <package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="2.0.1" targetFramework="net45" requireReinstallation="true" /> | ||||
|   <package id="Microsoft.Extensions.Configuration.Abstractions" version="1.1.2" targetFramework="net452" /> | ||||
|   <package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.1.1" targetFramework="net452" /> | ||||
|   <package id="Microsoft.Extensions.FileProviders.Abstractions" version="1.1.1" targetFramework="net452" /> | ||||
|   <package id="Microsoft.Extensions.Options" version="1.1.2" targetFramework="net452" /> | ||||
|   <package id="Microsoft.Extensions.Primitives" version="1.1.1" targetFramework="net452" /> | ||||
|   <package id="Microsoft.Net.Http.Headers" version="1.1.2" targetFramework="net452" /> | ||||
|   <package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net452" /> | ||||
|   <package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" /> | ||||
|   <package id="Modernizr" version="2.8.3" targetFramework="net45" /> | ||||
|   <package id="NETStandard.Library" version="1.6.1" targetFramework="net452" /> | ||||
|   <package id="Newtonsoft.Json" version="13.0.1" targetFramework="net48" /> | ||||
|   <package id="Swashbuckle.Core" version="5.6.0" targetFramework="net45" /> | ||||
|   <package id="System.Buffers" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Collections" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.ComponentModel" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Diagnostics.Contracts" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Diagnostics.Debug" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Diagnostics.Tools" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Diagnostics.Tracing" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Globalization" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.IO" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.IO.Compression" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Linq" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Linq.Expressions" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Net.Http" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Net.Primitives" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.ObjectModel" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Reflection" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Reflection.Extensions" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Reflection.Primitives" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Resources.ResourceManager" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Runtime" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Runtime.CompilerServices.Unsafe" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Runtime.Extensions" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Runtime.InteropServices" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Runtime.Numerics" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Text.Encoding" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Text.Encoding.Extensions" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Text.Encodings.Web" version="4.3.1" targetFramework="net452" /> | ||||
|   <package id="System.Text.RegularExpressions" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Threading" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Threading.Tasks" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Threading.Timer" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="System.Xml.ReaderWriter" version="4.3.0" targetFramework="net452" requireReinstallation="true" /> | ||||
|   <package id="System.Xml.XDocument" version="4.3.0" targetFramework="net452" /> | ||||
|   <package id="WebActivatorEx" version="2.0" targetFramework="net45" /> | ||||
|   <package id="WebGrease" version="1.6.0" targetFramework="net45" /> | ||||
| </packages> | ||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								| @ -0,0 +1,69 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using FactorySystemCommon; | ||||
| using FactorySystemModel.SqlSugarModel; | ||||
| using SqlSugar; | ||||
| 
 | ||||
| namespace FactorySystemBll | ||||
| { | ||||
|     public class OperateLogBll | ||||
|     { | ||||
|         public object GetPageList(Dictionary<string, object> inParam, out int totalCount, string orderBy = "a.FID desc") | ||||
|         { | ||||
|             totalCount = 0; | ||||
|             int pageIndex = 1, pageSize = 10; | ||||
|             List<string> paramName = new List<string>() { "FDeleted!=1" }; | ||||
|             List<SugarParameter> paramVal = new List<SugarParameter>(); | ||||
|             if (inParam != null && inParam.Count > 0) | ||||
|             { | ||||
|                 foreach (var item in inParam) | ||||
|                 { | ||||
|                     if (item.Key == "FPageIndex" || item.Key == "PageIndex") | ||||
|                     { | ||||
|                         int.TryParse(item.Value.ToString(), out pageIndex); | ||||
|                     } | ||||
|                     else if (item.Key == "FPageSize" || item.Key == "PageSize") | ||||
|                     { | ||||
|                         int.TryParse(item.Value.ToString(), out pageSize); | ||||
|                     } | ||||
|                     else | ||||
|                     { | ||||
|                         try | ||||
|                         { | ||||
|                             //检索,全转成字符串 | ||||
|                             paramName.Add(item.Key + "=@" + item.Key); | ||||
|                             paramVal.Add(new SugarParameter("@" + item.Key, item.Value.ToString())); | ||||
|                         } | ||||
|                         catch (Exception) { } | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
|             SqlSugarClient db = AppSettingsHelper.GetSqlSugar(); | ||||
|             var temp = db.Queryable<TFS_OperateLog, TUser>((a, b) => new JoinQueryInfos(JoinType.Left, a.FAddUser == b.FID)) | ||||
|                 .Where(string.Join(" and ", paramName), paramVal).OrderBy(orderBy).Select<dynamic>("a.*,b.FName as FOptUser"); | ||||
|             return temp.ToPageList(pageIndex, pageSize, ref totalCount); | ||||
|         } | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// 保存日志 | ||||
|         /// </summary> | ||||
|         /// <param name="teamId">协同ID</param> | ||||
|         /// <param name="type">来源类型</param> | ||||
|         /// <param name="desc">描述</param> | ||||
|         /// <param name="userId">操作人</param> | ||||
|         public static void Add(int teamId, int type, string desc, int userId) | ||||
|         { | ||||
|             var db = AppSettingsHelper.GetSqlSugar(); | ||||
|             db.Insertable(new TFS_OperateLog | ||||
|             { | ||||
|                 FTeamID = teamId, | ||||
|                 FType = type, | ||||
|                 FDesc = desc, | ||||
|                 FAddUser = userId, | ||||
|                 FAddDate = DateTime.Now | ||||
|             }).ExecuteCommand(); | ||||
|         } | ||||
| 
 | ||||
| 
 | ||||
|     } | ||||
| } | ||||
| @ -0,0 +1,9 @@ | ||||
| <?xml version='1.0' encoding='utf-8'?> | ||||
| <SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="FactorySystemBll.Properties" GeneratedClassName="Settings"> | ||||
|   <Profiles /> | ||||
|   <Settings> | ||||
|     <Setting Name="WeChatMsg" Type="(Web Service URL)" Scope="Application"> | ||||
|       <Value Profile="(Default)">http://dd.hbflavor.com:28888/PlmMsg/SendPLMMsgInterface.asmx</Value> | ||||
|     </Setting> | ||||
|   </Settings> | ||||
| </SettingsFile> | ||||
Some files were not shown because too many files have changed in this diff Show More
					Loading…
					
					
				
		Reference in new issue