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.

57 lines
1.1 KiB

  1. import http from '@/utils/httpRequest'
  2. /**
  3. * 查询当天的盘点单列表
  4. */
  5. export function countingWIPTodayList(data) {
  6. return http({
  7. url: http.adornUrl('/warehouse/countingWIP/todayList'),
  8. method: 'post',
  9. data: http.adornData(data)
  10. })
  11. }
  12. /**
  13. * 根据盘点单号查询WIP数据
  14. */
  15. export function countingWIPList(data) {
  16. return http({
  17. url: http.adornUrl('/warehouse/countingWIP/wipList'),
  18. method: 'post',
  19. data: http.adornData(data)
  20. })
  21. }
  22. /**
  23. * 扫描标签
  24. */
  25. export function countingWIPScanLabel(data) {
  26. return http({
  27. url: http.adornUrl('/warehouse/countingWIP/scanLabel'),
  28. method: 'post',
  29. data: http.adornData(data)
  30. })
  31. }
  32. /**
  33. * 更新盘点数量
  34. */
  35. export function countingWIPUpdateCheckedQty(data) {
  36. return http({
  37. url: http.adornUrl('/warehouse/countingWIP/updateCheckedQty'),
  38. method: 'post',
  39. data: http.adornData(data)
  40. })
  41. }
  42. /**
  43. * 确认盘点
  44. */
  45. export function countingWIPConfirmCounting(data) {
  46. return http({
  47. url: http.adornUrl('/warehouse/countingWIP/confirmCounting'),
  48. method: 'post',
  49. data: http.adornData(data)
  50. })
  51. }