abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI之貨物管理二 (二十)

来源:https://www.cnblogs.com/chillsrc/archive/2019/09/29/11606969.html
-Advertisement-
Play Games

通過上一篇文章(abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI之貨物管理一 (十九) )中,我們已經將創建了貨物信息實體 與查詢所用到的分頁類。下麵我們來實現貨物信息管理功能所需要的服務類與控制器類,頁面呈現。 ...


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實現倉儲管理系統——使用 WEBAPI實現CURD (十二)

 abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十三)

abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十四)

 abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十五)

abp(net core)+easyui+efcore實現倉儲管理系統——菜單-上 (十六)

 abp(net core)+easyui+efcore實現倉儲管理系統——菜單-下(十七) 

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

abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI之貨物管理一 (十九)

 

通過上一篇文章(abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI之貨物管理一 (十九) )中,我們已經將創建了貨物信息實體 與查詢所用到的分頁類。下麵我們來實現貨物信息管理功能所需要的服務類與控制器類,頁面呈現。

 

六、定義ICargoAppService介面

6. 在Visual Studio 2017的“解決方案資源管理器”中,滑鼠右鍵單擊“Cargos”文件夾,然後選擇“添加” > “新建項”,在彈出對話框中選擇“介面”。為應用服務定義一個名為 ICargoAppService 的介面。代碼如下。

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

namespace ABP.TPLMS.Cargos
{

    public interface ICargoAppService : IAsyncCrudAppService<//定義了CRUD方法
             CargoDto, //用來展示貨物信息
             int, //Cargo實體的主鍵
             PagedCargoResultRequestDto, //獲取貨物信息的時候用於分頁
             CreateUpdateCargoDto, //用於創建貨物信息
             CreateUpdateCargoDto> //用於更新貨物信息
    {

    }
}

 

七、實現ICargoAppService

7.在Visual Studio 2017的“解決方案資源管理器”中,右鍵單擊“Cargos”文件夾,然後選擇“添加” > “新建項”,在彈出對話框中選擇“類”。為應用服務定義一個名為 CargoAppService 的服務類。代碼如下。

using Abp.Application.Services;
using Abp.Domain.Repositories;
using ABP.TPLMS.Entitys;
using ABP.TPLMS.Cargos.Dto;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks; 

namespace ABP.TPLMS.Cargos
{
   public class CargoAppService :AsyncCrudAppService<Cargo, CargoDto, int, PagedCargoResultRequestDto,
                            CreateUpdateCargoDto, CreateUpdateCargoDto>,ICargoAppService       

    {
        public CargoAppService(IRepository<Cargo, int> repository)
            : base(repository)

    {            

    }

    }
}

 

八 創建CargoController繼承自TPLMSControllerBase

1. 在Visual Studio 2017的“解決方案資源管理器”中,右鍵單擊在領域層“ABP.TPLMS.Web.Core”項目中的Controller目錄。 找到TPLMSControllerBase文件,添加一個新的方法JsonEasyUI。此方法的功能是實現對實體對象進行序列化為JSON字元串,並且JSON字元串的格式符合EasyUI的DataGrid要求的數據格式。代碼如下。

protected dynamic JsonEasyUI(dynamic t,int total)
  {         

      var obj= new
      {         
          total = total,
           rows = t
      };

      var  json = Json(obj);
       return json;
   }

2. 在Visual Studio 2017的“解決方案資源管理器”中,右鍵單擊在領域層“ABP.TPLMS.Web.Mvc”項目中的Controller目錄。 選擇“添加” > “新建項…”。如下圖。

 

3. 在彈出對話框“添加新項-ABP.TPLMS.Web.Mvc”中選擇“控制器類”,然後在名稱輸入框中輸入“CargoController”,然後點擊“添加”按鈕。如下圖。

 

4.在CargoController.cs文件中輸入如下代碼,通過構造函數註入對應用服務的依賴。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Abp.Application.Services.Dto;
using Abp.AspNetCore.Mvc.Authorization;
using Abp.Runtime.Validation;
using ABP.TPLMS.Controllers;
using ABP.TPLMS.Cargos;
using ABP.TPLMS.Cargos.Dto;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore; 

 

namespace ABP.TPLMS.Web.Controllers
{

    [AbpMvcAuthorize]
    public class CargoController : TPLMSControllerBase
    {
        const int MaxNum= 10;
        // GET: /<controller>/
        public IActionResult Index()
        {

            ViewData["SupplierId"] = "100001";
            return View();
        } 

        private readonly ICargoAppService _cargoAppService; 

        public CargoController(ICargoAppService cargoAppService)
        {
            _cargoAppService = cargoAppService;

        }

