首页上一页 1 下一页尾页 3 条记录 1/1页
实战突击:ASP.NET项目开发案例整合书中的企业级通用进销存软件Web版登录切换网页背景颜色页面加载失败原因
发表在ASP.NET图书答疑
2016-02-18
是否精华
是
否
版块置顶:
是
否
实战突击:ASP.NET项目开发案例整合书中的企业级通用进销存软件Web版数据访问层缺少的审核方法。
1、PurchaseDao.cs数据访问层中缺少审核采购入库bool AuditPurchase(int id, bool isAudit, string operatorCode);的方法,
2、PurchaseIndentDao.cs数据访问层中缺少审核采购订单bool AuditPurchaseIndent(int id, bool isAudit, string operatorCode, string warehouse);的方法,
3、PurchasePlanDao.cs数据访问层中缺少审核采购计划bool AuditPurchasePlan(int id, bool isAudit, string operatorCode);的方法,
4、PurchaseReturnDao.cs数据访问层中缺少审核采购退货bool AuditPurchaseReturn(int id, bool isAudit, string operatorCode);的方法,
5、SaleDao.cs数据访问层中缺少打印销售单时调用该方法,置AuditFlag,更新库存bool AuditSale(int id, bool isAudit, string operatorCode);的方法,
6、SaleReturnDao.cs数据访问层中缺少审核销售退货bool AuditSaleReturn(int id, bool isAudit, string operatorCode);的方法,
7、AdjustDao.cs数据访问层中缺少审核调拨单bool AuditAdjust(int id, bool isAudit, string operatorCode);的方法,
读者认为业务接口层中方法类型和数量应和对应的数据访问层中方法类型和数量应一一对应,但上述1至7点业务接口层都有且相应的数据访问层没有对应方法,所以在上述1至7点的网页中点击审核按钮后导致网页加载失败,为此要求王老师在百忙之中抽出时间补充上述1至7点的在数据访问层缺少的方法,使之在上述1至7点相应的网页中点击审核按钮后能链接加载成功,以保确整个网站项目的完整性,使业务接口层中方法类型和数量与对应数据访问层中方法类型和数量一一对应,谢谢老师!
1、PurchaseDao.cs数据访问层中缺少审核采购入库bool AuditPurchase(int id, bool isAudit, string operatorCode);的方法,
2、PurchaseIndentDao.cs数据访问层中缺少审核采购订单bool AuditPurchaseIndent(int id, bool isAudit, string operatorCode, string warehouse);的方法,
3、PurchasePlanDao.cs数据访问层中缺少审核采购计划bool AuditPurchasePlan(int id, bool isAudit, string operatorCode);的方法,
4、PurchaseReturnDao.cs数据访问层中缺少审核采购退货bool AuditPurchaseReturn(int id, bool isAudit, string operatorCode);的方法,
5、SaleDao.cs数据访问层中缺少打印销售单时调用该方法,置AuditFlag,更新库存bool AuditSale(int id, bool isAudit, string operatorCode);的方法,
6、SaleReturnDao.cs数据访问层中缺少审核销售退货bool AuditSaleReturn(int id, bool isAudit, string operatorCode);的方法,
7、AdjustDao.cs数据访问层中缺少审核调拨单bool AuditAdjust(int id, bool isAudit, string operatorCode);的方法,
读者认为业务接口层中方法类型和数量应和对应的数据访问层中方法类型和数量应一一对应,但上述1至7点业务接口层都有且相应的数据访问层没有对应方法,所以在上述1至7点的网页中点击审核按钮后导致网页加载失败,为此要求王老师在百忙之中抽出时间补充上述1至7点的在数据访问层缺少的方法,使之在上述1至7点相应的网页中点击审核按钮后能链接加载成功,以保确整个网站项目的完整性,使业务接口层中方法类型和数量与对应数据访问层中方法类型和数量一一对应,谢谢老师!