product.js 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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. // return {
  70. // "成品A": 20,
  71. // "成品B": 100,
  72. // "成品C": 80,
  73. // "成品D": 150,
  74. // "成品E": 200,
  75. // };
  76. },
  77. // 月项目发货统计,根据项目维度
  78. getMonthSendByProject: function () {
  79. // return {
  80. // "项目A": 20,
  81. // "项目B": 100,
  82. // "项目C": 80,
  83. // "项目D": 150,
  84. // "项目E": 200,
  85. // };
  86. return MethodGetService.methodGet("/fbsDispatchLists/fbsDispatchLists/getProjectDelivery");
  87. },
  88. // 成品库存,物料维度
  89. getStockList: function () {
  90. return getService.methodGet("/fbsInventory/fbsInventory/getAllStockList");
  91. // return {
  92. // "成品A": 800,
  93. // "成品B": 900,
  94. // "成品C": 1000,
  95. // "成品D": 700,
  96. // "成品E": 600,
  97. // "成品F": 1100,
  98. // "成品G": 500
  99. // };
  100. },
  101. // 根据产品分类获取质量异常数量
  102. getQualityExceptionByCategory: function () {
  103. return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getAbnormalHoursMonthReport");
  104. // return {
  105. // "分类A": 800,
  106. // "分类B": 900,
  107. // "分类C": 1000,
  108. // "分类D": 700,
  109. // "分类E": 600,
  110. // "分类F": 1100,
  111. // "分类G": 500
  112. // };
  113. },
  114. // 某月产品良数量
  115. getMonthGood: function () {
  116. // const list = [];
  117. // list.push({
  118. // label: "产品A",
  119. // sum1: 48,
  120. // sum2: 50
  121. // });
  122. // list.push({
  123. // label: "产品B",
  124. // sum1: 80,
  125. // sum2: 90
  126. // });
  127. // list.push({
  128. // label: "产品C",
  129. // sum1: 47,
  130. // sum2: 50
  131. // });
  132. // list.push({
  133. // label: "产品D",
  134. // sum1: 40,
  135. // sum2: 50
  136. // });
  137. // list.push({
  138. // label: "产品E",
  139. // sum1: 42,
  140. // sum2: 50
  141. // });
  142. // list.push({
  143. // label: "产品F",
  144. // sum1: 44,
  145. // sum2: 50
  146. // });
  147. // list.push({
  148. // label: "产品G",
  149. // sum1: 45,
  150. // sum2: 50
  151. // });
  152. // return list;
  153. return MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHours/getRejectsNumber");
  154. },
  155. // 月制程异常,根据分类
  156. getMonthExceptionByCategory: function () {
  157. // return {
  158. // "分类A": 600,
  159. // "分类B": 500,
  160. // "分类C": 300,
  161. // "分类D": 200,
  162. // "分类E": 100,
  163. // "分类F": 200,
  164. // "分类G": 400
  165. // };
  166. return MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHours/getQualityType");
  167. },
  168. // 周成品入库数量,根据分类
  169. getWeekInByCategory: function () {
  170. // return {
  171. // "分类A": 500,
  172. // "分类B": 600,
  173. // "分类C": 800,
  174. // "分类D": 700,
  175. // "分类E": 600,
  176. // "分类F": 400,
  177. // "分类G": 500
  178. // };
  179. return MethodGetService.methodGet("/fbsMomOrder/fbsMomOrderdetail/getQualifiedInQtyWeek");
  180. },
  181. // 生产效率
  182. getProduceRate: function () {
  183. // const rate = 95;
  184. rate=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProductionEfficiency");
  185. return {
  186. name: "生产效率",
  187. value: rate
  188. };
  189. },
  190. // 日生产效率
  191. getDayProduceRate: function () {
  192. // const rate = 90;
  193. rate=MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProductionEfficiency");
  194. return {
  195. name: "生产效率",
  196. value: rate
  197. };
  198. },
  199. // 某日产品良数量
  200. getDayGood: function () {
  201. // const list = [];
  202. // list.push({
  203. // label: "产品A",
  204. // sum1: 48,
  205. // sum2: 50
  206. // });
  207. // list.push({
  208. // label: "产品B",
  209. // sum1: 80,
  210. // sum2: 90
  211. // });
  212. // list.push({
  213. // label: "产品C",
  214. // sum1: 47,
  215. // sum2: 50
  216. // });
  217. // list.push({
  218. // label: "产品D",
  219. // sum1: 40,
  220. // sum2: 50
  221. // });
  222. // list.push({
  223. // label: "产品E",
  224. // sum1: 42,
  225. // sum2: 50
  226. // });
  227. // list.push({
  228. // label: "产品F",
  229. // sum1: 44,
  230. // sum2: 50
  231. // });
  232. // list.push({
  233. // label: "产品G",
  234. // sum1: 45,
  235. // sum2: 50
  236. // });
  237. // return list;
  238. return MethodGetService.methodGet("/fbsAbnormalWorkingHours/fbsAbnormalWorkingHours/getRejectsNumber?type=1");
  239. },
  240. // 日质量异常,根据分类
  241. getDayExceptionByCategory: function () {
  242. // return {
  243. // "分类A": 600,
  244. // "分类B": 500,
  245. // "分类C": 300,
  246. // "分类D": 200,
  247. // "分类E": 100,
  248. // "分类F": 200,
  249. // "分类G": 400
  250. // };
  251. return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getAbnormalHoursMonthReport?type=1");
  252. },
  253. }