bp(net core)+easyui+efcore實現倉儲管理系統——入庫管理之二(三十八)

来源:https://www.cnblogs.com/chillsrc/archive/2020/02/29/12383343.html
-Advertisement-
Play Games

在上一篇文章abp(net core)+easyui+efcore實現倉儲管理系統——入庫管理之一(三十七) 中我們創建了入庫單的實體類,並使用CodeFirst功能創建了資料庫表,接下我們來創建一些有關與入庫單有關的DTO類與查詢分頁類。 ...


abp(net core)+easyui+efcore實現倉儲管理系統目錄

abp(net core)+easyui+efcore實現倉儲管理系統——ABP總體介紹(一) abp(net core)+easyui+efcore實現倉儲管理系統——解決方案介紹(二) abp(net core)+easyui+efcore實現倉儲管理系統——領域層創建實體(三)  abp(net core)+easyui+efcore實現倉儲管理系統——定義倉儲並實現 (四) abp(net core)+easyui+efcore實現倉儲管理系統——創建應用服務(五) abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之控制器(六) abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之列表視圖(七) abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之增刪改視圖(八) abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之菜單與測試(九) abp(net core)+easyui+efcore實現倉儲管理系統——多語言(十) abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一) abp(net core)+easyui+efcore實現倉儲管理系統——菜單-上 (十六)

abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI前端頁面框架 (十八)

abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI之貨物管理一 (十九) abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之一(二十七) abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之三(二十九)

abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之八(三十四)

abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之十(三十六) abp(net core)+easyui+efcore實現倉儲管理系統——入庫管理之一(三十七)  

    在上一篇文章abp(net core)+easyui+efcore實現倉儲管理系統——入庫管理之一(三十七) 中我們創建了入庫單的實體類,並使用CodeFirst功能創建了資料庫表,接下我們來創建一些有關與入庫單有關的DTO與查詢分頁類

 四、定義應用服務介面需要用到的DTO類

    為了在進行查詢入庫單表頭,我們需要創建, PagedInStockResultRequestDto類,用來將查詢條件數據傳遞到基礎設施層.

     1. 在Visual Studio 2017的“解決方案資源管理器”中,右鍵單擊“ABP.TPLMS.Application”項目,在彈出菜單中選擇“添加” > “新建文件夾”,並重命名為“InStocks”

    2. 使用滑鼠右鍵單擊我們剛纔創建的“InStocks”文件夾,在彈出菜單中選擇“添加” > “新建文件夾”,並重命名為“Dto”

    3.右鍵單擊“Dto”文件夾,然後選擇“添加” > “類”。 將類命名為 Paged InStockResultRequestDto,然後選擇“添加”。代碼如下。

using Abp.Application.Services.Dto;
using System;
using System.Collections.Generic;
using System.Text; 


namespace ABP.TPLMS.InStocks.Dto
{

    public class PagedInStockResultRequestDto : PagedResultRequestDto
    {

        public string Keyword { get; set; }
        public string InStockNo { get; set; }
        public DateTime BeginTime { get; set; }
        DateTime m_EndTime;
        /// <summary>
        /// 查詢截止日期,如果當前時間小於100年前,就給一個預設日期(明天)
        /// </summary>

        public DateTime EndTime { get
            {

                if (m_EndTime < DateTime.Now.AddYears(-100))
                    return DateTime.Now.AddDays(1);
                else
                    return m_EndTime;
                    }            

            set
            {
                m_EndTime = value;
            }
                }

        public string OwnerName { get; set; }
        public string No { get; set; }
    }
}

      4.右鍵單擊“Dto”文件夾,然後選擇“添加” > “類”。 將類命名為 PagedInStockDetailResultRequestDto,然後選擇“添加”。此類根據入庫單單號查詢入庫單的明細數據。代碼如下。

using Abp.Application.Services.Dto;
using System;
using System.Collections.Generic;
using System.Text;
 

namespace ABP.TPLMS.InStocks.Dto
{

    public class PagedInStockDetailResultRequestDto : PagedResultRequestDto
    {

        public string Keyword { get; set; }
        public string InStockNo { get; set; }  

    }
}
      5.右鍵單擊“Dto”文件夾,然後選擇“添加” > “類”。 將類命名為 PagedInStockDetailLocResultRequestDto,然後選擇“添加”。此類根據入庫單明細的ID查詢入庫單某條明細數據的庫位信息。代碼如下。
using Abp.Application.Services.Dto;
using System;
using System.Collections.Generic;
using System.Text;
 

