From 002fb00dc0a3845bf9f85bd3a12fe8d3f15a5c6a Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期一, 27 五月 2024 13:39:56 +0800 Subject: [PATCH] 1、销售出库维护页面:删除功能报错 2.网页端删除报错,如果是条码生成的应该在删除界面提示这张销售出库是条码生成,请去PDA缓存列表删除,如果是下推产生,应该可以直接删除。 --- WebTM/Web.config | 31 +++++++++++++++++++++++-------- 1 files changed, 23 insertions(+), 8 deletions(-) diff --git a/WebTM/Web.config b/WebTM/Web.config index a2666c2..3903a18 100644 --- a/WebTM/Web.config +++ b/WebTM/Web.config @@ -4,11 +4,26 @@ http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> - <system.web> - <compilation debug="true" targetFramework="4.5" /> - <httpRuntime targetFramework="4.5" /> - </system.web> - <appSettings> - <add key="Name" value="61.130.49.162:9090/WMSAPI///" /> - </appSettings> -</configuration> \ No newline at end of file + <system.web> + <compilation debug="true" targetFramework="4.5" /> + <httpRuntime targetFramework="4.5" maxQueryStringLength="102400" /> + </system.web> + <appSettings> + <add key="Name" value="61.130.49.162:9090/WMSAPI///" /> + </appSettings> + <system.webServer> + <staticContent> + <remove fileExtension=".grf" /> + <mimeMap fileExtension=".grf" mimeType="text/xml" /> + </staticContent> + <handlers> + <remove name="StaticFile" /> + <add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule" resourceType="Either" requireAccess="Read" /> + </handlers> + <security> + <requestFiltering> + <requestLimits maxAllowedContentLength="10485760" maxQueryString="10485760" /> <!--璁剧疆鍙傛暟鍐呭鐨勬渶澶ч暱搴︿负10MB锛岄粯璁ゆ槸4MB,鏈�澶ф敮鎸�2GB--> + </requestFiltering> + </security> + </system.webServer> +</configuration> -- Gitblit v1.9.1