Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
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
1f639e3f
authored
Jun 16, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整审单
parent
a8757b11
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
12 deletions
public/js/change_order.js
public/js/standardBrand.js
resources/views/changeOrder/content.blade.php
resources/views/changeOrder/tempSave.blade.php
public/js/change_order.js
View file @
1f639e3f
...
...
@@ -683,7 +683,9 @@
for
(
var
i
in
items
)
{
if
(
!
items
[
i
].
is_add
)
{
$
(
'.change_item_'
+
i
).
find
(
'.change_goods_price'
).
val
(
items
[
i
].
goods_price
);
$
(
'.change_item_'
+
i
).
find
(
'.change_goods_number'
).
val
(
items
[
i
].
goods_number
);
$
(
'.change_item_'
+
i
).
find
(
'.change_goods_number'
).
val
(
items
[
i
].
goods_number
);
$
(
'.change_item_'
+
i
).
find
(
'.change_standard_brand_id'
).
val
(
items
[
i
].
standard_brand_id
);
$
(
'.change_item_'
+
i
).
find
(
'.change_standard_brand_name'
).
val
(
items
[
i
].
standard_brand_name
);
if
(
items
[
i
].
status
==
-
1
)
{
$
(
'.change_item_'
+
i
).
find
(
'.change_status'
).
val
(
items
[
i
].
status
);
...
...
@@ -694,16 +696,17 @@
items_len
++
;
}
// 添加新增商品
for
(
var
i
in
items
)
{
if
(
!
items
[
i
].
is_add
)
continue
;
if
(
!
items
[
i
].
add_type
)
{
var
sup
=
items
[
i
].
canal
?
items
[
i
].
supplier_id
+
'.'
+
items
[
i
].
canal
:
items
[
i
].
supplier_id
;
new_str
+=
'<tr data-sup="'
+
sup
+
'">'
;
new_str
+=
'<tr data-sup="'
+
sup
+
'"
data-brand_id="'
+
items
[
i
].
brand_id
+
'" data-brand_name="'
+
items
[
i
].
brand_name
+
'"
>'
;
}
else
{
new_str
+=
'<tr>'
;
new_str
+=
'<tr
data-brand_id="'
+
items
[
i
].
brand_id
+
'" data-brand_name="'
+
items
[
i
].
brand_name
+
'"
>'
;
}
new_str
+=
'<td>'
+
i
+
'</td>\
<td>\
<input type="hidden" name="change_info['
+
i
+
'][supplier_name]" value="'
+
items
[
i
].
supplier_name
+
'">\
...
...
@@ -714,6 +717,16 @@
<p>'
+
items
[
i
].
goods_name
+
'</p>\
</td>\
<td>\
<input class="change_brand_id" type="hidden" name="change_info['
+
i
+
'][brand_id]" value="'
+
items
[
i
].
brand_id
+
'">\
<input class="change_brand_name" type="hidden" name="change_info['
+
i
+
'][brand_name]" value="'
+
items
[
i
].
brand_name
+
'">\
<p>'
+
items
[
i
].
brand_name
+
'</p>\
</td>\
<td>\
<input type="hidden" class="change_standard_brand_id" name="change_info['
+
i
+
'][standard_brand_id]" value="'
+
items
[
i
].
standard_brand_id
+
'" />\
<input type="text" class="change_standard_brand_name" name="change_info['
+
i
+
'][standard_brand_name]" value="'
+
items
[
i
].
standard_brand_name
+
'" readonly />\
<i class="fa fa-exclamation-triangle fa-2x select-standard-brand" aria-hidden="true" data-type=21></i>\
</td>\
<td>\
<input class="only_number num change_goods_number" name="change_info['
+
i
+
'][goods_number]" value="'
+
items
[
i
].
goods_number
+
'">\
</td>\
<td>\
...
...
public/js/standardBrand.js
View file @
1f639e3f
...
...
@@ -49,7 +49,6 @@ layui.use(['table', 'form'], function() {
var
self
=
$
(
this
);
var
type
=
self
.
data
(
'type'
);
// 1-后台购物车,2-后台审单
$
(
'.standard_brand_name'
).
val
(
''
);
scm_brand_id
=
0
;
scm_brand_name
=
''
;
...
...
@@ -99,8 +98,8 @@ layui.use(['table', 'form'], function() {
$
.
lie
.
add_order
.
lists
(
user_id
,
1
,
1
,
delivery_place
);
}
else
{
self
.
parents
(
'tr'
).
find
(
'.standard_brand_id'
).
val
(
scm_brand_id
);
self
.
parents
(
'tr'
).
find
(
'.standard_brand_name'
).
val
(
scm_brand_name
);
self
.
parents
(
'tr'
).
find
(
'.
change_
standard_brand_id'
).
val
(
scm_brand_id
);
self
.
parents
(
'tr'
).
find
(
'.
change_
standard_brand_name'
).
val
(
scm_brand_name
);
}
return
false
;
...
...
@@ -119,7 +118,8 @@ layui.use(['table', 'form'], function() {
}
})
$
(
'.curr-brand'
).
text
(
curr_brand_name
)
$
(
'.standard_brand_name'
).
val
(
''
);
$
(
'.curr-brand'
).
text
(
curr_brand_name
);
})
})
\ No newline at end of file
resources/views/changeOrder/content.blade.php
View file @
1f639e3f
...
...
@@ -165,14 +165,15 @@
</td>
<td>
<input
class=
"change_brand_id"
type=
"hidden"
name=
"change_info[{{$v['rec_id']}}][brand_id]"
value=
"{{$v['brand_id']}}"
>
<input
class=
"change_brand_name"
type=
"hidden"
name=
"change_info[{{$v['rec_id']}}][brand_name]"
value=
"{{$v['brand_name']}}"
>
<p>
{{$v['brand_name']}}
</p>
</td>
<td>
@if ($v['standard_brand_name'])
@if ($v['standard_brand_name']
|| $v['status'] == -1
)
<p>
{{$v['standard_brand_name']}}
</p>
@else
<input
type=
"hidden"
class=
"standard_brand_id"
name=
"change_info[{{$v['rec_id']}}][standard_brand_id]"
/>
<input
type=
"text"
class=
"standard_brand_name"
name=
"change_info[{{$v['rec_id']}}][standard_brand_name]"
readonly
/>
<input
type=
"hidden"
class=
"
change_
standard_brand_id"
name=
"change_info[{{$v['rec_id']}}][standard_brand_id]"
/>
<input
type=
"text"
class=
"
change_
standard_brand_name"
name=
"change_info[{{$v['rec_id']}}][standard_brand_name]"
readonly
/>
<i
class=
"fa fa-exclamation-triangle fa-2x select-standard-brand"
aria-hidden=
"true"
data-type=
2
></i>
@endif
</td>
...
...
resources/views/changeOrder/tempSave.blade.php
View file @
1f639e3f
...
...
@@ -28,7 +28,8 @@
<table
class=
"table table-bordered table-hover"
>
<thead>
<tr>
<th
width=
"40%"
>
型号
</th>
<th
width=
"20%"
>
型号
</th>
<th
width=
"20%"
>
标准品牌
</th>
<th>
调整数量
</th>
<th>
调整单价
</th>
<th
width=
"20%"
>
状态
</th>
...
...
@@ -40,6 +41,7 @@
@foreach ($order_temp_info['temp_save_info']['change_info'] as $k => $v)
<tr>
<td>
{{$v['goods_name']}}
</td>
<td>
{{ isset($v['standard_brand_name']) ? $v['standard_brand_name'] : '' }}
</td>
<td>
{{$v['goods_number']}}
</td>
<td>
{{$v['goods_price']}}
</td>
<td>
...
...
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