namespace ABP.TPLMS.InStocks.Dto
{

    public class PagedInStockDetailLocResultRequestDto : PagedResultRequestDto
    {

        public string Keyword { get; set; }
        public int InStockOrderDetailId { get; set; }  

    }
}

 

      6.右鍵單擊“Dto”文件夾,然後選擇“添加” > “類”。 將類命名為 InStockOrderDto,然後選擇“添加”。代碼如下。

using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using ABP.TPLMS.Entitys;
using System;
using System.Collections.Generic;
using System.Text;
 

namespace ABP.TPLMS.InStocks.Dto
{

    [AutoMapFrom(typeof(InStockOrder))]
    public class InStockOrderDto : EntityDto<int>
    {

        public string No { get; set; }
        /// <summary>
        /// 客戶名稱
        /// </summary>
        public string CustomerName { get; set; }

        public string WarehouseType { get; set; }

        /// <summary>
        /// 客戶代碼
        /// </summary>
        public string CustomerCode { get; set; }

        /// <summary>
        /// 送貨單號
        /// </summary>
        public string DeliveryNo { get; set; }
        /// <summary>
        /// 倉庫號
        /// </summary>
        public string WarehouseNo { get; set; }

        /// <summary>
        /// 貨主
        /// </summary>
        public string OwnerName { get; set; }

        /// <summary>
        /// 毛重
        /// </summary>
        public decimal Gwt { get; set; }
        public decimal Nwt { get; set; }
        public int PackageQty { get; set; }

        /// <summary>
        /// 接收時間
        /// </summary>
        public string ReceiveTime { get; set; }

        /// <summary>
        /// 接收人
        /// </summary>

        public string Receiver { get; set; } 
        public string Oper { get; set; }
        public int Status { get; set; }
        public string OwnerCode { get; set; }

        /// <summary>
        /// 預計送貨時間
        /// </summary>

        public string PreDeliveryTime { get; set; }

        /// <summary>
        /// 審核人
        /// </summary>

        public string Checker { get; set; }
        public string CheckTime { get; set; }

        public string Remark { get; set; }
        public DateTime CreationTime { get; set; }

        public string LastUpdateTime { get; set; }
        public string LastOper { get; set; }

        public List<InStockOrderDetailDto> InStockOrderDetail { get; set; }

    } 

}

 

      7.右鍵單擊“Dto”文件夾,然後選擇“添加” > “類”。 將類命名為 CreateUpdateInStockOrderDto,然後選擇“添加”。代碼如下。

using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using ABP.TPLMS.Entitys;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;

 

namespace ABP.TPLMS.InStocks.Dto
{

    [AutoMapTo(typeof(InStockOrder))]
    public  class CreateUpdateInStockOrderDto : EntityDto<int>
    {

        public const int MaxLength = 255;

        [StringLength(50)]
        [Required]
        public string No { get; set; }

        /// <summary>
        /// 客戶名稱
        /// </summary>

        [StringLength(MaxLength)]
        [Required]
        public string CustomerName { get; set; } 

        public string WarehouseType { get; set; }

        /// <summary>
        /// 客戶代碼
        /// </summary>
         

        [StringLength(50)]
        [Required]
        public string CustomerCode { get; set; }

        /// <summary>
        /// 送貨單號
        /// </summary>
        public string DeliveryNo { get; set; }

        /// <summary>
        /// 倉庫號
        /// </summary>
        public string WarehouseNo { get; set; }

        /// <summary>
        /// 貨主
        /// </summary>
        [StringLength(MaxLength)]
        [Required]
        public string OwnerName { get; set; }
        public decimal Gwt { get; set; }
        public decimal Nwt { get; set; }
        public int PackageQty { get; set; }

        /// <summary>
        /// 接收時間
        /// </summary>
        [StringLength(20)]
        public string ReceiveTime { get; set; }

        /// <summary>
        /// 接收人
        /// </summary>
        [StringLength(50)]
        public string Receiver { get; set; }
 

        [StringLength(50)]

        public string Oper { get; set; }
        public int Status { get; set; }    
    [StringLength(50)]
        public string OwnerCode { get; set; }

        /// <summary>
        /// 預計送貨時間
        /// </summary>
        [StringLength(20)]
        public string PreDeliveryTime { get; set; }

        /// <summary>
        /// 審核人
        /// </summary>
        [StringLength(50)]
        public string Checker { get; set; }
        [StringLength(20)]
        public string CheckTime { get; set; }
        [StringLength(1000)]
        public string Remark { get; set; }
        public DateTime CreationTime { get; set; }

