Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
黄成意
/
php_frq_api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0eb65008
authored
May 27, 2021
by
duwenjun
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
状态变更
parent
e1490e5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/Model/QuoteModel.php
app/Model/QuoteModel.php
View file @
0eb65008
...
...
@@ -1319,11 +1319,11 @@ class QuoteModel extends Model
]);
#更新报价待报价
#更新
if
(
$info
[
"status"
]
==
2
)
{
#撤销选中
$QuoteModel
->
where
(
"inquiry_items_id"
,
$inquiry_items_id
)
->
whereNotIn
(
"status"
,
[
-
1
,
0
,
3
])
$QuoteModel
->
where
(
"inquiry_items_id"
,
$inquiry_items_id
)
->
whereNotIn
(
"status"
,
[
-
1
,
0
,
3
,
9
])
->
update
([
"status"
=>
1
,
'update_time'
=>
time
()]);
#重启其他所有状态为 已报价
}
if
(
$info
[
"status"
]
==
3
)
{
#撤销确认
$QuoteModel
->
where
(
"inquiry_items_id"
,
$inquiry_items_id
)
->
whereNotIn
(
"status"
,
[
-
1
,
0
,
2
])
$QuoteModel
->
where
(
"inquiry_items_id"
,
$inquiry_items_id
)
->
whereNotIn
(
"status"
,
[
-
1
,
0
,
2
,
9
])
->
update
([
"status"
=>
1
,
'update_time'
=>
time
()]);
#重启其他所有状态为 已报价
}
...
...
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