finishProduct.ts 926 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import {ListParams} from '.';
  2. /** 获取产成品出库流水列表 */
  3. export type GetFinishProductListStreamParams = {
  4. /** 物料名称
  5. *
  6. */
  7. /** 物料编号 */
  8. wllbCode: string;
  9. /** 开始时间 */
  10. startTime: string;
  11. /** 结束时间 */
  12. endTime: string;
  13. /**
  14. * 属性
  15. */
  16. attribute: string;
  17. /**
  18. * 物料名称
  19. */
  20. materialName: string;
  21. /**
  22. * 库位名称
  23. */
  24. storageLocationName: string;
  25. /**
  26. * 用户名称
  27. */
  28. userName: string;
  29. /** wbs编号 */
  30. wbs: string;
  31. /** 利道单号 */
  32. storageCode: string;
  33. } & ListParams;
  34. /** 其他出库 */
  35. export type OtherGoodsOutParams = {
  36. /** 物料code */
  37. wllbCode: string;
  38. /** 库位code */
  39. storageLocationCode: string;
  40. /** 出库数量 */
  41. num: string;
  42. /** 用户id */
  43. userId: string;
  44. /** 部门id */
  45. department: string;
  46. /** wbs编号 */
  47. wbs: string;
  48. /** 公司tldId */
  49. accountSleeve: string;
  50. };