using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WMS.Model.RK;
using System.Data;
namespace WMS.IData.IRK
{
///
/// 入库通知单
///
public interface IWareNotice
{
///
/// 删除采购单
///
///
void DelOrderData(string PURCHASE_ID);
void DelOrderData2 (string PURCHASE_ID);
///
///根据不同状态查询入库通知单
///
///
///
DataTable GetWareNoticeDataSts(string sts);
///
/// 获取入库通知单
///
/// 入库通知单
DataTable GetWareNoticeDT(WareNoticeModel model);
///
/// 新增
///
///
void InsertWareNotice(WareNoticeModel model);
///
/// 审核
///
///
void RevieWareNotiec(WareNoticeModel model);
///
/// 修改入库通知单状态
///
void updateWareNoticeState(WareNoticeModel model);
///
/// 插入或修改入库通知单信息
///
/// 入库通知单Model
/// 操作表示符 0:新增; 1:修改
/// 入库通知单编号
string UpdateWareNotice(WareNoticeModel model);
///
/// 删除入库通知单信息
///
///
void DeleteWareNotice(string ID);
///
/// 向备份表中添加入库通知单
///
/// 入库通知单编号
/// 操作表示符 0:新增; 1:修改
void InsertWareNoticeBack(string WareNoticeID);
}
}