Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zjxcxServer
Overview
Overview
Details
Activity
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
node_server
zjxcxServer
Commits
5fb13fdf
Commit
5fb13fdf
authored
Oct 16, 2025
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
889bcfb6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
9 deletions
+10
-9
checkMonthData.ts
src/biz/admin/checkData/checkMonthData.ts
+0
-0
enterpriseBase.ts
src/biz/admin/stats/guanWeiHui/enterpriseBase.ts
+2
-2
myEnterprise.ts
src/biz/mobileFuHuaQi/enterprise/myEnterprise.ts
+1
-0
stats.ts
src/routers/admin/stats.ts
+7
-7
No files found.
src/biz/admin/checkData/checkMonthData.ts
View file @
5fb13fdf
This diff is collapsed.
Click to expand it.
src/biz/admin/stats/guanWeiHui/enterpriseBase.ts
View file @
5fb13fdf
...
...
@@ -94,7 +94,7 @@ function getDeclarationTime() {
export
async
function
enterpriseNumberChnageInfo
(
year
)
{
let
param
=
{
taskId
:{
"$regex"
:
/^
\
d
{
18
}
2024
\
d
{
1
,
2
}
$
/
},
taskId
:{
"$regex"
:
`/^\d{18}
${
year
}
\d{1,2}$/`
},
draftLock
:
true
,
};
let
dbList
=
await
findEnterpriseList
(
param
);
...
...
@@ -134,7 +134,7 @@ export async function valueAnalysisStatis(uscc) {
let
param
=
{
uscc
};
let
i18dbList
=
await
findI18nRegisterListByParam
(
param
);
let
partnersCount
=
i18dbList
.
length
()
;
let
partnersCount
=
i18dbList
.
length
;
let
cooperateCount
=
await
getIcrCountByParam
(
param
);
let
dbList
=
await
findFinancingList
({
fuHuaQiUscc
:
uscc
});
...
...
src/biz/mobileFuHuaQi/enterprise/myEnterprise.ts
View file @
5fb13fdf
...
...
@@ -510,6 +510,7 @@ export async function replenishMyEnterpriseInPutInfo(fuHuaQiUscc:string, param)
await
enterpriseData
.
replenishEnterpriseData
(
fuHuaQiUscc
,
param
);
}
await
dataBaseInfo
.
save
();
addFuHuaQiPoint
(
fuHuaQiUscc
,
FUHUAQINODEENUM
.
我的企业
_
补录企业
,
param
.
uscc
,
'新迁入'
);
...
...
src/routers/admin/stats.ts
View file @
5fb13fdf
...
...
@@ -43,16 +43,16 @@ export function setRouter(httpServer) {
httpServer
.
post
(
'/admin/stats/guanweih/fuhuaqi/valueanalysis'
,
checkGuanWeiHuiToken
,
asyncHandler
(
valueAnalysis
));
//价值分析
//企业自画像
httpServer
.
post
(
'/admin/stats/enterprise/portrait'
,
checkGuanWeiHuiToken
,
asyncHandler
(
enterprisportrait
));
//价值分析
//
httpServer.post('/admin/stats/enterprise/portrait',checkGuanWeiHuiToken, asyncHandler(enterprisportrait));//价值分析
}
async
function
enterprisportrait
(
req
,
res
)
{
}
//
async function enterprisportrait(req, res) {
// d
//
}
...
...
@@ -87,11 +87,11 @@ async function enterpriseChange(req, res) {
async
function
valueAnalysis
(
req
,
res
)
{
let
reqConf
=
{
year
:
'Number
'
};
let
reqConf
=
{
uscc
:
'String
'
};
const
NotMustHaveKeys
=
[];
let
{
year
}
=
eccReqParamater
(
reqConf
,
req
.
body
,
NotMustHaveKeys
);
let
{
uscc
}
=
eccReqParamater
(
reqConf
,
req
.
body
,
NotMustHaveKeys
);
let
result
=
await
enterpriseBaseBiz
.
valueAnalysisStatis
(
year
);
let
result
=
await
enterpriseBaseBiz
.
valueAnalysisStatis
(
uscc
);
res
.
success
(
result
);
}
...
...
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