tijian_jichuang/Code/SOH.BLL.Contract/Its_dd.cs
2025-02-20 11:54:48 +08:00

43 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SOH.Entities;
using SOH.Data;
namespace SOH.BLL
{
public interface Its_dd
{
List<ts_dd> GetList(string param,string tj);
List<ts_dd> GetListBykhbm(int khbm);
List<ts_dd> GetListByddbm(int ddbm);
List<ts_dd> Getwshdd(string p);
List<ts_dd> Getwshdd2(string p);
//销售审核函数(通过)
OperationResult xssh(int ddbm, string xsshczy);
//销售审核函数(不通过)
OperationResult notxssh(int ddbm, string xsshczy);
/// <summary>
/// 获取未审核的订单(财务审核开始,必须销售审核成功后才可以财务审核)
/// </summary>
/// <returns></returns>
List<Entities.ts_dd> Getcwsh();
//财务审核函数(通过)
Data.OperationResult notcwsh(int ddbm, string cwshczy);
//销售审核函数(不通过)
Data.OperationResult cwsh(int ddbm, string cwshczy);
/// <summary>
/// 生成合同函数
/// </summary>
/// <param name="ddbm">订单编码</param>
/// <param name="khbm">客户编码</param>
/// <returns></returns>
Data.OperationResult scht(int ddbm, int khbm);
Data.OperationResult Updatedd(ts_dd o);
Data.OperationResult Insertdd(ts_dd o);
Data.OperationResult Deldd(ts_dd o);
}
}