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.
46 lines
1.8 KiB
46 lines
1.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSAllocationBLL
|
|
{
|
|
public static void Add(string transno, int transline, List<FormICSITEMTransUIModel> translist, string dsconn)
|
|
{
|
|
//ICSAllocationDAL.Add(transno, transline, translist, dsconn);
|
|
}
|
|
//public static void AddDetail(string transno, int transline, List<FormICSITEMTransUIModel> translist, string dsconn)
|
|
//{
|
|
// ICSAllocationDAL.AddDetail(transno, transline, translist, dsconn);
|
|
//}
|
|
public static void AddJiLu(FormICSITEMTransUIModel infomodel, FormICSITEMTransLotUIModel lotmodel,string dsconn)
|
|
{
|
|
ICSAllocationDAL.AddJiLu(infomodel, lotmodel, dsconn);
|
|
}
|
|
public static void AddDetailJiLu(FormICSITEMTransUIModel infomodel, FormICSITEMTransLotUIModel lotmodel, FormICSITEMTransLotDetailUIModel detailmodel,string dsconn)
|
|
{
|
|
//ICSAllocationDAL.AddDetailJiLu(infomodel, lotmodel,detailmodel, dsconn);
|
|
}
|
|
//批次
|
|
public static void AddTransLot(List<FormICSITEMTransUIModel> translist, decimal sumnum, string dsconn)
|
|
{
|
|
//ICSAllocationDAL.AddTransLot(translist, sumnum, dsconn);
|
|
}
|
|
//单件
|
|
public static void AddTransLotDetail(List<FormICSITEMTransUIModel> translist, List<string> seriallist, string dsconn)
|
|
{
|
|
//ICSAllocationDAL.AddTransLotDetail(translist, seriallist, dsconn);
|
|
}
|
|
|
|
public static void TransItem(List<FormICSITEMTransUIModel> translist, List<FormICSInvTransferDetailUIModel> transdetail, string dsconn)
|
|
{
|
|
ICSAllocationDAL.TransItem(translist, transdetail, dsconn);
|
|
}
|
|
|
|
|
|
}
|
|
}
|