锐腾搅拌上料功能
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.

61 lines
1.3 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using ICSSoft.Frame.Data.DAL;
  6. using System.Data;
  7. using ICSSoft.Frame.Data.Entity;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public static class ICSStorageInfoBLL
  11. {
  12. public static void import(List<string> barList)
  13. {
  14. try
  15. {
  16. ICSStorageInfoDAL.import(barList);
  17. }
  18. catch (Exception ex)
  19. {
  20. throw ex;
  21. }
  22. }
  23. public static void StorageIn(string barCodeStr,string storage,string stack) {
  24. try
  25. {
  26. ICSStorageInfoDAL.StorageIn(barCodeStr, storage, stack);
  27. }
  28. catch (Exception ex)
  29. {
  30. throw ex;
  31. }
  32. }
  33. public static void Delete(string delStr)
  34. {
  35. try
  36. {
  37. ICSStorageInfoDAL.Delete(delStr);
  38. }
  39. catch (Exception ex)
  40. {
  41. throw ex;
  42. }
  43. }
  44. public static void storageInERP(string barCodeStr, storageInfoContext context)
  45. {
  46. try
  47. {
  48. ICSStorageInfoDAL.StorageInERP(barCodeStr, context);
  49. }
  50. catch (Exception ex)
  51. {
  52. throw ex;
  53. }
  54. }
  55. }
  56. }