Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shotengai
Project
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
open-source
shotengai
Commits
0f93acca
Commit
0f93acca
authored
Oct 17, 2017
by
ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix creating order
parent
b736f61c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
orders_controller.rb
lib/shotengai/controller/customer/orders_controller.rb
+2
-2
snapshot.rb
lib/shotengai/snapshot.rb
+1
-1
No files found.
lib/shotengai/controller/customer/orders_controller.rb
View file @
0f93acca
...
@@ -47,8 +47,8 @@ module Shotengai
...
@@ -47,8 +47,8 @@ module Shotengai
end
end
def
snapshot_params
def
snapshot_params
remark_value
=
params
.
fetch
(
:snapshot
).
fetch
(
:remark_
input
,
nil
)
&
.
permit!
remark_value
=
params
.
fetch
(
:snapshot
).
fetch
(
:remark_
value
,
nil
)
&
.
permit!
info_value
=
params
.
fetch
(
:snapshot
).
fetch
(
:info_
input
,
nil
)
&
.
permit!
info_value
=
params
.
fetch
(
:snapshot
).
fetch
(
:info_
value
,
nil
)
&
.
permit!
params
.
fetch
(
:snapshot
).
permit
(
params
.
fetch
(
:snapshot
).
permit
(
:shotengai_series_id
,
:count
,
:shotengai_series_id
,
:count
,
).
merge
(
remark_value:
remark_value
,
info_value:
info_value
)
).
merge
(
remark_value:
remark_value
,
info_value:
info_value
)
...
...
lib/shotengai/snapshot.rb
View file @
0f93acca
...
@@ -155,7 +155,7 @@ module Shotengai
...
@@ -155,7 +155,7 @@ module Shotengai
end
end
def
check_remark_value
def
check_remark_value
nullable_keys
=
series
.
remark_value
.
decode
.
select
{
|
k
,
v
|
v
}
.
keys
nullable_keys
=
(
series
.
remark_value
.
decode
||
{}).
select
{
|
k
,
v
|
v
}
&
.
keys
required_keys
=
product
.
remark_template
.
keys
-
nullable_keys
required_keys
=
product
.
remark_template
.
keys
-
nullable_keys
absent_keys
=
required_keys
-
remark
.
keys
absent_keys
=
required_keys
-
remark
.
keys
# remark 可添加多余字段
# remark 可添加多余字段
...
...
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