Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
huatu_API
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
liudong1993
huatu_API
Commits
4f6bac82
Commit
4f6bac82
authored
Aug 19, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
b50ccb98
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
ClientTypeEnum.cs
REBORN.Common/Enum/Finance/ClientTypeEnum.cs
+4
-4
FinanceInfoService.cs
REBORN.Services.FinanceService/FinanceInfoService.cs
+1
-1
No files found.
REBORN.Common/Enum/Finance/ClientTypeEnum.cs
View file @
4f6bac82
...
...
@@ -55,8 +55,8 @@ namespace REBORN.Common.Enum.Finance
/// <summary>
/// OP
/// </summary>
[
EnumField
(
"OP"
)]
OP
=
9
,
//
[EnumField("OP")]
//
OP = 9,
/// <summary>
/// 员工
/// </summary>
...
...
@@ -80,8 +80,8 @@ namespace REBORN.Common.Enum.Finance
/// <summary>
/// 日本车行客户
/// </summary>
[
EnumField
(
"日本车行客户"
)]
JapanCustomer
=
13
,
//
[EnumField("日本车行客户")]
//
JapanCustomer = 13,
/// <summary>
/// 直客客户
/// </summary>
...
...
REBORN.Services.FinanceService/FinanceInfoService.cs
View file @
4f6bac82
...
...
@@ -1015,7 +1015,7 @@ namespace REBORN.Services.FinanceService
if
(
userInfo
.
SimpleEasy
==
1
)
{
list
=
list
.
Where
(
x
=>
x
.
Value
!=
"11"
&&
x
.
Value
!=
"12"
&&
x
.
Value
!=
"13"
&&
x
.
Value
!=
"14"
).
ToList
();
list
=
list
.
Where
(
x
=>
x
.
Value
!=
"11"
&&
x
.
Value
!=
"12"
&&
x
.
Value
!=
"13"
&&
x
.
Value
!=
"14"
&&
x
.
Value
!=
"3"
).
ToList
();
int
MaxId
=
list
.
Max
(
x
=>
Convert
.
ToInt32
(
x
.
Value
))
+
1
;
foreach
(
var
item
in
list
.
Where
(
x
=>
x
.
Value
==
"15"
).
OrderBy
(
x
=>
Convert
.
ToInt32
(
x
.
Value
)))
{
...
...
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