        public JsonResult List()
        {

             var page = Request.Form["page"].ToString();
            var size = Request.Form["rows"].ToString();

            int pageIndex = page == null ? 1 : int.Parse(page);

            int pageSize = size == null ? 20 : int.Parse(size);

            PagedCargoResultRequestDto paged = new PagedCargoResultRequestDto();
            paged.MaxResultCount = pageSize;
            paged.SkipCount = ((pageIndex-1)<0?0: pageIndex - 1) * pageSize;
            var userList = _cargoAppService.GetAll(paged).GetAwaiter().GetResult().Items;

            int total = 1000;
            var json = JsonEasyUI(userList,total);

            return json;        
     }
    }
}

 

九、使用EasyUI創建貨物管理頁面

1. 在Visual Studio 2017的“解決方案資源管理器”中,右鍵單擊在領域層“ABP.TPLMS.Web.Mvc”項目中的Views目錄。 選擇“添加” > “新建文件夾”。並重命名為“Cargo”。

2. 在Visual Studio 2017的“解決方案資源管理器”中,滑鼠右鍵單擊“Cargo”文件夾,然後選擇“添加” > “新建項…”。 在“添加新項-ABP.TPLMS.Web.Mvc”對話框中,選擇“Razor視圖”,並將名稱命名為Index.cshmtl。

3. 在我們剛纔創建的Index.cshmtl文件中,編寫如下代碼:

 

@using ABP.TPLMS.Web.Startup
@{

    ViewData["Title"] = PageNames.Cargo;
}

@section scripts
    {
    <script src="~/view-resources/Views/Cargo/cargomgr.js" asp-append-version="true"></script>
    <script type="text/javascript">
        $(function () {
            initable();
            init();
            reloaded();
            updCargoInfo();
            showCargoDialog();
            deleteCargo();
        });
    </script>
}
<div data-options="region:'center'" style="overflow: hidden;">
    <div id="containter" style="width: 1000px; height: auto; margin: 0px auto;">
        <!--toolbar-->
        <div style="margin-bottom:1px;font-weight:bold;">
            <a href="#" id="add" class="easyui-linkbutton" data-options="iconCls:'icon-add'" 
style="width:100px; height:30px; ">添加</a> <a href="#" id="del" class="easyui-linkbutton" data-options="iconCls:'icon-remove'"
style="width:100px; height:30px; ">刪除</a> <a href="#" id="edit" class="easyui-linkbutton" data-options="iconCls:'icon-edit'"
style="width:100px; height:30px; ">修改</a> <a href="#" id="reload" class="easyui-linkbutton" data-options="iconCls:'icon-reload'"
style="width:100px; height:30px; ">刷新</a> </div> <!--panel--> <div data-options="region:'center',split:false" style="height:500px;"> <!--表格--> <table id="dgCargo"></table> </div> </div> </div> <!---------------------------新增修改貨物信息----------------------------> <div id="divAddUpdCargo" class="easyui-dialog" closed="true" data-options="buttons: '#dlg-buttons'"> <table> <tr> <td><input type="hidden" name="ID" id="IDUpdate" /></td> </tr> <tr> <td>供應商:</td> <td> <input type="text" id="SupplierIdUpdate" name="USupplierId"
class="form-control input-sm" value=@ViewData["SupplierId"].ToString() /> </td> <td> 貨物代碼:</td> <td><input type="text" id="UpdCargoCode" name="UCargoCode"
class="form-control input-sm" /></td> <td>貨物名稱:</td> <td> <input type="text" id="CargoNameUpdate" name="UCargoName" class="form-control input-sm" /> </td> </tr> <tr> <td>品牌:</td> <td> <input type="text" id="BrandUpdate" name="UBrand" class="form-control input-sm" /> </td> <td> 規格型號:</td> <td colspan="3"><input type="text" id="SpcfUpdate" name="USpcf"
class="form-control input-sm" /></td> </tr> <tr> <td>HSCode:</td> <td> <input type="text" id="HSCodeUpdate" name="UHSCode" class="form-control input-sm" /> </td> <td>單價:</td> <td> <input type="number" id="PriceUpdate" name="UPrice" class="form-control input-sm" /> </td> <td> 計量單位:</td> <td><input type="text" id="UnitUpdate" name="UUnit" class="form-control input-sm" /></td> </tr> <tr> <td>貨幣:</td> <td> <input type="text" id="CurrUpdate" name="UCurr" class="form-control input-sm" /> </td> <td>包裝:</td> <td> <input type="text" id="PackageUpdate" name="UPackage" class="form-control input-sm" /> </td> <td>體積:</td> <td> <div class="input-group"> <input type="text" id="VolUpdate" name="UVol" class="form-control input-sm" readonly /> <span class="input-group-addon" id="basic-addon2">立方米</span> </div> </td> </tr> <tr> <td> 長:</td> <td> <div class="input-group"> <input type="number" id="LengthUpdate" name="ULength"
class="form-control input-sm" aria-describedby="basic-addon2"> <span class="input-group-addon" id="basic-addon2">cm *</span> </div> </td> <td>寬:</td> <td> <div class="input-group"> <input type="number" id="WidthUpdate" name="UWidth"
class="form-control input-sm" aria-describedby="basic-addon2"> <span class="input-group-addon" id="basic-addon2">cm * </span> </div> </td> <td>高:</td> <td> <div class="input-group"> <input type="number" id="HeightUpdate" name="UHeight"
class="form-control input-sm" aria-describedby="basic-addon2"> <span class="input-group-addon" id="basic-addon2">cm</span> </div> </td> </tr> <tr> <td>毛重:</td> <td> <input type="number" id="GrossWtUpdate" name="UGrossWt" class="form-control input-sm" /> </td> <td> 凈重:</td> <td><input type="number" id="NetWtUpdate" name="UNetWt" class="form-control input-sm" /></td> <td>國家:</td> <td> <input type="text" id="CountryUpdate" name="UCountry" class="form-control input-sm" /> </td> </tr> <tr> <td>安全庫存:</td> <td> <input type="number" id="MinNumUpdate" name="UMinNum" class="form-control input-sm" /> </td> <td> 最大庫存:</td> <td><input type="number" id="MaxNumUpdate" name="UMaxNum" class="form-control input-sm" /></td> <td>創建時間:</td> <td> <input type="text" id="CreateTimeUpdate" name="UCreateTimey" class="form-control input-sm" /> </td> </tr> <tr> <td>備註:</td> <td colspan="5"> <input type="text" id="RemarkUpdate" name="URemark" class="form-control input-sm" /> </td> </tr> </table> </div> <div id="dlg-buttons"> <input type="submit" id="btnSave" value="保存" class="btn btn-primary" /> <input type="submit" id="btnCancle" value="取消" class="btn btn-info" /> </div>

 4. 在Visual Studio 2017的“解決方案資源管理器”中,找到“ABP.TPLMS.Web.Mvc”項目中的Startup目錄。 選擇“PageNames.cs”文件,並雙擊打開。寫入以下代碼。

        public const string Cargo = "Cargo";

 


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