        [StringLength(20)]
        public string LastUpdateTime { get; set; }

        [StringLength(50)]
        public string LastOper { get; set; }
        public List<CreateUpdateInStockOrderDetailDto> InStockOrderDetail { get; set; }
    }
}
     8. 重覆上面的第6-7步,我們來創建InStockDetailDto與CreateUpdateInStockDetailDto、InStockDetailLocDto與CreateUpdateInStockDetailLocDto。

        8.1 InStockDetailDto

using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using Abp.Domain.Entities;
using Abp.Domain.Entities.Auditing;
using ABP.TPLMS.Entitys;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
 

namespace ABP.TPLMS.InStocks.Dto
{

    [AutoMapFrom(typeof(InStockOrderDetail))]
    public class InStockOrderDetailDto : EntityDto<int>
    {        

        public int SupplierId { get; set; }      

        public string CargoCode { get; set; }       
        public string HSCode { get; set; }        
        public string CargoName { get; set; }        
        public string Spcf { get; set; }        

        public string Unit { get; set; }      
        public string Country { get; set; }       
        public string Brand { get; set; }     
        public string Curr { get; set; }       
        public string Package { get; set; }

        public decimal Length { get; set; }

        public decimal Width { get; set; }

        public decimal Height { get; set; }
        public decimal Vol { get; set; } 

        public decimal Price { get; set; }
        public decimal TotalAmt { get; set; }

        public decimal GrossWt { get; set; }
        public decimal NetWt { get; set; }
        public DateTime CreationTime { get; set; }      

        public string InStockNo { get; set; }
        public int SeqNo { get; set; }

        public decimal Qty { get; set; }
        public decimal LawfQty { get; set; }
        public decimal SecdLawfQty { get; set; }      

        public string LawfUnit { get; set; }        
        public string SecdLawfUnit { get; set; }        

        public string Batch { get; set; }
        public int DeliveryOrderDetailId { get; set; }
        [NotMapped]
        public List<InStockOrderDetailLoc> InStockOrderDetailLoc { get; set; }
    }
}

      8.2 CreateUpdateInStockDetailDto

using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using Abp.Domain.Entities;
using Abp.Domain.Entities.Auditing;
using ABP.TPLMS.Entitys;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
 
namespace ABP.TPLMS.InStocks.Dto
{

    [AutoMapTo(typeof(InStockOrderDetail))]
    public class CreateUpdateInStockOrderDetailDto : EntityDto<int>
    {

        public const int MaxLength = 255;       
        public int SupplierId { get; set; }
        [MaxLength(50)]
        public string CargoCode { get; set; }

        [MaxLength(10)]
        public string HSCode { get; set; }

        [MaxLength(MaxLength)]
        public string CargoName { get; set; }

        [MaxLength(MaxLength)]
        public string Spcf { get; set; }

        [MaxLength(20)]
        public string Unit { get; set; }

        [MaxLength(20)]
        public string Country { get; set; }

        [MaxLength(50)]
        public string Brand { get; set; }

        [MaxLength(20)]
        public string Curr { get; set; }

        [MaxLength(20)]
        public string Package { get; set; }

        public decimal Length { get; set; }
        public decimal Width { get; set; }

        public decimal Height { get; set; }
        public decimal Vol { get; set; }

 
        public decimal Price { get; set; }
        public decimal TotalAmt { get; set; }
        public decimal GrossWt { get; set; }

        public decimal NetWt { get; set; }

         public DateTime CreationTime { get; set; }

        [MaxLength(20)]
        public string InStockNo { get; set; }
        public int SeqNo { get; set; }
        public decimal Qty { get; set; }
        public decimal LawfQty { get; set; }

        public decimal SecdLawfQty { get; set; }

        [MaxLength(20)]
        public string LawfUnit { get; set; }
        [MaxLength(20)]
        public string SecdLawfUnit { get; set; }
        [MaxLength(20)]

        public string Batch { get; set; }
        public int DeliveryOrderDetailId { get; set; }

         [NotMapped]
        public List<InStockOrderDetailLoc> InStockOrderDetailLoc { get; set; }

     }
}

 
     8.3  InStockDetailLocDto
using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using Abp.Domain.Entities;
using Abp.Domain.Entities.Auditing;
using ABP.TPLMS.Entitys;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;


namespace ABP.TPLMS.InStocks.Dto
{

