You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1671 lines
75 KiB

12 months ago
9 months ago
11 months ago
12 months ago
11 months ago
12 months ago
11 months ago
12 months ago
9 months ago
12 months ago
9 months ago
12 months ago
12 months ago
11 months ago
12 months ago
11 months ago
12 months ago
9 months ago
10 months ago
9 months ago
10 months ago
9 months ago
10 months ago
10 months ago
8 months ago
12 months ago
11 months ago
12 months ago
12 months ago
9 months ago
9 months ago
10 months ago
9 months ago
10 months ago
9 months ago
10 months ago
9 months ago
10 months ago
10 months ago
12 months ago
  1. using NFine.Code;
  2. using NFine.Domain.Entity.SystemManage;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Data.Common;
  6. using NFine.Repository;
  7. using System.Text;
  8. using System;
  9. using System.Configuration;
  10. using NFine.Data;
  11. using System.IO;
  12. using Newtonsoft.Json;
  13. using NFine.Domain._02_ViewModel;
  14. using NFine.Data.Extensions;
  15. using Newtonsoft.Json.Linq;
  16. namespace NFine.Application.SRM
  17. {
  18. public class WatchPanelApp : RepositoryFactory<ModuleEntity>
  19. {
  20. //到货明细
  21. public DataTable GetList1(string queryJson, ref Pagination jqgridparam)
  22. {
  23. var queryParam = queryJson.ToJObject();
  24. OperatorModel oo = NFine.Code.OperatorProvider.Provider.GetCurrent();
  25. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  26. List<DbParameter> parameter = new List<DbParameter>();
  27. string SqlText = @"
  28. select * from (
  29. SELECT *, - ,
  30. CASE WHEN -> 0 THEN '' WHEN > 0 THEN '' ELSE '' END
  31. FROM (
  32. SELECT cc.receiptNo ,dd.orderno ,dd.itemcode ,dd.planqty ,inv.invname ,
  33. isnull((
  34. SELECT SUM (lotqty)
  35. FROM icsitemlot lot with (nolock)
  36. WHERE lot.TransNO=dd.ReceiptNO AND lot.TransLine=dd.ReceiptLine
  37. AND isnull(IQCStatus,'') !='' AND cc.workpoint=lot.workpoint),0) ,
  38. isnull((
  39. SELECT SUM (lotqty)
  40. FROM icsitemlot lot with (nolock)
  41. WHERE lot.TransNO=dd.ReceiptNO AND lot.TransLine=dd.ReceiptLine
  42. AND isnull(IQCStatus,'') !='' AND cc.workpoint=lot.workpoint
  43. AND NOT EXISTS (
  44. SELECT 1 FROM ICSWareHouseLotInfo info
  45. WHERE info.lotno=lot.lotno AND info.workpoint=lot.workpoint)),0)
  46. FROM ICSINVReceipt cc with (nolock)
  47. LEFT JOIN ICSINVReceiptDetail dd with (nolock) ON cc.ReceiptNO=dd.ReceiptNO AND dd.workpoint=cc.workpoint
  48. LEFT JOIN ICSINVENTORY inv with (nolock) ON inv.invcode=dd.itemcode AND dd.workpoint=inv.workpoint
  49. WHERE cc.mtime >=DATEADD(week, -1,getdate())
  50. and cc.workpoint='" + workpoint + @"'
  51. ) ff ) gg
  52. ";
  53. DataTable dt = Repository().FindTablePageBySql_Other(SqlText, "MESconnstr", parameter.ToArray(), ref jqgridparam);
  54. return dt;
  55. }
  56. //来料不合格明细
  57. public DataTable GetList2(string queryJson, ref Pagination jqgridparam)
  58. {
  59. var queryParam = queryJson.ToJObject();
  60. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  61. OperatorModel oo = NFine.Code.OperatorProvider.Provider.GetCurrent();
  62. List<DbParameter> parameter = new List<DbParameter>();
  63. string SqlText = @"
  64. select * from (
  65. SELECT cc.receiptNo ,dd.orderno ,dd.itemcode , inv.invname ,
  66. sum(lot.lotqty) ,kk.CKITEMDESC
  67. FROM ICSINVReceipt cc with (nolock)
  68. LEFT JOIN ICSINVReceiptDetail dd with (nolock) ON cc.ReceiptNO=dd.ReceiptNO AND dd.workpoint=cc.workpoint
  69. LEFT JOIN ICSINVENTORY inv with (nolock) ON inv.invcode=dd.itemcode AND dd.workpoint=inv.workpoint
  70. left join icsitemlot lot with (nolock) on lot.TransNO=dd.ReceiptNO AND lot.TransLine=dd.ReceiptLine
  71. AND cc.workpoint=lot.workpoint
  72. left join (select * from (select ROW_NUMBER()over(partition by LOTNO order by mtime desc,id ) rowId,lotno ,errdata ,
  73. CASE WHEN NG='' THEN CKITEMDESC ELSE NG END CKITEMDESC
  74. from ICSIQCErrList ck with (nolock) where workpoint='" + workpoint + @"' and errdata='' ) as AuctionRecords
  75. where rowId=1) kk on kk.lotno=lot.lotno
  76. WHERE 1=1
  77. and cc.mtime >=DATEADD(MONTH, -1,getdate())
  78. -- and kk.errdata=''
  79. and isnull(lot.iqcstatus,'') =''
  80. and cc.workpoint='" + workpoint + @"'
  81. group by cc.receiptNo ,dd.orderno ,dd.itemcode , inv.invname ,kk.CKITEMDESC ) jj
  82. ";
  83. DataTable dt = Repository().FindTablePageBySql_Other(SqlText, "MESconnstr", parameter.ToArray(), ref jqgridparam);
  84. return dt;
  85. }
  86. //配料信息表
  87. public DataTable GetList3(string queryJson, ref Pagination jqgridparam)
  88. {
  89. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  90. var queryParam = queryJson.ToJObject();
  91. string type = queryParam["type"].ToString();
  92. OperatorModel oo = NFine.Code.OperatorProvider.Provider.GetCurrent();
  93. List<DbParameter> parameter = new List<DbParameter>();
  94. string SqlText = @" if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_TJRdTrans'))
  95. drop table #Temp_TJRdTrans
  96. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_TJRdTransLog'))
  97. drop table #Temp_TJRdTransLog
  98. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_TJResult'))
  99. drop table #Temp_TJResult
  100. select tt.rdcode ,tt.invcode , tt.rdstatus , tt.depname ,tt.fromstoragecode ,
  101. tt.mocode ,'' ,tt.rduser ,tt.mtime , CASE WHEN isnull(tt.actqty,0) !=0 then '' else '' end ,
  102. tt.rdNO,case when PLANQTY<0 then '退' else '' end LogType
  103. into #Temp_TJRdTrans
  104. from ICSRdTransTer tt with (nolock)
  105. left join icsmo mo with (nolock) on mo.mocode=tt.mocode and mo.moseq=tt.moseq and mo.workpoint=tt.workpoint
  106. where tt.rdtype=''
  107. AND TT.MTIME >DATEADD(MONTH, -1, GETDATE())
  108. AND TT.WORKPOINT='" + workpoint + @"'
  109. and CASE WHEN isnull(tt.actqty,0) !=0 then '' else '' end ='" + type + @"'
  110. SELECT * into #Temp_TJRdTransLog FROM (
  111. select LOG.MUSERNAME,LOG.TransNO,LOG.TransLine,LOG.MTIME ,row_number() over (partition by LOG.BUSINESSCODE,LOG.TransNO,LOG.TransLine order by LOG.LOTNO desc,ID) rn
  112. from ICSWareHouseLotInfoLog LOG with (nolock)
  113. WHERE EXISTS(SELECT 1 FROM #Temp_TJRdTrans TT
  114. WHERE tt.rdNO =LOG.TransLine
  115. AND TT.=LOG.TransNO AND LOG.BUSINESSCODE=tt.LogType and ='' )
  116. AND LOG.WORKPOINT='" + workpoint + @"'
  117. ) FF
  118. WHERE RN=1
  119. select distinct ,,,,
  120. CONVERT(varchar(19), , 21) ,CONVERT(varchar(19), , 21) , into #Temp_TJResult
  121. from (
  122. SELECT tt.*,log.MUSERNAME ,log.mtime
  123. FROM #Temp_TJRdTrans tt
  124. LEFT JOIN #Temp_TJRdTransLog log on tt.rdNO =LOG.TransLine AND TT.=LOG.TransNO ) gg ";
  125. DataTable dt = Repository().FindTablePageBySql_OtherTemp(SqlText, " #Temp_TJResult ",
  126. @" if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_TJRdTrans'))
  127. drop table #Temp_TJRdTrans
  128. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_TJRdTransLog'))
  129. drop table #Temp_TJRdTransLog
  130. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_TJResult'))
  131. drop table #Temp_TJResult ",
  132. "MESconnstr", parameter.ToArray(), ref jqgridparam);
  133. return dt;
  134. }
  135. //待入库明细
  136. public DataTable GetList4(string queryJson, ref Pagination jqgridparam)
  137. {
  138. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  139. var queryParam = queryJson.ToJObject();
  140. OperatorModel oo = NFine.Code.OperatorProvider.Provider.GetCurrent();
  141. List<DbParameter> parameter = new List<DbParameter>();
  142. string SqlText = @"
  143. select * from (
  144. SELECT cc.receiptNo ,dd.orderno ,dd.itemcode , inv.invname ,
  145. sum(lot.lotqty) ,(select top 1 bincode from ICSWareHouseLotInfo info where info.lotno=lot.lotno
  146. and info.workpoint=cc.workpoint) ,lot.lotno
  147. FROM ICSINVReceipt cc with (nolock)
  148. LEFT JOIN ICSINVReceiptDetail dd with (nolock) ON cc.ReceiptNO=dd.ReceiptNO AND dd.workpoint=cc.workpoint
  149. LEFT JOIN ICSINVENTORY inv with (nolock) ON inv.invcode=dd.itemcode AND dd.workpoint=inv.workpoint
  150. left join icsitemlot lot with (nolock) on lot.TransNO=dd.ReceiptNO AND lot.TransLine=dd.ReceiptLine AND cc.workpoint=lot.workpoint
  151. left join ICSWareHouseLotInfolog kk with (nolock) on kk.lotno=lot.lotno and kk.workpoint=cc.workpoint and kk.transtype='收'
  152. WHERE 1=1
  153. and kk.lotno is null
  154. and lot.IQCStatus= ''
  155. and cc.mtime >=DATEADD(month, -1,getdate())
  156. and cc.workpoint='" + workpoint + @"'
  157. group by cc.receiptNo ,dd.orderno ,dd.itemcode , inv.invname ,lot.lotno ,kk.tostackcode,cc.workpoint
  158. ) jj
  159. ";
  160. DataTable dt = Repository().FindTablePageBySql_Other(SqlText, "MESconnstr", parameter.ToArray(), ref jqgridparam);
  161. return dt;
  162. }
  163. //生产进度汇总表
  164. public DataTable GetList_WIPJinDu(string queryJson, string filters, ref Pagination jqgridparam)
  165. {
  166. try
  167. {
  168. List<DbParameter> parameter = new List<DbParameter>();
  169. #region 过滤条件
  170. string SQLWhere = "";
  171. if (!queryJson.Contains("[]"))
  172. {
  173. JObject jobject = JObject.Parse(queryJson);
  174. JArray array = JArray.Parse(jobject["value"].ToString());
  175. SQLWhere += " and A.SEGCODE in (";
  176. foreach(JObject j in array) {
  177. SQLWhere += "'" + j["value"].ToString()+"',";
  178. }
  179. SQLWhere= SQLWhere.TrimEnd(',');
  180. SQLWhere += ")";
  181. }
  182. #endregion
  183. string SqlText = GetCaiJiSQL(SQLWhere);
  184. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  185. return dt;
  186. }
  187. catch (Exception ex)
  188. {
  189. WriteLogFile(ex.ToString(), "看板异常");
  190. }
  191. return null;
  192. }
  193. public DataTable GetList_WIPJinDu(string value)
  194. {
  195. try
  196. {
  197. WriteLogFile("参数:"+ value, "看板异常");
  198. List<DbParameter> parameter = new List<DbParameter>();
  199. #region 过滤条件
  200. string SQLWhere = "";
  201. if (!string.IsNullOrEmpty(value))
  202. {
  203. SQLWhere += " and A.SEGCODE in ('" + value .Replace(",","','")+ "')";
  204. }
  205. #endregion
  206. string SqlText = GetCaiJiSQL(SQLWhere);
  207. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  208. return dt;
  209. }
  210. catch (Exception ex)
  211. {
  212. WriteLogFile(ex.ToString(), "看板异常");
  213. }
  214. return null;
  215. }
  216. private string GetCaiJiSQL(string SQLWhere)
  217. {
  218. string SqlText = @"
  219. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMOSelect'))
  220. drop table #TempMOSelect
  221. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempCaiJi'))
  222. drop table #TempCaiJi
  223. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_MINDaJian'))
  224. drop table #Temp_MINDaJian
  225. select distinct lot.lotno,mo.mocode as , mo.moseq ,
  226. a.StartPlanDate as ,c.INVPARSETYPE as ,
  227. mo.ITEMCODE as ,mo.moplanqty as ,lot.lotqty,a.mtime 线,A.SEGCODE AS 线
  228. into #TempMOSelect
  229. from icsmo2user A with (nolock)
  230. inner JOIN ICSMO mo with (nolock) ON A.MOCODE=mo.MOCODE AND A.MOSEQ=mo.MOSEQ
  231. left join ICSITEMLot lot with (nolock) on mo.mocode=lot.transno and mo.moseq=lot.transline
  232. LEFT JOIN ICSINVENTORY C with (nolock) ON C.INVCODE=mo.ITEMCODE
  233. where mo.itemcode like '30%' and a.rcard=''
  234. and a.StartPlanDate >= dateadd(day,-30,getdate())
  235. " + SQLWhere + @"
  236. select hh.lotno,hh.AB面,min(hh.mtime) mtime,tt.lotqty lotqty,,
  237. into #TempCaiJi
  238. from(
  239. select Rcard lotno,case when plane='BOTTOM' then 'B' else 'A' end AB面,min(mtime) mtime
  240. from ICSSZAOIDATA
  241. where Rcard is not null and Rcard!=''
  242. and Rcard in (select lotno from #TempMOSelect)
  243. group by Rcard,case when plane='BOTTOM' then 'B' else 'A' end
  244. union all
  245. select snno lotno,case when type='1' then 'A' else 'B' end AB面,min(data4) mtime
  246. from ICSAIODATA dd
  247. where snno is not null and snno!=''
  248. and snno in (select lotno from #TempMOSelect tt)
  249. group by snno ,case when type='1' then 'A' else 'B' end
  250. ) hh
  251. left join #TempMOSelect tt on hh.lotno=tt.lotno
  252. group by hh.lotno,hh.AB面,tt.lotqty,,
  253. select min(hh.mtime) mtime ,
  254. into #Temp_MINDaJian
  255. from ICSSMTFEEDINGINFO hh
  256. inner join #TempCaiJi tt on hh.mocode=tt.
  257. group by
  258. select * ,
  259. case when is not null and !=0 then cast(Convert(decimal(18,2),*1.0000/*100) as nvarchar) +'%'
  260. else '0%' end
  261. from (
  262. select gg.线,gg. ,gg.AB面,gg. ,gg. ,gg. ,gg.线 ,cc2.mtime ,
  263. (select min(mtime) from #TempCaiJi cc
  264. where cc.=gg. and cc.=gg. and cc.AB面=gg.AB面 ) ,
  265. gg.,
  266. (select sum(lotqty) from #TempCaiJi cc
  267. where cc.=gg. and cc.=gg. and cc.AB面=gg.AB面 )
  268. from (
  269. select cc.AB面,mm., mm.,
  270. mm.,mm.,
  271. mm. ,mm.,min(线) 线,mm.线
  272. from #TempCaiJi cc
  273. left join #TempMOSelect mm with (nolock) on cc.lotno=mm.lotno
  274. group by cc.AB面,mm., mm.,
  275. mm.,mm.,
  276. mm. ,mm.,mm.线
  277. ) gg
  278. left join #Temp_MINDaJian cc2 on cc2.=gg.
  279. ) jj
  280. order by 2,1,3
  281. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMOSelect'))
  282. drop table #TempMOSelect
  283. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempCaiJi'))
  284. drop table #TempCaiJi
  285. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_MINDaJian'))
  286. drop table #Temp_MINDaJian
  287. ";
  288. return SqlText;
  289. }
  290. //项目阶段
  291. public DataTable GetProjectJD()
  292. {
  293. List<DbParameter> parameter = new List<DbParameter>();
  294. string sql = @" select distinct REPLACE(PROJECTSTAGE, '生产确认表', '待装配') NAME from EXP_PROJECTPRODUCTIONSCHEDULE
  295. where OQC is null and not (PROJECTID>='2117101' and PROJECTID<='2117116') and REPLACE(PROJECTSTAGE, '', '') is not null";
  296. DataTable dt = OracleHelper.GetTable(sql, "Oracleconnstr", parameter.ToArray());
  297. return dt;
  298. //DataTable tblDatas = new DataTable("Datas");
  299. //tblDatas.Columns.Add("NAME", Type.GetType("System.String"));
  300. //for (int i = 0; i < 5; i++)
  301. //{
  302. // DataRow newRow;
  303. // newRow = tblDatas.NewRow();
  304. // newRow["NAME"] = i.ToString();
  305. // tblDatas.Rows.Add(newRow);
  306. //}
  307. //return tblDatas;
  308. }
  309. //设备类型
  310. public DataTable GetEQPType()
  311. {
  312. List<DbParameter> parameter = new List<DbParameter>();
  313. string sql = @" select distinct DEVICETYPE NAME from EXP_PROJECTPRODUCTIONSCHEDULE
  314. where OQC is null and not (PROJECTID>='2117101' and PROJECTID<='2117116') and DEVICETYPE is not null ";
  315. DataTable dt = OracleHelper.GetTable(sql, "Oracleconnstr", parameter.ToArray());
  316. return dt;
  317. }
  318. //状态
  319. public DataTable GetStatus()
  320. {
  321. List<DbParameter> parameter = new List<DbParameter>();
  322. string sql = @" select distinct case when PROJECTSTAGE ='FAT完成' then '完成' when PROJECTSTAGE ='FQC' then '完成'
  323. when BEGINDATE like '%-%-%' and TO_DATE(BEGINDATE,'YYYY-MM-DD')-sysdate < 7 and NVL(RTRIM(PROJECTSCHEDULE,'%'),0) <80 then '' else STATUS end NAME
  324. from EXP_PROJECTPRODUCTIONSCHEDULE
  325. where OQC is null and not (PROJECTID>='2117101' and PROJECTID<='2117116')
  326. and case when PROJECTSTAGE ='FAT完成' then '' when PROJECTSTAGE ='FQC' then ''
  327. when BEGINDATE like '%-%-%' and TO_DATE(BEGINDATE,'YYYY-MM-DD')-sysdate < 7 and NVL(RTRIM(PROJECTSCHEDULE,'%'),0) <80 then '' else STATUS end is not null ";
  328. DataTable dt = OracleHelper.GetTable(sql, "Oracleconnstr", parameter.ToArray());
  329. return dt;
  330. }
  331. //生产进度-层析柱Qty
  332. public DataTable GetWIPQty1()
  333. {
  334. try
  335. {
  336. List<DbParameter> parameter = new List<DbParameter>();
  337. string SqlText = @"
  338. SELECT
  339. sum(case when REPLACE( PROJECTSTAGE, '', '' ) like '%%' or
  340. REPLACE( PROJECTSTAGE, '', '' ) not like '%%'
  341. then to_number ( QUANTITY ) else 0 end ) WIPQTY,
  342. sum(case when REPLACE( PROJECTSTAGE, '', '' ) not like '%%' and
  343. REPLACE( PROJECTSTAGE, '', '' ) like '%%'
  344. then to_number ( QUANTITY ) else 0 end ) COMQTY,
  345. sum(to_number ( QUANTITY ) ) ZQTY,
  346. REPLACE( REPLACE( REPLACE( PROJECTSTAGE, '', '' ), '', '' ), '', '' ) PROJECTStr
  347. FROM
  348. EXP_PROJECTPRODUCTIONSCHEDULE
  349. WHERE
  350. 1 = 1
  351. and not (PROJECTID>='2117101' and PROJECTID<='2117116')
  352. and DEVICETYPE in ('EAC系列')
  353. and OQC is null
  354. GROUP BY REPLACE( REPLACE( REPLACE( PROJECTSTAGE, '', '' ), '', '' ), '', '' )
  355. HAVING sum(to_number ( QUANTITY ) )>0 ";
  356. DataTable dt = OracleHelper.GetTable(SqlText, "Oracleconnstr", parameter.ToArray());
  357. return dt;
  358. }
  359. catch (Exception ex)
  360. {
  361. WriteLogFile(ex.ToString(), "看板异常");
  362. }
  363. return null;
  364. }
  365. //生产进度-设备Qty
  366. public DataTable GetWIPQty5()
  367. {
  368. try
  369. {
  370. List<DbParameter> parameter = new List<DbParameter>();
  371. string SqlText = @" SELECT
  372. sum(case when REPLACE( PROJECTSTAGE, '', '' ) like '%%' or
  373. REPLACE( PROJECTSTAGE, '', '' ) not like '%%'
  374. then to_number ( QUANTITY ) else 0 end ) WIPQTY,
  375. sum(case when REPLACE( PROJECTSTAGE, '', '' ) not like '%%' and
  376. REPLACE( PROJECTSTAGE, '', '' ) like '%%'
  377. then to_number ( QUANTITY ) else 0 end ) COMQTY,
  378. sum(to_number ( QUANTITY ) ) ZQTY,
  379. REPLACE( REPLACE( REPLACE( PROJECTSTAGE, '', '' ), '', '' ), '', '' ) PROJECTStr
  380. FROM
  381. EXP_PROJECTPRODUCTIONSCHEDULE
  382. WHERE
  383. 1 = 1
  384. AND NOT ( PROJECTID >= '2117101' AND PROJECTID <= '2117116' )
  385. AND DEVICETYPE NOT IN ( 'SAC系列','EAC系列' )
  386. AND OQC IS NULL
  387. GROUP BY REPLACE( REPLACE( REPLACE( PROJECTSTAGE, '', '' ), '', '' ), '', '' )
  388. HAVING sum(to_number ( QUANTITY ) )>0 ";
  389. DataTable dt = OracleHelper.GetTable(SqlText, "Oracleconnstr", parameter.ToArray());
  390. return dt;
  391. }
  392. catch (Exception ex)
  393. {
  394. WriteLogFile(ex.ToString(), "看板异常");
  395. }
  396. return null;
  397. }
  398. //生产进度 柱状图 (在制数 完成数 )
  399. public DataTable GetWIPQty2()
  400. {
  401. try
  402. {
  403. //生产确认表 有值中: 电装开始 有值 就是已开工,电装开始 无值 就是待开工
  404. List<DbParameter> parameter = new List<DbParameter>();
  405. string SqlText = @" SELECT
  406. SUM(CASE WHEN PRODUCTIONCONFIRM IS NOT NULL AND ELECTRICASSEMBLYSTART IS NOT NULL
  407. THEN to_number(QUANTITY) ELSE 0 END) YKGQty,
  408. SUM(CASE WHEN PRODUCTIONCONFIRM IS NOT NULL AND ELECTRICASSEMBLYSTART IS NULL
  409. THEN to_number(QUANTITY) ELSE 0 END) DKGQty
  410. from EXP_PROJECTPRODUCTIONSCHEDULE
  411. WHERE 1=1 AND PRODUCTIONCONFIRM IS NOT NULL
  412. and not (PROJECTID>='2117101' and PROJECTID<='2117116')
  413. and OQC is null ";
  414. DataTable dt = OracleHelper.GetTable(SqlText, "Oracleconnstr", parameter.ToArray());
  415. return dt;
  416. }
  417. catch (Exception ex)
  418. {
  419. WriteLogFile(ex.ToString(), "看板异常");
  420. }
  421. return null;
  422. }
  423. //设备类型在制数
  424. public DataTable GetWIPQty3()
  425. {
  426. try
  427. {
  428. //生产确认表 有值 FQC 无值
  429. List<DbParameter> parameter = new List<DbParameter>();
  430. string SqlText = @" SELECT
  431. SUM( to_number(QUANTITY) ) Qty,nvl(DEVICETYPE,'') EQPTypeName
  432. from EXP_PROJECTPRODUCTIONSCHEDULE
  433. WHERE 1=1 AND PRODUCTIONCONFIRM IS NOT NULL
  434. and not (PROJECTID>='2117101' and PROJECTID<='2117116')
  435. AND OQC IS NULL
  436. GROUP BY DEVICETYPE ";
  437. DataTable dt = OracleHelper.GetTable(SqlText, "Oracleconnstr", parameter.ToArray());
  438. return dt;
  439. }
  440. catch (Exception ex)
  441. {
  442. WriteLogFile(ex.ToString(), "看板异常");
  443. }
  444. return null;
  445. }
  446. //待开工项目(Qty)
  447. public DataTable GetWIPQty4()
  448. {
  449. try
  450. {
  451. //生产确认表 有值 电装开始 无值
  452. List<DbParameter> parameter = new List<DbParameter>();
  453. string SqlText = @"
  454. SELECT SUM ( to_number ( QUANTITY ) ) Qty,
  455. SUBSTR ( BEGINDATE, 0, 4+instr ( SUBSTR ( BEGINDATE, 6, 3 ), '-' ) ) MonthStr
  456. FROM
  457. EXP_PROJECTPRODUCTIONSCHEDULE
  458. WHERE
  459. 1 = 1
  460. AND( (ELECTRICASSEMBLYSTART IS NULL
  461. AND PRODUCTIONCONFIRM IS NOT NULL
  462. and OQC IS NULL
  463. ) or PROJECTSTAGE='' )
  464. AND BEGINDATE IS NOT NULL
  465. and not (PROJECTID>='2117101' and PROJECTID<='2117116')
  466. GROUP BY
  467. SUBSTR ( BEGINDATE, 0, 4+instr ( SUBSTR ( BEGINDATE, 6, 3 ), '-' ) ),
  468. SUBSTR ( BEGINDATE, 0, 4 ),
  469. to_number ( SUBSTR ( BEGINDATE, 6, instr ( SUBSTR ( BEGINDATE, 6, 3 ), '-' ) - 1 ) )
  470. ORDER BY
  471. SUBSTR ( BEGINDATE, 0, 4 ),
  472. to_number ( SUBSTR ( BEGINDATE, 6, instr ( SUBSTR ( BEGINDATE, 6, 3 ), '-' ) - 1 ) )
  473. ";
  474. DataTable dt = OracleHelper.GetTable(SqlText, "Oracleconnstr", parameter.ToArray());
  475. return dt;
  476. }
  477. catch (Exception ex)
  478. {
  479. WriteLogFile(ex.ToString(), "看板异常");
  480. }
  481. return null;
  482. }
  483. //收货进度
  484. public DataTable GetRCVJingDu()
  485. {
  486. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  487. List<DbParameter> parameter = new List<DbParameter>();
  488. string SqlText = @"
  489. if exists(select* from tempdb..sysobjects where id= object_id('tempdb..#TEMP_ItemCK'))
  490. drop table #TEMP_ItemCK
  491. select sum(lotqty) Qty,cktype
  492. INTO #TEMP_ItemCK
  493. from(
  494. select lot.lotno, lot.lotqty, lot.IQCStatus, lot.step,
  495. case when lot.step= '' and lot.IQCStatus= '' then ''
  496. when isnull(lot.step,'')!='' and lot.IQCStatus='' then ''
  497. when lot.IQCStatus= '' then '' else '' end CKType
  498. from ICSINVReceipt cc with (nolock)
  499. left join ICSINVReceiptDetail dd with (nolock) on cc.ReceiptNO= dd.ReceiptNO and dd.workpoint= cc.workpoint
  500. left join ICSITEMLot lot with (nolock) on lot.mcode= dd.itemcode and lot.TransNO= dd.ReceiptNO
  501. and lot.TransLine= dd.ReceiptLine and dd.workpoint= lot.workpoint
  502. where not exists(select 1 from ICSWareHouseLotInfoLog log with (nolock) where log.lotno= lot.lotno)
  503. and lot.lotno is not null
  504. and cc.workpoint ='" + workpoint + @"'
  505. and cc.mtime >=DATEADD(week, -1,getdate())
  506. ) gg
  507. where cktype!=''
  508. group by cktype
  509. select * from (
  510. SELECT QTY,CKTYPE,cast(CONVERT(DECIMAL(18,2),QTY/(SELECT SUM(QTY) FROM #TEMP_ItemCK )*100) as NVARCHAR) +'%' Qtypercent
  511. from #TEMP_ItemCK
  512. union all
  513. SELECT 0,'', '0%' Qtypercent
  514. where not EXISTS(select 1 from #TEMP_ItemCK where cktype='')
  515. union all
  516. SELECT 0,'', '0%' Qtypercent
  517. where not EXISTS(select 1 from #TEMP_ItemCK where cktype='')
  518. union all
  519. SELECT 0,'', '0%' Qtypercent
  520. where not EXISTS(select 1 from #TEMP_ItemCK where cktype='')
  521. ) ff
  522. order by case CKTYPE when '' then 0 when '' then 1 when '' then 2 else 3 end
  523. ";
  524. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  525. return dt;
  526. }
  527. //到货数量(item)
  528. public DataTable GetRCVQty(string type)
  529. {
  530. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  531. List<DbParameter> parameter = new List<DbParameter>();
  532. string SqlText = "";
  533. switch (type)
  534. {
  535. case "日":
  536. SqlText = @"
  537. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  538. DROP TABLE #TEMP_Itemrr_tt
  539. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  540. DROP TABLE #TEMP_Itemrr_tt2
  541. SELECT CONVERT( VARCHAR ( 100 ), DATEADD( DAY, number *- 1, getdate( ) ), 23 ) AS
  542. INTO #TEMP_Itemrr_tt2
  543. FROM master.dbo.spt_values
  544. WHERE type = 'p'
  545. AND number <= 6 AND number >= 0
  546. SELECT SUM( planqty ) QTY,
  547. CONVERT ( VARCHAR ( 100 ), mtime, 23 )
  548. INTO #TEMP_Itemrr_tt
  549. FROM
  550. ICSINVReceiptDetail
  551. WHERE
  552. mtime >= CONVERT ( VARCHAR ( 10 ), DATEADD( DAY, - 6, getdate( ) ), 23 ) + ' 00:00:00'
  553. AND workpoint = '" + workpoint + @"'
  554. GROUP BY
  555. CONVERT ( VARCHAR ( 100 ), mtime, 23 )
  556. SELECT substring( aa.,6,5) ,
  557. isnull( bb.qty, 0 ) QTY
  558. FROM
  559. #TEMP_Itemrr_tt2 aa
  560. LEFT JOIN #TEMP_Itemrr_tt bb ON aa. = bb.
  561. ORDER BY 1
  562. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  563. DROP TABLE #TEMP_Itemrr_tt
  564. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  565. DROP TABLE #TEMP_Itemrr_tt2 ";
  566. break;
  567. case "周":
  568. SqlText = @"
  569. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  570. DROP TABLE #TEMP_Itemrr_tt
  571. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  572. DROP TABLE #TEMP_Itemrr_tt2
  573. SELECT DATEPART(wk,CONVERT( VARCHAR ( 10 ), DATEADD( week, -1*NUMBER, getdate( ) ),23)+' 00:00:00') AS ,
  574. CONVERT( VARCHAR ( 4 ), DATEADD( week, -1*NUMBER, getdate( ) ),23)
  575. INTO #TEMP_Itemrr_tt2
  576. FROM master.dbo.spt_values
  577. WHERE
  578. type = 'p'
  579. AND number <= 7 AND number >= 0
  580. SELECT SUM( planqty ) QTY,
  581. DATEPART(wk, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23) INTO #TEMP_Itemrr_tt
  582. FROM
  583. ICSINVReceiptDetail with (nolock)
  584. WHERE
  585. mtime >= CONVERT( VARCHAR ( 10 ), DATEADD( week, -7, getdate( ) ),23)+' 00:00:00'
  586. AND workpoint = '" + workpoint + @"'
  587. GROUP BY DATEPART(wk, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23)
  588. ORDER BY CONVERT( VARCHAR ( 4 ),mtime,23),DATEPART(wk, mtime)
  589. SELECT
  590. aa.,
  591. isnull( bb.qty, 0 ) QTY
  592. FROM
  593. #TEMP_Itemrr_tt2 aa
  594. LEFT JOIN #TEMP_Itemrr_tt bb ON aa. = bb. AND aa. = bb.
  595. ORDER BY aa., aa.
  596. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  597. DROP TABLE #TEMP_Itemrr_tt
  598. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  599. DROP TABLE #TEMP_Itemrr_tt2
  600. "; break;
  601. case "月":
  602. SqlText = @"
  603. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  604. DROP TABLE #TEMP_Itemrr_tt
  605. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  606. DROP TABLE #TEMP_Itemrr_tt2
  607. SELECT DATEPART(month,CONVERT( VARCHAR ( 10 ), DATEADD( month, -1*NUMBER, getdate( ) ),23)+' 00:00:00') AS ,
  608. CONVERT( VARCHAR ( 4 ), DATEADD( month, -1*NUMBER, getdate( ) ),23)
  609. INTO #TEMP_Itemrr_tt2
  610. FROM master.dbo.spt_values
  611. WHERE
  612. type = 'p'
  613. AND number <= 11 AND number >= 0
  614. SELECT SUM( planqty ) QTY,
  615. DATEPART(month, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23) INTO #TEMP_Itemrr_tt
  616. FROM
  617. ICSINVReceiptDetail with (nolock)
  618. WHERE
  619. mtime >= CONVERT( VARCHAR ( 10 ), DATEADD( month, -11, getdate( ) ),23)+' 00:00:00'
  620. AND workpoint = '" + workpoint + @"'
  621. GROUP BY DATEPART(month, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23)
  622. ORDER BY CONVERT( VARCHAR ( 4 ),mtime,23),DATEPART(month, mtime)
  623. SELECT
  624. aa.,
  625. isnull( bb.qty, 0 ) QTY
  626. FROM
  627. #TEMP_Itemrr_tt2 aa
  628. LEFT JOIN #TEMP_Itemrr_tt bb ON aa. = bb. AND aa. = bb.
  629. ORDER BY aa., aa.
  630. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  631. DROP TABLE #TEMP_Itemrr_tt
  632. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  633. DROP TABLE #TEMP_Itemrr_tt2
  634. "; break;
  635. case "年": SqlText = @"
  636. SELECT SUM( planqty ) QTY,
  637. CONVERT( VARCHAR ( 4 ),mtime,23)
  638. FROM
  639. ICSINVReceiptDetail with (nolock)
  640. WHERE workpoint = '" + workpoint + @"'
  641. GROUP BY CONVERT( VARCHAR ( 4 ),mtime,23)
  642. ORDER BY CONVERT( VARCHAR ( 4 ),mtime,23)
  643. "; break;
  644. }
  645. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  646. return dt;
  647. }
  648. //入库数量(item)
  649. public DataTable GetWareInQty(string type)
  650. {
  651. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  652. List<DbParameter> parameter = new List<DbParameter>();
  653. string SqlText = "";
  654. switch (type)
  655. {
  656. case "日":
  657. SqlText = @"
  658. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  659. DROP TABLE #TEMP_Itemrr_tt
  660. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  661. DROP TABLE #TEMP_Itemrr_tt2
  662. SELECT CONVERT( VARCHAR ( 100 ), DATEADD( DAY, number *- 1, getdate( ) ), 23 ) AS
  663. INTO #TEMP_Itemrr_tt2
  664. FROM master.dbo.spt_values
  665. WHERE type = 'p'
  666. AND number <= 6 AND number >= 0
  667. SELECT SUM( TRANSQTY ) QTY,
  668. CONVERT ( VARCHAR ( 100 ), MTIME, 23 )
  669. INTO #TEMP_Itemrr_tt
  670. FROM
  671. ICSWareHouseLotInfoLOG log with (nolock)
  672. WHERE
  673. MTIME >= CONVERT ( VARCHAR ( 10 ), DATEADD( DAY, - 6, getdate( ) ), 23 ) + ' 00:00:00'
  674. AND workpoint = '" + workpoint + @"' and log.transtype in ('收','退')
  675. GROUP BY
  676. CONVERT ( VARCHAR ( 100 ), MTIME, 23 )
  677. SELECT substring( aa.,6,5) ,
  678. isnull( bb.qty, 0 ) QTY
  679. FROM
  680. #TEMP_Itemrr_tt2 aa
  681. LEFT JOIN #TEMP_Itemrr_tt bb ON aa. = bb.
  682. ORDER BY 1
  683. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  684. DROP TABLE #TEMP_Itemrr_tt
  685. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  686. DROP TABLE #TEMP_Itemrr_tt2 ";
  687. break;
  688. case "周":
  689. SqlText = @"
  690. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  691. DROP TABLE #TEMP_Itemrr_tt
  692. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  693. DROP TABLE #TEMP_Itemrr_tt2
  694. SELECT DATEPART(wk,CONVERT( VARCHAR ( 10 ), DATEADD( week, -1*NUMBER, getdate( ) ),23)+' 00:00:00') AS ,
  695. CONVERT( VARCHAR ( 4 ), DATEADD( week, -1*NUMBER, getdate( ) ),23)
  696. INTO #TEMP_Itemrr_tt2
  697. FROM master.dbo.spt_values
  698. WHERE
  699. type = 'p'
  700. AND number <= 7 AND number >= 0
  701. SELECT SUM( transqty ) QTY,
  702. DATEPART(wk, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23) INTO #TEMP_Itemrr_tt
  703. FROM
  704. ICSWareHouseLotInfolog log with (nolock)
  705. WHERE
  706. mtime >= CONVERT( VARCHAR ( 10 ), DATEADD( week, -7, getdate( ) ),23)+' 00:00:00'
  707. AND workpoint = '" + workpoint + @"' and log.transtype in ('收','退')
  708. GROUP BY DATEPART(wk, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23)
  709. ORDER BY CONVERT( VARCHAR ( 4 ),mtime,23),DATEPART(wk, mtime)
  710. SELECT
  711. aa.,
  712. isnull( bb.qty, 0 ) QTY
  713. FROM
  714. #TEMP_Itemrr_tt2 aa
  715. LEFT JOIN #TEMP_Itemrr_tt bb ON aa. = bb. AND aa. = bb.
  716. ORDER BY aa., aa.
  717. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  718. DROP TABLE #TEMP_Itemrr_tt
  719. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  720. DROP TABLE #TEMP_Itemrr_tt2
  721. "; break;
  722. case "月":
  723. SqlText = @"
  724. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  725. DROP TABLE #TEMP_Itemrr_tt
  726. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  727. DROP TABLE #TEMP_Itemrr_tt2
  728. SELECT DATEPART(month,CONVERT( VARCHAR ( 10 ), DATEADD( month, -1*NUMBER, getdate( ) ),23)+' 00:00:00') AS ,
  729. CONVERT( VARCHAR ( 4 ), DATEADD( month, -1*NUMBER, getdate( ) ),23)
  730. INTO #TEMP_Itemrr_tt2
  731. FROM master.dbo.spt_values
  732. WHERE
  733. type = 'p'
  734. AND number <= 11 AND number >= 0
  735. SELECT SUM( transqty ) QTY,
  736. DATEPART(month, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23) INTO #TEMP_Itemrr_tt
  737. FROM
  738. ICSWareHouseLotInfolog log with (nolock)
  739. WHERE
  740. mtime >= CONVERT( VARCHAR ( 10 ), DATEADD( month, -11, getdate( ) ),23)+' 00:00:00'
  741. AND workpoint = '" + workpoint + @"' and log.transtype in ('收','退')
  742. GROUP BY DATEPART(month, mtime) ,CONVERT( VARCHAR ( 4 ),mtime,23)
  743. ORDER BY CONVERT( VARCHAR ( 4 ),mtime,23),DATEPART(month, mtime)
  744. SELECT
  745. aa.,
  746. isnull( bb.qty, 0 ) QTY
  747. FROM
  748. #TEMP_Itemrr_tt2 aa
  749. LEFT JOIN #TEMP_Itemrr_tt bb ON aa. = bb. AND aa. = bb.
  750. ORDER BY aa., aa.
  751. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt' ) )
  752. DROP TABLE #TEMP_Itemrr_tt
  753. IF EXISTS ( SELECT * FROM tempdb..sysobjects WHERE id = object_id( 'tempdb..#TEMP_Itemrr_tt2' ) )
  754. DROP TABLE #TEMP_Itemrr_tt2
  755. "; break;
  756. case "年": SqlText = @"
  757. SELECT SUM( transqty ) QTY,
  758. CONVERT( VARCHAR ( 4 ),mtime,23)
  759. FROM
  760. ICSWareHouseLotInfolog log with (nolock)
  761. WHERE workpoint = '" + workpoint + @"' and log.transtype in ('收','退')
  762. GROUP BY CONVERT( VARCHAR ( 4 ),mtime,23)
  763. ORDER BY CONVERT( VARCHAR ( 4 ),mtime,23)
  764. "; break;
  765. }
  766. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  767. return dt;
  768. }
  769. //配料进度
  770. public DataTable GetPeiLiaoJingDu()
  771. {
  772. string workpoint = ConfigurationManager.ConnectionStrings["WorkPointCode"].ConnectionString;
  773. List<DbParameter> parameter = new List<DbParameter>();
  774. string SqlText = @"
  775. select UnDoQty, DoneQty,
  776. case when DoneQty + UnDoQty=0 then '0%' else cast(Convert(decimal(18, 2), DoneQty / (DoneQty + UnDoQty) * 100) as NVARCHAR) + '%' end DoneQtyPer,
  777. case when DoneQty + UnDoQty=0 then '0%' else cast(Convert(decimal(18, 2), UnDoQty / (DoneQty + UnDoQty) * 100) as NVARCHAR) + '%' end UnDoQtyPer
  778. from(
  779. select isnull(sum(case when isnull(actqty, 0) = 0 then planqty else 0 end),0) UnDoQty,
  780. isnull(sum(case when isnull(actqty, 0) = 0 then 0 else actqty end),0) DoneQty
  781. from ICSRdTransTer with (nolock)
  782. where RdType = ''
  783. and planqty > 0 and workpoint ='" + workpoint + @"'
  784. and mtime >=DATEADD(MONTH, -1,getdate())
  785. ) gg
  786. ";
  787. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  788. DataTable retdd = new DataTable();
  789. retdd.Columns.Add("cktype", Type.GetType("System.String"));
  790. retdd.Columns.Add("Qty", Type.GetType("System.Decimal"));
  791. retdd.Columns.Add("Qtypercent", Type.GetType("System.String"));
  792. if (dt != null && dt.Rows.Count > 0)
  793. {
  794. DataRow newRow = retdd.NewRow();
  795. newRow["cktype"] = "待配料";
  796. newRow["Qty"] = Convert.ToDecimal(dt.Rows[0]["UnDoQty"].ToString());
  797. newRow["Qtypercent"] = dt.Rows[0]["UnDoQtyPer"].ToString();
  798. retdd.Rows.Add(newRow);
  799. DataRow newRow2 = retdd.NewRow();
  800. newRow2["cktype"] = "已配料";
  801. newRow2["Qty"] = Convert.ToDecimal(dt.Rows[0]["DoneQty"].ToString());
  802. newRow2["Qtypercent"] = dt.Rows[0]["DoneQtyPer"].ToString();
  803. retdd.Rows.Add(newRow2);
  804. }
  805. else
  806. {
  807. DataRow newRow = retdd.NewRow();
  808. newRow["cktype"] = "待配料";
  809. newRow["Qty"] = 0;
  810. newRow["Qtypercent"] = "0%";
  811. retdd.Rows.Add(newRow);
  812. DataRow newRow2 = retdd.NewRow();
  813. newRow2["cktype"] = "已配料";
  814. newRow2["Qty"] = 0;
  815. newRow2["Qtypercent"] = "0%";
  816. retdd.Rows.Add(newRow2);
  817. }
  818. return retdd;
  819. }
  820. public DataTable GetSScode(string cookie) {
  821. string sql = @"
  822. select distinct a.sscode as name,a.sscode as value,'' as selected
  823. from ICSSS as a,ICSSEG as b,ICSSHIFTTYPE as c
  824. where a.SEGID = b.ID and a.SHIFTTYPEID = c.ID and
  825. b.WorkPoint = a.WorkPoint and c.WorkPoint = a.WorkPoint
  826. order by 1 ";
  827. DataTable table= Repository().GetDataTableBySql_Other(sql, "MESconnstr", null);
  828. foreach (DataRow row in table.Rows)
  829. {
  830. if (!string.IsNullOrEmpty(cookie))
  831. {
  832. JObject jobject = JObject.Parse(cookie);
  833. JArray array = JArray.Parse(jobject["value"].ToString());
  834. foreach (JObject j in array) {
  835. if (j["value"].ToString() == row["value"].ToString())
  836. row["selected"] = "true";
  837. }
  838. }
  839. }
  840. table.AcceptChanges();
  841. return table;
  842. }
  843. public static void WriteLogFile(string input, string txtName)
  844. {
  845. try
  846. {
  847. string logAdress = "C:\\看板日志" + "\\";
  848. if (!System.IO.Directory.Exists(logAdress))
  849. {
  850. System.IO.Directory.CreateDirectory(logAdress);//不存在就创建目录
  851. }
  852. string adress = logAdress + txtName;
  853. if (!System.IO.Directory.Exists(adress))
  854. {
  855. System.IO.Directory.CreateDirectory(adress);//不存在就创建目录
  856. }
  857. // string logAdress = ConfigurationManager.AppSettings["logAdress"].ToString();
  858. /**/
  859. ///指定日志文件的目录
  860. string fname = adress + "\\" + "log" + DateTime.Now.ToString("yy-MM-dd") + ".txt";
  861. /**/
  862. ///定义文件信息对象
  863. FileInfo finfo = new FileInfo(fname);
  864. if (!finfo.Exists)
  865. {
  866. FileStream fs;
  867. fs = File.Create(fname);
  868. fs.Close();
  869. finfo = new FileInfo(fname);
  870. }
  871. /**/
  872. ///判断文件是否存在以及是否大于2K
  873. if (finfo.Length > 1024 * 1024 * 10)
  874. {
  875. /**/
  876. ///文件超过10MB则重命名
  877. File.Move(logAdress + "\\Log\\" + txtName + ".txt", Directory.GetCurrentDirectory() + DateTime.Now.TimeOfDay + "\\Log\\" + txtName + ".txt");
  878. /**/
  879. ///删除该文件
  880. //finfo.Delete();
  881. }
  882. //finfo.AppendText();
  883. /**/
  884. ///创建只写文件流
  885. using (FileStream fs = finfo.OpenWrite())
  886. {
  887. /**/
  888. ///根据上面创建的文件流创建写数据流
  889. StreamWriter w = new StreamWriter(fs);
  890. /**/
  891. ///设置写数据流的起始位置为文件流的末尾
  892. ///设置写数据流的起始位置为文件流的末尾
  893. w.BaseStream.Seek(0, SeekOrigin.End);
  894. w.WriteLine("*****************Start*****************");
  895. w.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  896. /**/
  897. ///写入当前系统时间并换行
  898. /**/
  899. ///写入日志内容并换行
  900. w.WriteLine(input);
  901. /**/
  902. ///写入------------------------------------“并换行
  903. w.WriteLine("------------------END------------------------");
  904. /**/
  905. ///清空缓冲区内容,并把缓冲区内容写入基础流
  906. w.Flush();
  907. /**/
  908. ///关闭写数据流
  909. w.Close();
  910. }
  911. }
  912. catch (Exception ex)
  913. { }
  914. }
  915. public string ConvertDataTableToJson(DataTable dt)
  916. {
  917. StringBuilder sbs = new StringBuilder();
  918. if (dt.Rows.Count > 0)//如果有记录
  919. {
  920. sbs.Append("{'" + dt.TableName + "':[");
  921. string str = "";
  922. foreach (DataRow dr in dt.Rows)//开始拼
  923. {
  924. string result = "";
  925. foreach (DataColumn dc in dt.Columns)
  926. {
  927. result += string.Format(",'{0}':'{1}'",
  928. dc.ColumnName, dr[dc.ColumnName]);
  929. }
  930. result = result.Substring(1);
  931. result = ",{" + result + "}";
  932. str += result;
  933. }
  934. str = str.Substring(1);
  935. sbs.Append(str);
  936. sbs.Append("]}");
  937. }
  938. else//如果没有记录
  939. {
  940. sbs.Append("");
  941. }
  942. return sbs.ToString();
  943. }
  944. #region 执行大看板
  945. public DataTable GetZhiXing_MO(string ItemNumber)
  946. {
  947. string where1 = "";
  948. string SqlText = "";
  949. if (ItemNumber == "30")
  950. {
  951. SqlText = @" if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMOSelect2'))
  952. drop table #TempMOSelect2
  953. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempCaiJi2'))
  954. drop table #TempCaiJi2
  955. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Temp_MINDaJian2'))
  956. drop table #Temp_MINDaJian2
  957. select distinct lot.lotno,mo.mocode as , mo.moseq ,
  958. c.INVPARSETYPE as ,mo.moplanenddate ,
  959. mo.ITEMCODE as ,mo.moplanqty as ,lot.lotqty, A.SEGCODE AS 线 ,c.invname
  960. into #TempMOSelect2
  961. from icsmo2user A with (nolock)
  962. inner JOIN ICSMO mo with (nolock) ON A.MOCODE=mo.MOCODE AND A.MOSEQ=mo.MOSEQ
  963. left join ICSITEMLot lot with (nolock) on mo.mocode=lot.transno and mo.moseq=lot.transline
  964. LEFT JOIN ICSINVENTORY C with (nolock) ON C.INVCODE=mo.ITEMCODE
  965. where mo.itemcode like '30%' and a.rcard=''
  966. and a.StartPlanDate >= dateadd(day,-30,getdate())
  967. select hh.lotno,hh.AB面,min(hh.mtime) mtime,tt.lotqty lotqty,,
  968. into #TempCaiJi2
  969. from(
  970. select Rcard lotno,case when plane='BOTTOM' then 'B' else 'A' end AB面,min(mtime) mtime
  971. from ICSSZAOIDATA
  972. where Rcard is not null and Rcard!=''
  973. and Rcard in (select lotno from #TempMOSelect2)
  974. group by Rcard,case when plane='BOTTOM' then 'B' else 'A' end
  975. union all
  976. select snno lotno,case when type='1' then 'A' else 'B' end AB面,min(data4) mtime
  977. from ICSAIODATA dd
  978. where snno is not null and snno!=''
  979. and snno in (select lotno from #TempMOSelect2 tt)
  980. group by snno ,case when type='1' then 'A' else 'B' end
  981. ) hh
  982. left join #TempMOSelect2 tt on hh.lotno=tt.lotno
  983. group by hh.lotno,hh.AB面,tt.lotqty,,
  984. select min(hh.mtime) mtime ,
  985. into #Temp_MINDaJian2
  986. from ICSSMTFEEDINGINFO hh
  987. inner join #TempCaiJi2 tt on hh.mocode=tt.
  988. group by
  989. select ,AB面,,,Convert(decimal(18,0),) , Convert(decimal(18,0),) ,
  990. case when is not null and !=0 then cast(Convert(decimal(18,2),*1.0000/*100) as nvarchar) +'%'
  991. else '0%' end
  992. from (
  993. select gg. ,gg.AB面, gg., gg.,
  994. gg. ,
  995. (select sum(lotqty) from #TempCaiJi2 cc
  996. where cc.=gg. and cc.=gg. and cc.AB面=gg.AB面 )
  997. from (
  998. select cc.AB面,mm., mm.,
  999. mm.,mm.,
  1000. mm. ,mm.线
  1001. from #TempCaiJi2 cc
  1002. left join #TempMOSelect2 mm with (nolock) on cc.lotno=mm.lotno
  1003. group by cc.AB面,mm., mm.,
  1004. mm.,mm.,
  1005. mm.,mm.线
  1006. ) gg
  1007. left join #Temp_MINDaJian2 cc2 on cc2.=gg.
  1008. ) jj
  1009. order by 2,1,3
  1010. ";
  1011. }
  1012. else
  1013. {
  1014. if (ItemNumber == "60")
  1015. {
  1016. where1 = " and (MO.itemcode like '60%' or MO.itemcode like '70%' ) ";
  1017. }
  1018. else
  1019. {
  1020. where1 = " and (MO.itemcode like '90%' ) ";
  1021. }
  1022. SqlText = @"
  1023. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMOComQty'))
  1024. drop table #TempMOComQty
  1025. select --SUM( dd.lotqty) Qty ,
  1026. sum(cc.qty) COMQTY,dd.transno mocode ,dd.transline
  1027. INTO #TempMOComQty
  1028. from icsitemlot dd with (nolock)
  1029. left join ICSITEMLot2Carton cc with (nolock) on cc.lotno_ID=dd.ID
  1030. inner join icsmo mo with (nolock) on mo.mocode=dd.transno and mo.moseq=dd.transline
  1031. where mo.MOPLANENDDATE>=dateadd(mm,-1,getdate())
  1032. " + where1 + @"
  1033. --and dd.lotno in (select ii.snno lotno from ICSAIODATA ii )
  1034. group by dd.transno ,dd.transline
  1035. select mo.mocode ,inv.invname , Convert(decimal(18,1),mo.moplanqty) ,
  1036. Convert(decimal(18,1),isnull(QQ.COMQTY,0)) ,
  1037. CONVERT(varchar(10), mo.MOPLANENDDATE , 21) ,
  1038. cast(Convert(decimal(18,2),isnull(QQ.COMQTY,0)*1.00/mo.moplanqty*100) as NVARCHAR)+'%'
  1039. from icsmo mo with (nolock)
  1040. left join #TempMOComQty QQ on mo.mocode=qq.mocode and mo.moseq=qq.transline
  1041. left join ICSINVENTORY inv with (nolock) on inv.invcode=mo.itemcode
  1042. where isnull(QQ.COMQTY,0)<mo.moplanqty
  1043. and qq.mocode is not null
  1044. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMOComQty'))
  1045. drop table #TempMOComQty
  1046. ";
  1047. }
  1048. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  1049. return dt;
  1050. }
  1051. public DataTable GetZhiXing_OQC( )
  1052. {
  1053. string SqlText = "";
  1054. SqlText = @"
  1055. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempIPPCC'))
  1056. drop table #TempIPPCC
  1057. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMonthcc'))
  1058. drop table #TempMonthcc
  1059. declare @begin datetime,@end datetime
  1060. set @end=GETDATE()
  1061. declare @months int
  1062. set @months=6
  1063. select convert(varchar(7),DATEADD(month,number*-1+1,@end) ,120) AS
  1064. into #TempMonthcc
  1065. from master.dbo.spt_values
  1066. where type='p'
  1067. AND number<=@months
  1068. and number>=1
  1069. order by 1
  1070. select count(1) Qty,result,
  1071. into #TempIPPCC
  1072. from (
  1073. select distinct ccode, invcode ,result,convert(varchar(7),mtime,120)
  1074. from ICSOQCLotNo
  1075. where mtime>=DATEADD(month,DATEDIFF(month,0,DATEADD(mm, -5, GETDATE() )),0)
  1076. and result in('','')
  1077. ) dd
  1078. group by ,result
  1079. select isnull( case when isnull(gg.QtyAll,0) =0 then 0 else
  1080. Convert(decimal(18,2), (isnull(gg.QtyAll,0)-isnull(FF.QtyNG,0))*1.00/gg.QtyAll*100) end
  1081. ,0) PercentNum,
  1082. cc.
  1083. FROM #TempMonthcc cc
  1084. left join (select sum(qty) QtyAll, from #TempIPPCC hh group by ) GG on cc.=gg.
  1085. left join (select isnull(sum(qty),0) QtyNG, from #TempIPPCC hh where result='' group by ) ff on cc.=ff.
  1086. ORDER BY cc.
  1087. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempIPPCC'))
  1088. drop table #TempIPPCC
  1089. if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#TempMonthcc'))
  1090. drop table #TempMonthcc
  1091. ";
  1092. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  1093. return dt;
  1094. }
  1095. public DataTable GetZhiXing_RCVUnInWare()
  1096. {
  1097. string SqlText = "";
  1098. SqlText = @"
  1099. select A.CCODE , B.LOTNO,a.cInvCode as ,C.INVSTD ,C.INVNAME ,b.transno ,
  1100. A.iQuantity AS ,A.STNO ,CONVERT(varchar(100), a.MTime, 23) MTime ,
  1101. STUFF((select',' + MUSERName from (SELECT DISTINCT MUSERName FROM ICSOQCLotNo d where D.CCODE=a.cCode and d.InvCode=a.cInvCode ) DD for xml path('')),1,1,'')
  1102. from ICSPOArrive a with(nolock)
  1103. inner join icsitemlot b with(nolock) on a.LOTNO=b.LotNO
  1104. LEFT JOIN ICSINVENTORY C with(nolock) ON C.INVCODE = A.cInvCode
  1105. where EXISTS(select 1 from ICSOQCLotNo d with(nolock) where D.CCODE=a.cCode and d.InvCode=a.cInvCode and result='' )
  1106. and not EXISTS(select 1 from ICSWareHouseLotInfoLog ll with(nolock) where ll.lotno=a.lotno and ll.TransType='收')
  1107. order by A.CCODE,a.cInvCode,B.LOTNO ";
  1108. DataTable dt = Repository().GetDataTableBySql_Other(SqlText, "MESconnstr", null);
  1109. return dt;
  1110. }
  1111. #endregion
  1112. //成品发货一览数据源
  1113. public DataTable Get_Table1()
  1114. {
  1115. string SqlText = "";
  1116. SqlText = @"
  1117. select
  1118. a.SDNCode as '' ,ArriveDate
  1119. ,cast(getdate()-a.ArriveDate as int) as ''
  1120. ,case when ISNULL(a.EATTRIBUTE3,'0')='0' then '' when ISNULL(a.EATTRIBUTE3,'0')='1' then '' when ISNULL(a.EATTRIBUTE3,'0')='2' then '' end as ''
  1121. ,a.CreatePerson as ''
  1122. FROM ICSSDN a
  1123. left join [UFDATA_001_2021].dbo.DispatchLists dls on dls.DLID = a.SDNID and dls.irowno = a.Sequence
  1124. WHERE a.WorkPoint='UFDATA_001_2021' AND a.Type='1' AND a.Status<>'3' and a.Quantity-a.SDNQuantity>0
  1125. and a.SDNQuantity + dls.fOutQuantity <> a.Quantity and dls.iQuantity>dls.fOutQuantity and a.WHCode not in ('018','019','020')
  1126. ";
  1127. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1128. return dt;
  1129. }
  1130. //采购未到货一览
  1131. public DataTable Get_Table2()
  1132. {
  1133. string SqlText = "";
  1134. SqlText = @"
  1135. select a.DNCode as '',a.InvCode as '',b.InvStd as '',a.Quantity as '', a.Quantity-a.RCVQuantity as '' ,
  1136. c.VenName as ''
  1137. from ICSDeliveryNotice a
  1138. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1139. inner join dbo.ICSVendor c on a.VenCode=c.VenCode and a.WorkPoint=c.WorkPoint
  1140. where DNType='1' and a.Quantity-a.RCVQuantity>0";
  1141. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1142. return dt;
  1143. }
  1144. //成品未入库
  1145. public DataTable Get_Table3()
  1146. {
  1147. string SqlText = "";
  1148. SqlText = @"
  1149. select f.DepName as '线',e.InvName as '',sum(case when e.AmountEnable='1' then c.Quantity/isnull(e.EATTRIBUTE1,1) else c.Quantity end ) as '' ,
  1150. CASE
  1151. WHEN DATEDIFF(MINUTE, c.ProductDate, GETDATE()) < 60 THEN CAST(DATEDIFF(MINUTE, c.ProductDate, GETDATE()) AS VARCHAR) + ''
  1152. WHEN DATEDIFF(HOUR, c.ProductDate, GETDATE()) < 24 THEN CAST(DATEDIFF(HOUR, c.ProductDate, GETDATE()) AS VARCHAR) + ' ' + CAST((DATEDIFF(MINUTE, c.ProductDate, GETDATE()) % 60) AS VARCHAR) + ''
  1153. ELSE CAST((DATEDIFF(HOUR, c.ProductDate, GETDATE()) / 24) AS VARCHAR) + ' ' + CAST((DATEDIFF(HOUR, c.ProductDate, GETDATE()) % 24) AS VARCHAR) + ' ' + CAST((DATEDIFF(MINUTE, c.ProductDate, GETDATE()) % 60) AS VARCHAR) + ''
  1154. END AS '',
  1155. CASE
  1156. WHEN DATEDIFF(MINUTE, c.ProductDate, GETDATE()) >= 360 THEN 'red'
  1157. WHEN DATEDIFF(MINUTE, c.ProductDate, GETDATE()) >= 180 THEN 'yellow'
  1158. ELSE 'green'
  1159. END AS Status
  1160. from icsmo a
  1161. inner join dbo.ICSInventoryLotDetail b on a.MOCode=b.TransCode and a.Sequence=b.TransSequence and a.WorkPoint=b.WorkPoint
  1162. inner join dbo.ICSInventoryLot c on b.LotNo=c.LotNo and a.WorkPoint=c.WorkPoint and c.Type='3'
  1163. inner join dbo.ICSInventory e on a.InvCode=e.InvCode and a.WorkPoint=e.WorkPoint
  1164. left join dbo.ICSWareHouseLotInfo d on c.LotNo=d.LotNo and a.WorkPoint=b.WorkPoint
  1165. inner join ICSDepartment f on a.DepCode=f.DepCode and a.WorkPoint=f.WorkPoint
  1166. where isnull(d.LotNo,'')=''
  1167. group by c.ProductDate,e.InvName,f.DepName
  1168. order by f.DepName desc , c.ProductDate asc ";
  1169. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1170. return dt;
  1171. }
  1172. //委外加工状态一览
  1173. public DataTable Get_Table4()
  1174. {
  1175. string SqlText = "";
  1176. SqlText = @"
  1177. SELECT
  1178. A.OOCode AS '','' as '','' as '',MOS.dStartDate as ''
  1179. FROM ICSOutsourcingOrder a
  1180. --
  1181. left join [UFDATA_001_2021].dbo.OM_MOMain MO on MO.cCode = a.OOCode
  1182. --
  1183. left join [UFDATA_001_2021].dbo.OM_MODetails MOS on MOS.MOID = MO.MOID AND a.Sequence=MOS.iVouchRowNo
  1184. --
  1185. left join [UFDATA_001_2021].dbo.OM_MOMaterials MOM on MOM.MoDetailsID = MOS.MoDetailsID
  1186. where MOM.iQuantity>iSendQTY and MO.cState='1'
  1187. GROUP BY A.OOCode,MOS.dStartDate
  1188. order by MOS.dStartDate desc";
  1189. DataTable dt = SqlHelper.GetDataTableBySql(SqlText) ;
  1190. return dt;
  1191. }
  1192. //委外到货
  1193. public DataTable Get_Table5()
  1194. {
  1195. string SqlText = "";
  1196. SqlText = @"
  1197. select a.ODNCode as '',a.InvCode as '',b.InvStd as '',a.Quantity as '', a.Quantity-a.RCVQuantity as '' ,
  1198. c.VenName as ''
  1199. from ICSODeliveryNotice a
  1200. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1201. inner join dbo.ICSVendor c on a.VenCode=c.VenCode and a.WorkPoint=c.WorkPoint
  1202. where ODNType='1' and a.Quantity-a.RCVQuantity>0";
  1203. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1204. return dt;
  1205. }
  1206. //调拨
  1207. public DataTable Get_Table6()
  1208. {
  1209. string SqlText = "";
  1210. SqlText = @"
  1211. select a.,a.,a.,a.,
  1212. case when a.线='021' then 'L1' when a.线='022' then 'L2' when a.线='023' then 'L3' when a.线='024' then 'L4'
  1213. when a.线='025' then 'L5' when a.线='026' then 'L6' when a.线='027' then 'L7' when a.线='015' then 'C1' end as '线'
  1214. ,a. from (
  1215. select a.,a.,
  1216. sum(case when a.Flag='负' then -1*a. else a. end ) as ,
  1217. case when a.F not in ('021','022','023','024','025','026','027','015') and a.T in ('021','022','023','024','025','026','027','015') then a.T
  1218. when a.F = '015' and a.T in ('021','022','023','024','025','026','027') then a.T
  1219. when a.F in ('021','022','023','024','025','026','027') and a.T='015' then a.F
  1220. else a.F end as '线'
  1221. ,a. ,a.T as ''
  1222. from(
  1223. select a.InvCode as '',b.InvName+'|'+b.InvStd as '',
  1224. case when b.AmountEnable='1' then a.Quantity/b.EATTRIBUTE1 else a.Quantity end '',
  1225. a.FromWarehouseCode as 'F',
  1226. a.ToWarehouseCode as 'T',
  1227. case when a.FromWarehouseCode not in('021','022','023','024','025','026','027','015') and a.ToWarehouseCode in ('021','022','023','024','025','026','027','015') then '正' else '负' end Flag ,
  1228. format(a.MTIME , 'yyyy-MM-dd') as ''
  1229. from dbo.ICSWareHouseLotInfoLog a
  1230. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1231. inner join dbo.ICSWarehouse c on a.ToWarehouseCode=c.WarehouseCode and a.WorkPoint=c.WorkPoint
  1232. where BusinessCode in ('70','47') and a.TransType in ('6','14') and format(a.MTIME , 'yyyy-MM-dd') =format(getdate() , 'yyyy-MM-dd')
  1233. and (a.FromWarehouseCode in('021','022','023','024','025','026','027')or a.ToWarehouseCode in('021','022','023','024','025','026','027'))
  1234. )a
  1235. group by a. ,a.,a.,a.F,a.T
  1236. ) a ";
  1237. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1238. return dt;
  1239. }
  1240. //库存
  1241. public DataTable Get_KCInfo()
  1242. {
  1243. string SqlText = "";
  1244. SqlText = @"
  1245. select
  1246. cast(sum( case when a.WarehouseCode='001' then a.Quantity else 0 end )/1000 as decimal(18,2)) as YCL,
  1247. cast(sum( case when a.WarehouseCode='003' then a.Quantity else 0 end )/1000 as decimal(18,2)) as CP,
  1248. cast(sum( case when a.WarehouseCode='004' then a.Quantity else 0 end )/1000 as decimal(18,2))as FQ,
  1249. cast(sum( case when a.WarehouseCode='005' then a.Quantity else 0 end )/1000 as decimal(18,2))as FCP,
  1250. cast(sum( case when a.WarehouseCode='006' then a.Quantity else 0 end )/1000 as decimal(18,2))as ZLL,
  1251. cast(sum(case when a.WarehouseCode='002' then a.Quantity/isnull(b.EATTRIBUTE1,1) else 0 end ) as decimal(18,2)) as BHM
  1252. from dbo.ICSWareHouseLotInfo a
  1253. left join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint";
  1254. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1255. return dt;
  1256. }
  1257. //数据条数
  1258. public DataTable Get_InfoNum()
  1259. {
  1260. string SqlText = "";
  1261. SqlText = @"
  1262. select count(*) as CPFH
  1263. into #Temp1
  1264. from ( select
  1265. a.SDNCode as '' ,ArriveDate
  1266. ,cast(getdate()-a.ArriveDate as int) as ''
  1267. ,case when ISNULL(a.EATTRIBUTE3,'0')='0' then '' when ISNULL(a.EATTRIBUTE3,'0')='1' then '' when ISNULL(a.EATTRIBUTE3,'0')='2' then '' end as ''
  1268. ,a.CreatePerson as ''
  1269. FROM ICSSDN a
  1270. left join [UFDATA_001_2021].dbo.DispatchLists dls on dls.DLID = a.SDNID and dls.irowno = a.Sequence
  1271. WHERE a.WorkPoint='UFDATA_001_2021' AND a.Type='1' AND a.Status<>'3' and a.Quantity-a.SDNQuantity>0
  1272. and a.SDNQuantity + dls.fOutQuantity <> a.Quantity and dls.iQuantity>dls.fOutQuantity and a.WHCode not in ('018','019','020')
  1273. )a
  1274. select count(*) as CGWDH
  1275. into #Temp2 from (select a.DNCode as '',a.InvCode as '',b.InvStd as '',a.Quantity as '', a.Quantity-a.RCVQuantity as '' ,
  1276. c.VenName as ''
  1277. from ICSDeliveryNotice a
  1278. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1279. inner join dbo.ICSVendor c on a.VenCode=c.VenCode and a.WorkPoint=c.WorkPoint
  1280. where DNType='1' and a.Quantity-a.RCVQuantity>0
  1281. )b
  1282. select count(*) as CPWRK into #Temp3 from (
  1283. select f.DepName as '线',e.InvName as '',sum(case when e.AmountEnable='1' then c.Quantity/isnull(e.EATTRIBUTE1,1) else c.Quantity end ) as '' ,
  1284. CASE
  1285. WHEN DATEDIFF(MINUTE, c.ProductDate, GETDATE()) < 60 THEN CAST(DATEDIFF(MINUTE, c.ProductDate, GETDATE()) AS VARCHAR) + ''
  1286. WHEN DATEDIFF(HOUR, c.ProductDate, GETDATE()) < 24 THEN CAST(DATEDIFF(HOUR, c.ProductDate, GETDATE()) AS VARCHAR) + ' ' + CAST((DATEDIFF(MINUTE, c.ProductDate, GETDATE()) % 60) AS VARCHAR) + ''
  1287. ELSE CAST((DATEDIFF(HOUR, c.ProductDate, GETDATE()) / 24) AS VARCHAR) + ' ' + CAST((DATEDIFF(HOUR, c.ProductDate, GETDATE()) % 24) AS VARCHAR) + ' ' + CAST((DATEDIFF(MINUTE, c.ProductDate, GETDATE()) % 60) AS VARCHAR) + ''
  1288. END AS '',
  1289. CASE
  1290. WHEN DATEDIFF(MINUTE, c.ProductDate, GETDATE()) >= 360 THEN 'red'
  1291. WHEN DATEDIFF(MINUTE, c.ProductDate, GETDATE()) >= 180 THEN 'yellow'
  1292. ELSE 'green'
  1293. END AS Status
  1294. from icsmo a
  1295. inner join dbo.ICSInventoryLotDetail b on a.MOCode=b.TransCode and a.Sequence=b.TransSequence and a.WorkPoint=b.WorkPoint
  1296. inner join dbo.ICSInventoryLot c on b.LotNo=c.LotNo and a.WorkPoint=c.WorkPoint and c.Type='3'
  1297. inner join dbo.ICSInventory e on a.InvCode=e.InvCode and a.WorkPoint=e.WorkPoint
  1298. left join dbo.ICSWareHouseLotInfo d on c.LotNo=d.LotNo and a.WorkPoint=b.WorkPoint
  1299. inner join ICSDepartment f on a.DepCode=f.DepCode and a.WorkPoint=f.WorkPoint
  1300. where isnull(d.LotNo,'')=''
  1301. group by c.ProductDate,e.InvName,f.DepName
  1302. )c
  1303. select count(*) as WWJG into #Temp4 from (
  1304. SELECT
  1305. A.OOCode AS '','' as '','' as '',MOS.dStartDate as ''
  1306. FROM ICSOutsourcingOrder a
  1307. --
  1308. left join [UFDATA_001_2021].dbo.OM_MOMain MO on MO.cCode = a.OOCode
  1309. --
  1310. left join [UFDATA_001_2021].dbo.OM_MODetails MOS on MOS.MOID = MO.MOID AND a.Sequence=MOS.iVouchRowNo
  1311. --
  1312. left join [UFDATA_001_2021].dbo.OM_MOMaterials MOM on MOM.MoDetailsID = MOS.MoDetailsID
  1313. where MOM.iQuantity>iSendQTY and MO.cState='1'
  1314. GROUP BY A.OOCode,MOS.dStartDate
  1315. )d
  1316. select count(*) as DB into #Temp5 from(
  1317. select a.,a.,a.,a.,
  1318. case when a.线='021' then 'L1' when a.线='022' then 'L2' when a.线='023' then 'L3' when a.线='024' then 'L4'
  1319. when a.线='025' then 'L5' when a.线='026' then 'L6' when a.线='027' then 'L7' when a.线='015' then 'C1' end as '线'
  1320. ,a. from (
  1321. select a.,a.,
  1322. sum(case when a.Flag='负' then -1*a. else a. end ) as ,
  1323. case when a.F not in ('021','022','023','024','025','026','027','015') and a.T in ('021','022','023','024','025','026','027','015') then a.T
  1324. when a.F = '015' and a.T in ('021','022','023','024','025','026','027') then a.T
  1325. when a.F in ('021','022','023','024','025','026','027') and a.T='015' then a.F
  1326. else a.F end as '线'
  1327. ,a. ,a.T as ''
  1328. from(
  1329. select a.InvCode as '',b.InvName+'|'+b.InvStd as '',
  1330. case when b.AmountEnable='1' then a.Quantity/b.EATTRIBUTE1 else a.Quantity end '',
  1331. a.FromWarehouseCode as 'F',
  1332. a.ToWarehouseCode as 'T',
  1333. case when a.FromWarehouseCode not in('021','022','023','024','025','026','027','015') and a.ToWarehouseCode in ('021','022','023','024','025','026','027','015') then '正' else '负' end Flag ,
  1334. format(a.MTIME , 'yyyy-MM-dd') as ''
  1335. from dbo.ICSWareHouseLotInfoLog a
  1336. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1337. inner join dbo.ICSWarehouse c on a.ToWarehouseCode=c.WarehouseCode and a.WorkPoint=c.WorkPoint
  1338. where BusinessCode in ('70','47') and a.TransType in ('6','14') and format(a.MTIME , 'yyyy-MM-dd') =format(getdate() , 'yyyy-MM-dd')
  1339. and (a.FromWarehouseCode in('021','022','023','024','025','026','027')or a.ToWarehouseCode in('021','022','023','024','025','026','027'))
  1340. )a
  1341. group by a. ,a.,a.,a.F,a.T
  1342. ) a
  1343. )e
  1344. select count(*) as WWWDH into #Temp6 from (
  1345. select (select count(*) from ICSODeliveryNotice a
  1346. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1347. inner join dbo.ICSVendor c on a.VenCode=c.VenCode and a.WorkPoint=c.WorkPoint
  1348. where ODNType='1' and a.Quantity-a.RCVQuantity>0) as co, a.ODNCode as '',a.InvCode as '',b.InvStd as '',a.Quantity as '', a.Quantity-a.RCVQuantity as '' ,
  1349. c.VenName as ''
  1350. from ICSODeliveryNotice a
  1351. inner join dbo.ICSInventory b on a.InvCode=b.InvCode and a.WorkPoint=b.WorkPoint
  1352. inner join dbo.ICSVendor c on a.VenCode=c.VenCode and a.WorkPoint=c.WorkPoint
  1353. where ODNType='1' and a.Quantity-a.RCVQuantity>0
  1354. )f
  1355. select a.CPFH,b.CGWDH,c.CPWRK,d.WWJG,e.DB,f.WWWDH from #Temp1 a
  1356. left join #Temp2 b on 1=1
  1357. left join #Temp3 c on 1=1
  1358. left join #Temp4 d on 1=1
  1359. left join #Temp5 e on 1=1
  1360. left join #Temp6 f on 1=1
  1361. drop table #Temp1,#Temp2,#Temp3,#Temp4,#Temp5,#Temp6";
  1362. DataTable dt = SqlHelper.GetDataTableBySql(SqlText);
  1363. return dt;
  1364. }
  1365. }
  1366. }