明树Git Lab
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
L
letian_backend
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
zengfanpei
letian_backend
Commits
bdac899a
Commit
bdac899a
authored
May 23, 2025
by
zfp1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
8e50bb6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
productTracController.js
controller/productTracController.js
+2
-2
letianProTraceCode.js
db/models/letianProTraceCode.js
+4
-0
No files found.
controller/productTracController.js
View file @
bdac899a
...
@@ -47,7 +47,7 @@ async function listTraceCode(req, res, next) {
...
@@ -47,7 +47,7 @@ async function listTraceCode(req, res, next) {
search
.
batchNumber
=
{
$regex
:
req
.
body
.
batchNumber
}
search
.
batchNumber
=
{
$regex
:
req
.
body
.
batchNumber
}
}
}
const
count
=
await
DB
.
ProTraceCode
.
countDocuments
(
search
);
const
count
=
await
DB
.
ProTraceCode
.
countDocuments
(
search
);
let
list
=
await
DB
.
ProTraceCode
.
find
(
search
).
sort
({
_id
:
-
1
}).
skip
(
skip
).
limit
(
pageSize
).
populate
({
path
:
"rawMatCul.proSteps.img"
}).
populate
({
path
:
"proProcess.proSteps.img"
}).
lean
();
let
list
=
await
DB
.
ProTraceCode
.
find
(
search
).
sort
({
_id
:
-
1
}).
skip
(
skip
).
limit
(
pageSize
).
populate
({
path
:
"rawMatCul.proSteps.img"
}).
populate
({
path
:
"proProcess.proSteps.img"
}).
populate
({
path
:
"cjVideo"
}).
lean
();
let
ret
=
[];
let
ret
=
[];
for
(
let
index
=
0
;
index
<
list
.
length
;
index
++
)
{
for
(
let
index
=
0
;
index
<
list
.
length
;
index
++
)
{
const
element
=
list
[
index
];
const
element
=
list
[
index
];
...
@@ -189,7 +189,7 @@ async function getJiankong(req, res, next) {
...
@@ -189,7 +189,7 @@ async function getJiankong(req, res, next) {
if
(
!
req
.
body
.
_id
)
{
if
(
!
req
.
body
.
_id
)
{
return
res
.
sendError
(
errorMessage
.
resourceNotFound
);
return
res
.
sendError
(
errorMessage
.
resourceNotFound
);
}
}
let
traccode
=
await
DB
.
ProTraceCode
.
findOne
({
_id
:
req
.
body
.
_id
},
{
type
:
1
,
source
:
1
,
_id
:
1
,
agrOnOff
:
1
,
indEnvOnOff
:
1
}).
lean
();
let
traccode
=
await
DB
.
ProTraceCode
.
findOne
({
_id
:
req
.
body
.
_id
},
{
type
:
1
,
source
:
1
,
_id
:
1
,
cjVideo
:
1
,
agrOnOff
:
1
,
indEnvOnOff
:
1
}).
populate
({
path
:
"cjVideo"
}).
lean
();
if
(
!
(
traccode
&&
traccode
.
_id
&&
traccode
.
source
))
{
if
(
!
(
traccode
&&
traccode
.
_id
&&
traccode
.
source
))
{
return
res
.
sendError
(
errorMessage
.
resourceNotFound
);
return
res
.
sendError
(
errorMessage
.
resourceNotFound
);
}
}
...
...
db/models/letianProTraceCode.js
View file @
bdac899a
...
@@ -15,6 +15,10 @@ const letianProTraceCodeSchema = new Schema({
...
@@ -15,6 +15,10 @@ const letianProTraceCodeSchema = new Schema({
type
:
Number
,
type
:
Number
,
comment
:
"1 种植农产品 2 轻加工 3 深加工"
comment
:
"1 种植农产品 2 轻加工 3 深加工"
},
},
cjVideo
:
{
// 车间视频
type
:
mongoose
.
Types
.
ObjectId
,
ref
:
'File'
,
},
workshop
:
{
workshop
:
{
type
:
String
,
type
:
String
,
comment
:
"生产车间"
comment
:
"生产车间"
...
...
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