product.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /**
  2. * 成品服务
  3. * 冯海夫
  4. * 20201008
  5. */
  6. var ServiceProduct = {
  7. // 待发货成品
  8. getWatingSendList: function () {
  9. return getService.methodGet("/fbsDispatchList/fbsDispatchList/getWatingSendList");
  10. // const productList = [];
  11. // productList.push({
  12. // warehouseName: "A仓库",
  13. // materialCode: "10001",
  14. // materialName: "物料A",
  15. // specs: "3*4",
  16. // sendSum: "10",
  17. // planSendDate: "09月18日"
  18. // });
  19. // productList.push({
  20. // warehouseName: "A仓库",
  21. // materialCode: "10002",
  22. // materialName: "物料B",
  23. // specs: "3*4",
  24. // sendSum: "20",
  25. // planSendDate: "09月18日"
  26. // });
  27. // productList.push({
  28. // warehouseName: "A仓库",
  29. // materialCode: "10003",
  30. // materialName: "物料C",
  31. // specs: "3*4",
  32. // sendSum: "30",
  33. // planSendDate: "09月18日"
  34. // });
  35. // productList.push({
  36. // warehouseName: "B仓库",
  37. // materialCode: "10004",
  38. // materialName: "物料D",
  39. // specs: "3*4",
  40. // sendSum: "40",
  41. // planSendDate: "09月18日"
  42. // });
  43. // productList.push({
  44. // warehouseName: "B仓库",
  45. // materialCode: "10005",
  46. // materialName: "物料E",
  47. // specs: "3*4",
  48. // sendSum: "50",
  49. // planSendDate: "09月18日"
  50. // });
  51. // productList.push({
  52. // warehouseName: "B仓库",
  53. // materialCode: "10006",
  54. // materialName: "物料F",
  55. // specs: "3*4",
  56. // sendSum: "60",
  57. // planSendDate: "09月18日"
  58. // });
  59. // return productList;
  60. },
  61. // 已入库数量
  62. getSendSum: function () {
  63. return getService.methodPost("/fbsDispatchList/fbsDispatchList/getSendSum");
  64. // return 9;
  65. },
  66. // 月成品出货统计,根据成品维度
  67. getMonthSend: function () {
  68. // return getService.methodGet("/fbsRdrecord32/fbsRdrecords32/getMonthSend");
  69. var map=getService.methodGet("/fbsDispatchLists/fbsDispatchLists/getProjectDelivery")
  70. console.log(map)
  71. if(map){
  72. var remainingQuantity=5-(Object.keys(map).length%5);
  73. if(remainingQuantity!=5){
  74. for(var i=0;i<remainingQuantity;i++){
  75. var bu="补"+i
  76. console.log(bu)
  77. map[bu]="";
  78. }
  79. }
  80. if(Object.keys(map).length==0){
  81. map={
  82. "补1":0,
  83. "补2":0,
  84. "补3":0,
  85. "补4":0,
  86. "补5":0
  87. }
  88. }
  89. }else{
  90. map={
  91. "补1":0,
  92. "补2":0,
  93. "补3":0,
  94. "补4":0,
  95. "补5":0
  96. }
  97. }
  98. return map;
  99. // return {
  100. // "成品A": 20,
  101. // "成品B": 100,
  102. // "成品C": 80,
  103. // "成品D": 150,
  104. // "成品E": 200,
  105. // };
  106. },
  107. // 月项目发货统计,根据项目维度
  108. getMonthSendByProject: function () {
  109. // return {
  110. // "项目A": 20,
  111. // "项目B": 100,
  112. // "项目C": 80,
  113. // "项目D": 150,
  114. // "项目E": 200,
  115. // };
  116. var getMonthSendByProject=MethodGetService.methodGet("/fbsDispatchLists/fbsDispatchLists/getMonthSendByProject");
  117. return getMonthSendByProject;
  118. },
  119. // 成品库存,物料维度
  120. getStockList: function () {
  121. var map=getService.methodGet("/fbsInventory/fbsInventory/getAllStockList")
  122. if(map){
  123. var remainingQuantity=5-(Object.keys(map).length%5);
  124. if(remainingQuantity!=5){
  125. for(var i=0;i<remainingQuantity;i++){
  126. var bu="补"+i
  127. console.log(bu)
  128. map[bu]="";
  129. }
  130. }
  131. }
  132. return map;
  133. // return {
  134. // "成品A": 800,
  135. // "成品B": 900,
  136. // "成品C": 1000,
  137. // "成品D": 700,
  138. // "成品E": 600,
  139. // "成品F": 1100,
  140. // "成品G": 500
  141. // };
  142. },
  143. // 根据产品分类获取质量异常数量
  144. getQualityExceptionByCategory: function () {
  145. return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getAbnormalHoursMonthReport");
  146. // return {
  147. // "分类A": 800,
  148. // "分类B": 900,
  149. // "分类C": 1000,
  150. // "分类D": 700,
  151. // "分类E": 600,
  152. // "分类F": 1100,
  153. // "分类G": 500
  154. // };
  155. },
  156. // 某月产品良数量
  157. getMonthGood: function () {
  158. // const list = [];
  159. // list.push({
  160. // label: "产品A",
  161. // sum1: 48,
  162. // sum2: 50
  163. // });
  164. // list.push({
  165. // label: "产品B",
  166. // sum1: 80,
  167. // sum2: 90
  168. // });
  169. // list.push({
  170. // label: "产品C",
  171. // sum1: 47,
  172. // sum2: 50
  173. // });
  174. // list.push({
  175. // label: "产品D",
  176. // sum1: 40,
  177. // sum2: 50
  178. // });
  179. // list.push({
  180. // label: "产品E",
  181. // sum1: 42,
  182. // sum2: 50
  183. // });
  184. // list.push({
  185. // label: "产品F",
  186. // sum1: 44,
  187. // sum2: 50
  188. // });
  189. // list.push({
  190. // label: "产品G",
  191. // sum1: 45,
  192. // sum2: 50
  193. // });
  194. // return list;
  195. var list=MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHours/getRejectsNumber")
  196. if(list){
  197. var remainingQuantity=3-(list.length%3);
  198. if(remainingQuantity!=3){
  199. for(var i=0;i<remainingQuantity;i++){
  200. var bu="补"+i
  201. list.push({label: bu,sum1:0,sum2:0})
  202. }
  203. }
  204. }
  205. return list;
  206. },
  207. // 月制程异常,根据分类
  208. getMonthExceptionByCategory: function () {
  209. // return {
  210. // "分类A": 600,
  211. // "分类B": 500,
  212. // "分类C": 300,
  213. // "分类D": 200,
  214. // "分类E": 100,
  215. // "分类F": 200,
  216. // "分类G": 400
  217. // };
  218. // return MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHours/getQualityType");
  219. // var map=MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHoursDescribe/getMonthExceptionByCategory")
  220. var list=MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHoursDescribe/getMonthExceptionByCategoryTwo")
  221. // if(list&&list.length>0){
  222. // var remainingQuantity=3-(list.length%3);
  223. // if(remainingQuantity!=3){
  224. // for(var i=0;i<remainingQuantity;i++){
  225. // var bu="补"+i
  226. // list.push({label: bu,sum1:0,sum2:0})
  227. // }
  228. // }
  229. // }else{
  230. // list=[
  231. // {label:"分类A",sum1: 0,sum2:100},
  232. // {label:"分类B",sum1: 0,sum2:100},
  233. // {label:"分类C",sum1: 0,sum2:100}
  234. // ]
  235. // }
  236. if(list&&list.length>0){
  237. list.forEach(element => {
  238. element.sum2=element.sum1
  239. });
  240. var remainingQuantity=3-(list.length%3);
  241. if(remainingQuantity!=3){
  242. for(var i=0;i<remainingQuantity;i++){
  243. var bu="补"+i
  244. list.push({label: bu,sum1:0,sum2:0})
  245. }
  246. }
  247. }else{
  248. list=[
  249. {label:"分类A",sum1:0,sum2:0},
  250. {label:"分类B",sum1:0,sum2:0},
  251. {label:"分类C",sum1:0,sum2:0}
  252. ]
  253. }
  254. return list;
  255. },
  256. // 周成品入库数量,根据分类
  257. getWeekInByCategory: function () {
  258. // return {
  259. // "分类A": 500,
  260. // "分类B": 600,
  261. // "分类C": 800,
  262. // "分类D": 700,
  263. // "分类E": 600,
  264. // "分类F": 400,
  265. // "分类G": 500
  266. // };
  267. var map =MethodGetService.methodGet("/fbsMomOrder/fbsMomOrderdetail/getQualifiedInQtyWeek");
  268. if(map&&Object.keys(map).length>0){
  269. var remainingQuantity=3-(Object.keys(map).length%3);
  270. if(remainingQuantity!=3){
  271. for(var i=0;i<remainingQuantity;i++){
  272. var bu="补"+i
  273. console.log(bu)
  274. map[bu]="";
  275. }
  276. }
  277. }else{
  278. map={
  279. "分类A": 0,
  280. "分类B": 0,
  281. "分类C": 0
  282. }
  283. }
  284. return map;
  285. },
  286. // 生产效率
  287. getProduceRate: function () {
  288. // const rate = 95;
  289. // rate=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProductionEfficiency");
  290. // var listOfData=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getSumDispatchReport?def1=1");
  291. // var productivityTotal=0
  292. // listOfData.forEach(element => {
  293. // let standardWorkingHoursActualTotal=element.standardWorkingHoursActualTotal;//实际标准工时
  294. // let manHoursCompletedTotal=element.manHoursCompletedTotal;//完成工时
  295. // if(element.projectName==="统计"){
  296. // productivityTotal=((Number(standardWorkingHoursActualTotal)/Number(manHoursCompletedTotal))*100).toFixed(1)
  297. // }
  298. // });
  299. // return {
  300. // name: "当月生产效率",
  301. // value: productivityTotal
  302. // };
  303. var produceRate=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProduceRateTotal");
  304. return {
  305. name: "当月生产效率",
  306. value: produceRate
  307. };
  308. },
  309. // 日生产效率
  310. getDayProduceRate: function () {
  311. // const rate = 90;
  312. // rate=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProductionEfficiency?type=1");
  313. // return {
  314. // name: "生产效率",
  315. // value: rate
  316. // };
  317. var produceRate=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProduceRateTotal");
  318. return {
  319. name: "生产效率",
  320. value: produceRate
  321. };
  322. },
  323. // 某日产品良数量
  324. getDayGood: function () {
  325. // const list = [];
  326. // list.push({
  327. // label: "产品A",
  328. // sum1: 48,
  329. // sum2: 50
  330. // });
  331. // list.push({
  332. // label: "产品B",
  333. // sum1: 80,
  334. // sum2: 90
  335. // });
  336. // list.push({
  337. // label: "产品C",
  338. // sum1: 47,
  339. // sum2: 50
  340. // });
  341. // list.push({
  342. // label: "产品D",
  343. // sum1: 40,
  344. // sum2: 50
  345. // });
  346. // list.push({
  347. // label: "产品E",
  348. // sum1: 42,
  349. // sum2: 50
  350. // });
  351. // list.push({
  352. // label: "产品F",
  353. // sum1: 44,
  354. // sum2: 50
  355. // });
  356. // list.push({
  357. // label: "产品G",
  358. // sum1: 45,
  359. // sum2: 50
  360. // });
  361. // return list;
  362. var list=MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHours/getRejectsNumber?type=1")
  363. if(list){
  364. var remainingQuantity=3-(list.length%3);
  365. if(remainingQuantity!=3){
  366. for(var i=0;i<remainingQuantity;i++){
  367. var bu="补"+i
  368. list.push({label: bu,sum1:0,sum2:0})
  369. }
  370. }
  371. }
  372. return list;
  373. },
  374. // 日质量异常,根据分类
  375. getDayExceptionByCategory: function () {
  376. // return {
  377. // "分类A": 600,
  378. // "分类B": 500,
  379. // "分类C": 300,
  380. // "分类D": 200,
  381. // "分类E": 100,
  382. // "分类F": 200,
  383. // "分类G": 400
  384. // };
  385. return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getAbnormalHoursMonthReport?type=1");
  386. },
  387. }