Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
fe83d196
Commit
fe83d196
authored
Nov 22, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
6fc02edd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
0 deletions
+121
-0
RB_Customer_Extend.cs
Edu.Model/ViewModel/Customer/RB_Customer_Extend.cs
+4
-0
RB_CustomerRepository.cs
Edu.Repository/Customer/RB_CustomerRepository.cs
+5
-0
CustomerController.cs
Edu.WebApi/Controllers/Customer/CustomerController.cs
+112
-0
No files found.
Edu.Model/ViewModel/Customer/RB_Customer_Extend.cs
View file @
fe83d196
...
@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.Customer
...
@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.Customer
/// </summary>
/// </summary>
public
class
RB_Customer_Extend
:
RB_Customer
public
class
RB_Customer_Extend
:
RB_Customer
{
{
/// <summary>
/// 创建人
/// </summary>
public
string
CreateByName
{
get
;
set
;
}
}
}
}
}
Edu.Repository/Customer/RB_CustomerRepository.cs
View file @
fe83d196
...
@@ -34,11 +34,16 @@ WHERE 1=1
...
@@ -34,11 +34,16 @@ WHERE 1=1
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
if
(
query
!=
null
)
{
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
CustomerName
))
if
(!
string
.
IsNullOrEmpty
(
query
.
CustomerName
))
{
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @CustomerName "
,
nameof
(
RB_Customer_Extend
.
CustomerName
));
builder
.
AppendFormat
(
" AND A.{0} LIKE @CustomerName "
,
nameof
(
RB_Customer_Extend
.
CustomerName
));
parameters
.
Add
(
"CustomerName"
,
"%"
+
query
.
CustomerName
.
Trim
()
+
"%"
);
parameters
.
Add
(
"CustomerName"
,
"%"
+
query
.
CustomerName
.
Trim
()
+
"%"
);
}
}
}
}
return
GetPage
<
RB_Customer_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
return
GetPage
<
RB_Customer_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
...
...
Edu.WebApi/Controllers/Customer/CustomerController.cs
0 → 100644
View file @
fe83d196
using
Edu.Cache.User
;
using
Edu.Common.API
;
using
Edu.Common.Plugin
;
using
Edu.Model.ViewModel.Customer
;
using
Edu.Module.Customer
;
using
Microsoft.AspNetCore.Http
;
using
Microsoft.AspNetCore.Mvc
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Threading.Tasks
;
namespace
Edu.WebApi.Controllers.Customer
{
[
Route
(
"api/[controller]"
)]
[
ApiController
]
public
class
CustomerController
:
BaseController
{
private
readonly
CustomerModule
customerModule
=
new
CustomerModule
();
/// <summary>
/// 获取同行分页列表
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetCustomerPage
()
{
var
pageModel
=
JsonHelper
.
DeserializeObject
<
ResultPageModel
>(
RequestParm
.
Msg
.
ToString
());
var
query
=
new
RB_Customer_Extend
()
{
Group_Id
=
base
.
UserInfo
.
Group_Id
,
CustomerName
=
base
.
ParmJObj
.
GetStringValue
(
"CustomerName"
)
};
var
list
=
customerModule
.
GetCustomerPageModule
(
pageModel
.
PageIndex
,
pageModel
.
PageSize
,
out
long
rowsCount
,
query
);
foreach
(
var
item
in
list
)
{
if
(
item
.
CreateBy
>
0
)
{
item
.
CreateByName
=
UserReidsCache
.
GetUserLoginInfo
(
item
.
CreateBy
)?.
AccountName
??
""
;
}
}
pageModel
.
PageData
=
list
;
pageModel
.
Count
=
rowsCount
;
return
ApiResult
.
Success
(
data
:
pageModel
);
}
/// <summary>
/// 新增修改同业客户资料
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
SetCustomer
()
{
var
model
=
new
RB_Customer_Extend
()
{
CustomerId
=
base
.
ParmJObj
.
GetInt
(
"CustomerId"
),
CustomerName
=
base
.
ParmJObj
.
GetStringValue
(
"CustomerName"
),
ContactNumber
=
base
.
ParmJObj
.
GetStringValue
(
"ContactNumber"
),
Fax
=
base
.
ParmJObj
.
GetStringValue
(
"Fax"
),
QQ
=
base
.
ParmJObj
.
GetStringValue
(
"QQ"
),
Email
=
base
.
ParmJObj
.
GetStringValue
(
"Email"
),
Address
=
base
.
ParmJObj
.
GetStringValue
(
"Address"
),
Sex
=
base
.
ParmJObj
.
GetInt
(
"Sex"
),
Image
=
base
.
ParmJObj
.
GetStringValue
(
"Image"
),
CustomerSourceType
=
base
.
ParmJObj
.
GetInt
(
"CustomerSourceType"
),
CustomerSource
=
base
.
ParmJObj
.
GetStringValue
(
"CustomerSource"
),
CountryId
=
base
.
ParmJObj
.
GetInt
(
"CountryId"
),
ProvinceId
=
base
.
ParmJObj
.
GetInt
(
"ProvinceId"
),
CityId
=
base
.
ParmJObj
.
GetInt
(
"CityId"
),
DistrictId
=
base
.
ParmJObj
.
GetInt
(
"DistrictId"
),
LngLat
=
base
.
ParmJObj
.
GetStringValue
(
"LngLat"
),
Account
=
base
.
ParmJObj
.
GetStringValue
(
"Account"
),
Remark
=
base
.
ParmJObj
.
GetStringValue
(
"Remark"
),
};
model
.
Status
=
Common
.
Enum
.
DateStateEnum
.
Normal
;
model
.
CreateBy
=
base
.
UserInfo
.
AccountId
;
model
.
CreateTime
=
DateTime
.
Now
;
model
.
UpdateTime
=
DateTime
.
Now
;
model
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
model
.
School_Id
=
base
.
UserInfo
.
School_Id
;
var
flag
=
customerModule
.
SetCustomerModule
(
model
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
/// <summary>
/// 根据编号删除客户
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
RemoveCustomer
()
{
var
CustomerId
=
base
.
ParmJObj
.
GetInt
(
"CustomerId"
);
var
flag
=
customerModule
.
RemoveCustomerModule
(
CustomerId
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
/// <summary>
/// 根据编号获取客户详情
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetCustomer
()
{
var
CustomerId
=
base
.
ParmJObj
.
GetInt
(
"CustomerId"
);
var
data
=
customerModule
.
GetCustomerModule
(
CustomerId
);
return
ApiResult
.
Success
(
data
:
data
);
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment