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
c6dd57e3
authored
Nov 30, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
添加合同备注
parent
7f04de96
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
public/js/details.js
resources/views/detail/detail_items_info.php
resources/views/detail/edit_items.blade.php
public/js/details.js
View file @
c6dd57e3
...
...
@@ -416,7 +416,7 @@
$
(
'.edit-item'
).
click
(
function
()
{
layer
.
open
({
type
:
1
,
area
:
[
'1
0
00px'
,
'500px'
],
area
:
[
'1
2
00px'
,
'500px'
],
title
:
'编辑明细'
,
content
:
$
(
'#edit-items'
),
btn
:[
'确认'
,
'取消'
],
...
...
resources/views/detail/detail_items_info.php
View file @
c6dd57e3
...
...
@@ -62,7 +62,8 @@
<th>
生产跟踪
</th>
<?php
}
?>
<th>
备注
</th>
<th>
商品备注
</th>
<th>
合同备注
</th>
<th>
状态
</th>
</tr>
</thead>
...
...
@@ -139,6 +140,7 @@
<?php
}
?>
<td>
<?=
!
empty
(
$v
[
'remarks'
])
?
$v
[
'remarks'
]
:
''
?>
</td>
<td>
<?=
!
empty
(
$v
[
'contract_remark'
])
?
$v
[
'contract_remark'
]
:
''
?>
</td>
<td>
<?=
$v
[
'status'
]
==
1
?
'正常'
:
'<i class="error">已关闭</i>'
?>
</td>
</tr>
...
...
resources/views/detail/edit_items.blade.php
View file @
c6dd57e3
...
...
@@ -18,7 +18,8 @@
<th>
采购员
</th>
@endif
<th>
批次
</th>
<th>
备注
</th>
<th>
商品备注
</th>
<th>
合同备注
</th>
</tr>
</thead>
...
...
@@ -44,7 +45,10 @@
<input
type=
"text"
class=
"form-control edit_batch"
name=
"change_item[{{ $item['rec_id'] }}][batch]"
value=
"{{ $item['batch'] }}"
placeholder=
"请填写批次"
>
</td>
<td>
<input
type=
"text"
class=
"form-control edit_remarks"
name=
"change_item[{{ $item['rec_id'] }}][remarks]"
value=
"{{ $item['remarks'] }}"
placeholder=
"请填写备注"
style=
"width:200px;"
>
<input
type=
"text"
class=
"form-control edit_remarks"
name=
"change_item[{{ $item['rec_id'] }}][remarks]"
value=
"{{ $item['remarks'] }}"
placeholder=
"请填写商品备注"
style=
"width:200px;"
>
</td>
<td>
<input
type=
"text"
class=
"form-control edit_contract_remark"
name=
"change_item[{{ $item['rec_id'] }}][contract_remark]"
value=
"{{ $item['contract_remark'] }}"
placeholder=
"请填写合同备注"
style=
"width:200px;"
>
</td>
</tr>
...
...
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