-Advertisement-
Play Games
更多相關文章
  • 一、抽象和封裝是面向對象編程的基礎特性,抽象用來忽略細節,在不同的層次上處理細節,封裝則實現了對細節的不同程度的訪問許可權;即抽象允許相關信息可視化,封裝用來實現所需級別的抽象; 1.根據封裝的原則,命名空間可以指定其中每個類型對外部代碼的可訪問性,類和結構可以指定其中每個成員對外部代碼的可訪問性,可 ...
  • 本文為技術討論,思路記錄,為以後如有需要用到此業務場景提供參考。 業務背景: 一個中小型企業,擁有多個軟體產品,服務的客戶的需求也是五花八門,有時候用一個版本庫會極難處理和均衡各方需求,出於管理方便,可能就每個客戶有對應的一套源碼進行管理,因此需要有一套自動化管理軟體的發佈服務程式。否則版本管理的工 ...
  • 當我們在登錄一些網站的時候,需要第三方的登錄。比如,現在我們要登錄簡書https://www.jianshu.com/sign_in,我們使用微博登錄,點擊下方的一個微博的小按鈕,就會出現這麼一個地址https://api.weibo.com/oauth2/authorize?client_id=1 ...
  • 一般的 時間戳 格式分為兩種 即 10位(秒)時間戳 與 13位(毫秒)時間戳 時間戳 類型也分為兩種 即 本地時間戳 與 世界統一(UTC)時間戳 廢話不多說,直接上代碼: 一、時間戳獲取方法 二、時間戳驗證方法 三、由 時間戳 轉換為 DateTime 方法 ...
  • 開發環境 Vs2019 16.3.1 dotnetcore 3.0 一、開始 1. 新建webapp項目 或Vs 中新建項目選擇 Web應用程式。 在StartUp.cs 中增加兩處配置。 ConfigureServices 方法: Configure 方法 1. 使用Vs打開項目,預設頁面和目錄暫 ...
  • .net開發。用VS2017工具,打開VS2010創建的WebSevice工程時,提示工程不可用。 重新載入後提示:已經在解決方案中打開了具有該名稱的項目。 該問題原因是因為啟用了源代碼管理工具的問題。 打開sln文件,刪除其中的關於這個WebService的配置信息。如下: SccProjectU ...
  • 這個問題原因是因為安裝了高版本的office然後卸載掉,又安裝了低版本的office導致的。 博主是 office2016卸載後,安裝了office2013. EXCEL報錯信息為: 無法將類型為“Microsoft.Office.Interop.Excel.ApplicationClass”的 C ...
  • .Net Reactor 是一款比較不錯的混淆工具,比VS自帶的那個好用很多,一直以來也陪伴著我們的成長,雖然沒有完美的混淆工具,不過也算還是不錯的,至少能在一定程度上對DLL進行一定的保護處理。 不過最近客戶反映我們在混合框架刪除操作的時候,沒有如期的實現刪除操作,由於混合框架是基於Web ... ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...