From f7f968bf90a2124d1787919b116bb143290622ce Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期三, 08 五月 2024 11:25:50 +0800 Subject: [PATCH] 增加货品管理页面,增加ip地址获取APi 修改发票列表宽度 --- CoreCms.Net.Repository/Order/CoreCmsPlanOrderRepository.cs | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CoreCms.Net.Repository/Order/CoreCmsPlanOrderRepository.cs b/CoreCms.Net.Repository/Order/CoreCmsPlanOrderRepository.cs index a6a3b9f..4ecbd45 100644 --- a/CoreCms.Net.Repository/Order/CoreCmsPlanOrderRepository.cs +++ b/CoreCms.Net.Repository/Order/CoreCmsPlanOrderRepository.cs @@ -194,7 +194,13 @@ createBy = p.createBy, upDataBy = p.upDataBy, isdelete = p.isdelete, - + shengId = p.shengId, + shiId = p.shiId, + shi = p.shi, + quxian = p.quxian, + quxianId = p.quxianId, + pianqu = p.pianqu, + shouhuoAddress = p.shouhuoAddress, }).With(SqlWith.NoLock).ToPageListAsync(pageIndex, pageSize, totalCount); } else @@ -217,7 +223,13 @@ createBy = p.createBy, upDataBy = p.upDataBy, isdelete = p.isdelete, - + shiId = p.shiId, + shi = p.shi, + quxian = p.quxian, + quxianId = p.quxianId, + pianqu = p.pianqu, + shouhuoAddress = p.shouhuoAddress, + }).ToPageListAsync(pageIndex, pageSize, totalCount); } var list = new PageList<CoreCmsPlanOrder>(page, pageIndex, pageSize, totalCount); -- Gitblit v1.9.1