Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
97ddd548
Commit
97ddd548
authored
Nov 16, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:订单已装柜,未提单制作,修改是否控货,提交时提示“提单已制作,如需修改请联系客服”
parent
19e13b70
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
9 deletions
+22
-9
box.js
src/api/ecw/box.js
+8
-1
PrintLadingBill.vue
src/views/ecw/order/components/PrintLadingBill.vue
+6
-7
edit.vue
src/views/ecw/order/edit.vue
+8
-1
No files found.
src/api/ecw/box.js
View file @
97ddd548
...
...
@@ -127,7 +127,7 @@ export function getCostList(params) {
});
}
// 收款单表 SELECT * from ecw_payment
// 应付款表 SELECT * from ecw_payable
// 应付款表 SELECT * from ecw_payable
// 根据明细获取主表ID
export
function
getPaymentId
(
id
)
{
return
request
({
...
...
@@ -214,6 +214,13 @@ export function deleteBillService(id) {
method
:
"
delete
"
,
});
}
// 检查提单状态是否已制作提单
export
function
checkBillOfLadingService
(
orderId
)
{
return
request
({
url
:
"
/shipment/make-bill-of-lading/check/billOfLading/
"
+
orderId
,
method
:
"
post
"
,
});
}
// 获得制作提货单
export
function
getBillService
(
params
)
{
...
...
src/views/ecw/order/components/PrintLadingBill.vue
View file @
97ddd548
...
...
@@ -14,7 +14,6 @@
</
template
>
<
script
>
import
{
parseTime
}
from
'
@/utils/ruoyi
'
import
{
getLadingBill
}
from
'
@/api/ecw/order
'
import
lodop
from
'
@/utils/lodop
'
import
PdfViewer
from
'
@/components/PdfViewer
'
import
FileSaver
from
'
file-saver
'
...
...
@@ -83,10 +82,10 @@ export default {
this
.
show
=
false
this
.
$emit
(
'
close
'
);
},
download
(){
let
blob
=
new
Blob
([
this
.
pdfData
],
{
type
:
"
application/pdf
"
})
FileSaver
.
saveAs
(
blob
,
this
.
detail
.
imgUrl
.
split
(
"
/
"
).
pop
());
FileSaver
.
saveAs
(
blob
,
this
.
detail
.
imgUrl
.
split
(
"
/
"
).
pop
());
},
print
(){
lodop
().
then
(
LODOP
=>
{
...
...
@@ -106,7 +105,7 @@ export default {
}
LODOP
.
PREVIEW
();
// LODOP.ADD_PRINT_PDF(0,0,"100%","100%",data);
// LODOP.PREVIEW(); // 预览
/* LODOP.PRINTA(); // 选择打印机
// 直接打印 */
...
...
@@ -114,8 +113,8 @@ export default {
console
.
error
(
'
lodop异常
'
,
err
)
// alert('请检查LODOP打印控件是否安装并启动');
})
}
}
}
...
...
@@ -149,4 +148,4 @@ export default {
.checkbox
{
text-align
:
center
;}
.checkbox
input
{
text-decoration
:
none
;
padding
:
10px
15px
;
background
:
#ccc
;
border-radius
:
5px
;
cursor
:
pointer
;
margin-bottom
:
15px
;
font-size
:
16px
;
margin
:
0
2px
;}
</
style
>
\ No newline at end of file
</
style
>
src/views/ecw/order/edit.vue
View file @
97ddd548
...
...
@@ -770,6 +770,7 @@ import {getCustomer} from "@/api/ecw/customer";
import
{
debounce
}
from
"
@/utils
"
;
import
{
getOfferSelect
,
getOfferCheck
}
from
"
@/api/ecw/offer
"
import
Template
from
'
@/views/cms/template/index.vue
'
import
{
checkBillOfLadingService
}
from
"
@/api/ecw/box
"
;
// 缓存默认的表单数据
let
makeDefaultFormData
=
()
=>
{
...
...
@@ -1699,6 +1700,12 @@ export default {
});
}
},
checkBillOfLading
(){
return
checkBillOfLadingService
(
this
.
form
.
orderId
).
then
((
res
)
=>
{
console
.
log
(
"
检查提单制作状态
"
,
res
.
data
)
return
res
.
data
})
},
/** 提交按钮 */
// type 在新建的时候表示状态,0草稿,2带入仓
submitForm
(
submitType
)
{
...
...
@@ -1778,7 +1785,7 @@ export default {
// 修改的提交
if
(
this
.
form
.
orderId
)
{
if
(
this
.
form
.
tidanNo
)
{
if
(
await
this
.
checkBillOfLading
()
)
{
await
this
.
$confirm
(
this
.
$t
(
'
提单已制作,如需修改请联系客服
'
))
}
let
data
=
Object
.
assign
({},
this
.
form
,
{
...
...
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