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
4fe40439
authored
Oct 12, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整发票信息
parent
71502320
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
25 deletions
app/Http/Controllers/AddOrderController.php
resources/views/addOffline/content.blade.php
resources/views/addOnline/content.blade.php
resources/views/addOrder/content.blade.php
app/Http/Controllers/AddOrderController.php
View file @
4fe40439
...
@@ -187,9 +187,9 @@ Class AddOrderController extends Controller
...
@@ -187,9 +187,9 @@ Class AddOrderController extends Controller
$invoice
=
DB
::
connection
(
'order'
)
->
table
(
'lie_taxinfo'
)
->
where
(
'tax_id'
,
$tax_id
)
->
first
();
$invoice
=
DB
::
connection
(
'order'
)
->
table
(
'lie_taxinfo'
)
->
where
(
'tax_id'
,
$tax_id
)
->
first
();
$invoice
->
province_val
=
$
this
->
getAddress
(
$invoice
->
consignee_province
)
;
$invoice
->
province_val
=
$
invoice
->
consignee_province
?
$this
->
getAddress
(
$invoice
->
consignee_province
)
:
''
;
$invoice
->
city_val
=
$
this
->
getAddress
(
$invoice
->
consignee_city
)
;
$invoice
->
city_val
=
$
invoice
->
consignee_city
?
$this
->
getAddress
(
$invoice
->
consignee_city
)
:
''
;
$invoice
->
district_val
=
$
this
->
getAddress
(
$invoice
->
consignee_district
)
;
$invoice
->
district_val
=
$
invoice
->
consignee_district
?
$this
->
getAddress
(
$invoice
->
consignee_district
)
:
''
;
return
[
'errcode'
=>
0
,
'errmsg'
=>
''
,
'data'
=>
$invoice
];
return
[
'errcode'
=>
0
,
'errmsg'
=>
''
,
'data'
=>
$invoice
];
}
}
...
...
resources/views/addOffline/content.blade.php
View file @
4fe40439
...
@@ -196,12 +196,9 @@
...
@@ -196,12 +196,9 @@
</tr>
</tr>
</thead>
</thead>
<tbody></tbody>
<tbody></tbody>
<tfoot>
<tr>
<td
colspan=
"9"
><textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea></td>
</tr>
</tfoot>
</table>
</table>
<textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea>
</div>
</div>
<!-- 订单金额 -->
<!-- 订单金额 -->
...
...
resources/views/addOnline/content.blade.php
View file @
4fe40439
...
@@ -124,9 +124,9 @@
...
@@ -124,9 +124,9 @@
<label
class=
"radio-inline"
>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"inv_type"
class=
"radio-inv-type"
value=
"4"
>
增值税普通发票
<input
type=
"radio"
name=
"inv_type"
class=
"radio-inv-type"
value=
"4"
>
增值税普通发票
</label>
</label>
<label
class=
"radio-inline"
>
<
!-- <
label class="radio-inline">
<input type="radio" name="inv_type" class="radio-inv-type" value=""> 不开发票
<input type="radio" name="inv_type" class="radio-inv-type" value=""> 不开发票
</label>
</label>
-->
</div>
</div>
</div>
</div>
...
@@ -342,14 +342,9 @@
...
@@ -342,14 +342,9 @@
</tr>
</tr>
</thead>
</thead>
<tbody></tbody>
<tbody></tbody>
<tfoot>
<tr>
<td
colspan=
"9"
>
<textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea>
</td>
</tr>
</tfoot>
</table>
</table>
<textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea>
</div>
</div>
</div>
</div>
...
...
resources/views/addOrder/content.blade.php
View file @
4fe40439
...
@@ -361,15 +361,10 @@
...
@@ -361,15 +361,10 @@
<th
width=
"5%"
>
操作
</th>
<th
width=
"5%"
>
操作
</th>
</tr>
</tr>
</thead>
</thead>
<tbody></tbody>
<tbody></tbody>
<tfoot>
<tr>
<td
colspan=
"9"
>
<textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea>
</td>
</tr>
</tfoot>
</table>
</table>
<textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea>
</div>
</div>
</div>
</div>
...
...
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