季铭对接T+畅捷通,看板API
yl
2023-12-25 a0d937e939fc11713021a146b925cd7035d9a744
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using VueWebApi.DLL.DAL;
using VueWebApi.Models;
using VueWebApi.Tools;
 
namespace VueWebApi.DLL.BLL
{
    public class AppPurchManagementBLL
    {
        #region[采购到货:获取采购订单列表]
        public static ToMessage MesAppPurchOrderSearch(string purchordercode)
        {
            return AppPurchManagementDAL.MesAppPurchOrderSearch(purchordercode);
        }
        #endregion
 
        #region[采购到货:选择采购订单获取物料信息]
        public static ToMessage MesAppPurchOrderPartSearch(string purchordercode)
        {
            return AppPurchManagementDAL.MesAppPurchOrderPartSearch(purchordercode);
        }
        #endregion
 
        #region[采购到货:生成系统条码]
        public static ToMessage MesAppPurchOrderLabelBarCode(string partcode, string arrivalqty, string onelableqty)
        {
            return AppPurchManagementDAL.MesAppPurchOrderLabelBarCode(partcode, arrivalqty, onelableqty);
        }
        #endregion
 
        #region[采购到货:提交]
        public static ToMessage MesAppPurchOrderSave(string purordercode,string username, List<AppPurchOrderSave> json)
        {
            return AppPurchManagementDAL.MesAppPurchOrderSave(purordercode, username, json);
        }
        #endregion
 
 
        #region[采购入库选择有到货采购订单]
        public static ToMessage MesAppPurchInStorSelectCGOrder(string purchordercode)
        {
            return AppPurchManagementDAL.MesAppPurchInStorSelectCGOrder(purchordercode);
        }
        #endregion
 
        #region[选择采购订单带出订单下有到货的物料信息]
        public static ToMessage MesAppPurchInStorSelectCGOrderPart(string ordercode)
        {
            return AppPurchManagementDAL.MesAppPurchInStorSelectCGOrderPart(ordercode);
        }
        #endregion
 
        #region[采购入库扫描标签条码带出到货单信息]
        public static ToMessage MesAppPurchInStorScanLabCode(string labcode)
        {
            return AppPurchManagementDAL.MesAppPurchInStorScanLabCode(labcode);
        }
        #endregion
 
        #region[采购入库提交]
        public static ToMessage MesAppPurchInStorSave(string ordercode, string username, string incontent)
        {
            return AppPurchManagementDAL.MesAppPurchInStorSave(ordercode,username, incontent);
        }
        #endregion
 
 
        #region[采购退货:获取采购订单列表(已到货的采购订单)]
        public static ToMessage MesAppPurchaseReturnOrderSearch(string purchordercode)
        {
            return AppPurchManagementDAL.MesAppPurchaseReturnOrderSearch(purchordercode);
        }
        #endregion
 
        #region[采购退货:选择采购订单获取物料信息]
        public static ToMessage MesAppPurchReturnOrderPartSearch(string purchordercode)
        {
            return AppPurchManagementDAL.MesAppPurchReturnOrderPartSearch(purchordercode);
        }
        #endregion
 
        #region[采购退货单:扫描标签]
        public static ToMessage MesAppPurchReturnInStorScanLabCode(string ordercode, string partcode, string labcode)
        {
            return AppPurchManagementDAL.MesAppPurchReturnInStorScanLabCode(ordercode,partcode,labcode);
        }
        #endregion
 
        #region[采购退货单:提交]
        public static ToMessage MesAppPurchReturnInStorSave(string orderid, string ordercode, string username, string incontent)
        {
            return AppPurchManagementDAL.MesAppPurchReturnInStorSave(orderid,ordercode, username, incontent);
        }
        #endregion
 
    }
}