using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WMS.Model.RK;
using System.Data;
using WMS.Model.SC;
using WMS.Model.Stock;
namespace WMS.IData.ISC
{
public interface IProcessPlan
{
///
/// 更新计划单号
///
///
///
void UpdateStsScPlan(string planId, string sts);
///
///无BOM时查询库存内容
///
///
///
DataTable GetScPlanGoods(string goodsId);
DataTable GetScPlanData(string goodsId);
///
/// 增加一条信息
///
///
void AddProcessPlan(ProcessPlanModel model);
///
/// 修改一条信息
///
///
void Update(ProcessPlanModel model);
///
/// 删除一条信息
///
///
void Delete(ProcessPlanModel model);
///
/// 获取集合
///
///
///
DataTable GetScPlanList(ProcessPlanModel model);
///
/// 获取流水号
///
///
string GetSerialNum();
///
/// 作废
///
///
void Obsolete(string planID, string status);
///
/// 插入库区间调拨单信息
///
///
///
void InsertAreaRep(List lstAreaModel);
}
}