   public class InStockOrderDetailLocDto :  EntityDto<int>
    {
         [AutoMapFrom(typeof(InStockOrderDetailLoc))]
        public InStockOrderDetailLocDto()
        {           
            this.Qty = 0;
            this.SeqNo = 0;
            this.Loc = string.Empty;
            this.CreationTime = DateTime.Now;
            this.InStockOrderDetailId = 0;

        }     

        public int InStockOrderDetailId { get; set; }
        public int SeqNo { get; set; }
        public string Loc { get; set; }
        public decimal Qty { get; set; }
        public DateTime CreationTime { get; set; }
    }
}

     8.4  CreateUpdateInStockDetailLocDto。

using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using Abp.Domain.Entities;
using Abp.Domain.Entities.Auditing;
using ABP.TPLMS.Entitys;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
 

namespace ABP.TPLMS.InStocks.Dto
{

   public class CreateUpdateInStockOrderDetailLocDto : EntityDto<int>
    {

        [AutoMapTo(typeof(InStockOrderDetailLoc))]
        public CreateUpdateInStockOrderDetailLocDto()
        {
           

            this.Qty = 0;
            this.SeqNo = 0;
            this.Loc = string.Empty;
            this.CreationTime = DateTime.Now;
            this.InStockOrderDetailId = 0;
        }
       public int InStockOrderDetailId { get; set; }
        public int SeqNo { get; set; }
        [StringLength(50)]
        public string Loc { get; set; }    
        public decimal Qty { get; set; }
        public DateTime CreationTime { get; set; }
    }
}

 
 
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • [toc] 泛型: 首先,本人來介紹一下 什麼是泛型 : 泛型概述 : 是一種把類型明確的工作 推遲到創建對象 或者 調用方法的時候 才去 明確的特殊的類型 。 參數化類型 ,把類型當作參數一樣的傳遞。 通俗一點來講:泛型 是JAVA 中一種十分強大的機制,因為它能夠完成在 未知元素類型 的情況下對 ...
  • 在Java發展的里程碑上,有三個版本做出的改動,是革命性的 為什麼說是革命性的呢? 因為這三個版本所推出的有些新機制,在之後的Java框架開發、新類的產生等等中, 都被廣泛使用了。 那麼,這三個版本的JDK,都有哪些新特性呢? 現在,右轉哥就來帶你剖析這三個版本的JDK的新特性: [toc] 首先是 ...
  • xml配置 1.xml基本結構: 其中id是bean字元串,bean的唯一標識符,相當於對象名,class是bean類名的完全限定路徑 2.別名 起別名有兩種方式, 1.通過alias 2.通過bean中的name屬性 用bean中name更高級,可以起多個別名 IoC創建對象方式 1.通過無參構造 ...
  • 一、屬性(Property)作為類和結構的成員,是對欄位的一種封裝方式,實際上是一種特殊的方法,被稱為訪問器(Accessor),從而隱藏實現和驗證代碼,有助於提高欄位讀取和賦值的安全性和靈活性; 1.屬性訪問器包含兩種類型:用於讀取並返回值的get訪問器,用於賦值新值的set屬性訪問器;通常將欄位 ...
  • Lucene.Net Lucene.net是Lucene的.net移植版本,是一個開源的全文檢索引擎開發包,即它不是一個完整的全文檢索引擎,而是一個全文檢索引擎的架構,提供了完整的查詢引擎和索引引擎。 Lucene.net是Apache軟體基金會贊助的開源項目,基於Apache License協議。 ...
  • 前言 如今 C 雖然發展到了 8.0 版本,引入了諸多的函數式特性,但其實在 C 未來的規劃當中,還有很多足以大規模影響現有 C 代碼結構和組成的特性,本文中將會對就重要的特性進行介紹,並用代碼示例展示這些特性。 以下特性將會在 C 9.0、10.0 或者更高版本提供。 Records Record ...
  • Introduction: 在C#6及以上版本中,加入了一項特別好用的運算符:Null條件運算符?.和?[]可以用來方便的執行判空操作,當運算符左側操作數不為null時才會進行訪問操作,否則直接返回null。這極大的簡化的判空代碼的書寫,但在使用過程中仍然需要註意一些問題,以免其帶來我們意想不到的後 ...
  • 正如上一章介紹,WPF動畫通過一組動畫類(Animation類)表示。使用少數幾個熟悉設置相關信息,如開始值、結束值以及持續時間。這顯然使得它們非常適合於XAML。不是很清晰的時:如何為特定的事件和屬性關聯動畫,以及如何在正確的時間觸發動畫。 在所有聲明式動畫中都會用到如下兩個要素: 故事板。故事板 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...