Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
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
83dfe960
authored
Sep 26, 2022
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
取消发货
parent
6f937fdc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
170 additions
and
171 deletions
src/views/OrderTrack/goods.vue
src/views/OrderTrack/invoice.vue
src/views/OrderTrack/purAdd.vue
src/views/OrderTrack/goods.vue
View file @
83dfe960
...
...
@@ -124,7 +124,6 @@
source_type
:
this
.
formInline
.
source_type
,
}).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
tableData
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
}
else
{
...
...
src/views/OrderTrack/invoice.vue
View file @
83dfe960
...
...
@@ -7,11 +7,11 @@
</el-form-item>
<el-form-item
label=
"型号"
prop=
"goods_name"
>
<el-autocomplete
v-model=
"formInline.goods_name"
:trigger-on-focus=
"false"
@
keyup
.
enter
.
native=
"onSubmit"
:fetch-suggestions=
"querySearchAsync"
placeholder=
"请输入型号"
clearable
></el-autocomplete>
:fetch-suggestions=
"querySearchAsync"
placeholder=
"请输入型号"
clearable
></el-autocomplete>
</el-form-item>
<el-form-item
label=
"品牌"
prop=
"brand_name"
>
<el-autocomplete
v-model=
"formInline.brand_name"
:trigger-on-focus=
"false"
@
keyup
.
enter
.
native=
"onSubmit"
:fetch-suggestions=
"querySearchAsyncBrand"
placeholder=
"请输入品牌"
clearable
></el-autocomplete>
:fetch-suggestions=
"querySearchAsyncBrand"
placeholder=
"请输入品牌"
clearable
></el-autocomplete>
</el-form-item>
<el-form-item
label=
"状态"
prop=
"status"
>
<el-select
v-model=
"formInline.status"
placeholder=
"请选择"
>
...
...
@@ -43,181 +43,182 @@
<el-table-column
prop=
"create_name"
label=
"创建人"
min-width=
"100"
></el-table-column>
<el-table-column
prop=
"purchase_name"
label=
"订单人员"
min-width=
"100"
></el-table-column>
</el-table>
<el-pagination
layout=
"total, sizes, prev, pager, next, jumper"
:page-sizes=
"[10, 20, 50, 100, 200]"
:total=
"total"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
:current-page=
"page"
>
</el-pagination>
<el-pagination
layout=
"total, sizes, prev, pager, next, jumper"
:page-sizes=
"[10, 20, 50, 100, 200]"
:total=
"total"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
:current-page=
"page"
></el-pagination>
</div>
</div>
<Menu
/>
<Menu/>
</section>
</
template
>
<
script
>
import
Vue
from
'vue'
;
import
Menu
from
"@/components/menu.vue"
;
import
{
Form
,
FormItem
,
Select
,
Option
,
Input
,
Button
,
Table
,
TableColumn
,
Message
,
Dialog
,
Pagination
,
Autocomplete
}
from
'element-ui'
import
Vue
from
'vue'
;
import
Menu
from
"@/components/menu.vue"
;
import
{
Autocomplete
,
Button
,
Dialog
,
Form
,
FormItem
,
Input
,
Message
,
Option
,
Pagination
,
Select
,
Table
,
TableColumn
}
from
'element-ui'
Vue
.
prototype
.
$message
=
Message
;
Vue
.
use
(
Button
).
use
(
Form
).
use
(
Select
).
use
(
Option
).
use
(
Input
).
use
(
FormItem
).
use
(
Dialog
).
use
(
Pagination
);
Vue
.
use
(
TableColumn
).
use
(
Table
).
use
(
Autocomplete
);
export
default
{
name
:
"orderTrackInvoice"
,
data
()
{
return
{
total
:
0
,
limit
:
10
,
page
:
1
,
formInline
:
{
stock_in_sn
:
""
,
goods_name
:
''
,
brand_name
:
''
,
status
:
''
},
tableData
:
""
,
multipleSelection
:
[],
//选择数据
};
Vue
.
prototype
.
$message
=
Message
;
Vue
.
use
(
Button
).
use
(
Form
).
use
(
Select
).
use
(
Option
).
use
(
Input
).
use
(
FormItem
).
use
(
Dialog
).
use
(
Pagination
);
Vue
.
use
(
TableColumn
).
use
(
Table
).
use
(
Autocomplete
);
export
default
{
name
:
"orderTrackInvoice"
,
data
()
{
return
{
total
:
0
,
limit
:
10
,
page
:
1
,
formInline
:
{
stock_in_sn
:
""
,
goods_name
:
''
,
brand_name
:
''
,
status
:
''
},
tableData
:
""
,
multipleSelection
:
[],
//选择数据
};
},
created
()
{
this
.
getData
();
},
computed
:
{},
methods
:
{
getData
()
{
this
.
$http
(
'post'
,
"/api/purchase/getDeliveryList"
,
{
page
:
this
.
page
,
limit
:
this
.
limit
,
stock_in_sn
:
this
.
formInline
.
stock_in_sn
,
brand_name
:
this
.
formInline
.
brand_name
,
goods_name
:
this
.
formInline
.
goods_name
,
status
:
this
.
formInline
.
status
,
}).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
tableData
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
}
else
{
this
.
$message
(
res
.
msg
);
}
})
},
handleCurrentChange
(
val
)
{
this
.
page
=
val
;
this
.
getData
();
},
created
()
{
handleSizeChange
(
val
)
{
this
.
limit
=
val
;
this
.
getData
();
},
computed
:
{},
methods
:
{
getData
()
{
this
.
$http
(
'post'
,
"/api/purchase/getDeliveryList"
,
{
page
:
this
.
page
,
limit
:
this
.
limit
,
stock_in_sn
:
this
.
formInline
.
stock_in_sn
,
brand_name
:
this
.
formInline
.
brand_name
,
goods_name
:
this
.
formInline
.
goods_name
,
status
:
this
.
formInline
.
status
,
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
},
submit
()
{
this
.
page
=
1
;
this
.
getData
();
},
resetForm
(
formName
)
{
this
.
$refs
[
formName
].
resetFields
();
},
//取消发货
cancelSend
()
{
if
(
this
.
multipleSelection
.
length
<=
0
)
{
this
.
$message
({
message
:
"请勾选数据进行操作"
,
type
:
'warning'
});
return
}
}).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
let
stock_in_ids
=
[];
stock_in_ids
=
this
.
multipleSelection
.
map
(
obj
=>
{
return
obj
.
stock_in_id
;
})
this
.
tableData
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
}
else
{
this
.
$message
(
res
.
msg
);
}
})
},
handleCurrentChange
(
val
)
{
this
.
page
=
val
;
this
.
getData
();
},
handleSizeChange
(
val
)
{
this
.
limit
=
val
;
this
.
getData
();
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
},
submit
()
{
this
.
page
=
1
;
this
.
getData
();
},
resetForm
(
formName
)
{
this
.
$refs
[
formName
].
resetFields
();
},
//取消发货
cancelSend
()
{
if
(
this
.
multipleSelection
.
length
==
0
)
{
this
.
$message
({
message
:
"请选择一条数据进行操作"
,
type
:
'warning'
});
return
}
if
(
this
.
multipleSelection
.
length
!=
1
)
{
let
source_arr
=
[];
let
status_arr
=
[];
source_arr
=
this
.
multipleSelection
.
map
(
obj
=>
{
return
obj
.
source
;
})
status_arr
=
this
.
multipleSelection
.
map
(
obj
=>
{
return
obj
.
status
;
})
let
source
=
source_arr
.
every
(
ele
=>
ele
===
2
)
if
(
source
)
{
let
status
=
status_arr
.
every
(
ele
=>
ele
===
2
)
if
(
status
)
{
this
.
$http
(
'POST'
,
"/api/purchase/cancelSupDelivery"
,
{
stock_in_ids
:
stock_in_ids
.
join
(
','
)}).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
this
.
$message
({
message
:
"操作成功"
,
type
:
'success'
,
duration
:
2000
,
onClose
()
{
this
.
getData
();
}
});
}
else
{
this
.
$message
({
message
:
'请选择作废待入库状态'
,
type
:
'error'
});
}
})
}
else
{
this
.
$message
({
message
:
"只能单条操作"
,
message
:
'请选择云芯系统的发货单'
,
type
:
'warning'
});
return
}
var
obj_
=
{
"supplier_id"
:
this
.
multipleSelection
[
0
].
supplier_id
,
//供应商id
"cancelStockInList"
:
[{
"stock_in_id"
:
this
.
multipleSelection
[
0
].
stock_in_id
,
//发货单id
"purchase_uid"
:
this
.
multipleSelection
[
0
].
purchase_uid
//采购员id
}]
}
this
.
$http
(
'post'
,
"/open/yunXin/cancelSupDelivery"
,
obj_
).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
this
.
$message
({
message
:
"操作成功"
,
type
:
'success'
});
this
.
getData
();
}
else
{
this
.
$message
({
message
:
res
.
msg
,
type
:
'error'
});
}
})
},
//型号
querySearchAsync
(
queryString
,
cb
)
{
this
.
$http
(
'get'
,
"/api/search/getspu"
,
{
spu_name
:
queryString
}).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
if
(
res
.
data
.
list
.
length
>
0
)
{
var
arrlist_
=
res
.
data
.
list
||
[];
var
arr_
=
[]
for
(
var
i
=
0
;
i
<
arrlist_
.
length
;
i
++
)
{
arr_
.
push
({
value
:
arrlist_
[
i
][
'spu_name'
]
})
}
cb
(
arr_
);
}
else
{
cb
([]);
}
else
{
this
.
$message
({
message
:
'请选择云芯系统的发货单'
,
type
:
'warning'
});
}
},
//型号
querySearchAsync
(
queryString
,
cb
)
{
this
.
$http
(
'get'
,
"/api/search/getspu"
,
{
spu_name
:
queryString
}).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
if
(
res
.
data
.
list
.
length
>
0
)
{
var
arrlist_
=
res
.
data
.
list
||
[];
var
arr_
=
[]
for
(
var
i
=
0
;
i
<
arrlist_
.
length
;
i
++
)
{
arr_
.
push
({
value
:
arrlist_
[
i
][
'spu_name'
]
})
}
cb
(
arr_
);
}
else
{
cb
([]);
}
})
},
//品牌
querySearchAsyncBrand
(
queryString
,
cb
)
{
this
.
$http
(
'get'
,
"/api/brand/get_stand_brand"
,
{
brand
:
queryString
}).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
if
(
res
.
data
.
list
.
length
>
0
)
{
var
arrlist_
=
res
.
data
.
list
||
[];
var
arr_
=
[]
for
(
var
i
=
0
;
i
<
arrlist_
.
length
;
i
++
)
{
arr_
.
push
({
value
:
arrlist_
[
i
]
})
}
cb
(
arr_
);
}
else
{
cb
([]);
}
})
},
//品牌
querySearchAsyncBrand
(
queryString
,
cb
)
{
this
.
$http
(
'get'
,
"/api/brand/get_stand_brand"
,
{
brand
:
queryString
}).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
if
(
res
.
data
.
list
.
length
>
0
)
{
var
arrlist_
=
res
.
data
.
list
||
[];
var
arr_
=
[]
for
(
var
i
=
0
;
i
<
arrlist_
.
length
;
i
++
)
{
arr_
.
push
({
value
:
arrlist_
[
i
]
})
}
cb
(
arr_
);
}
else
{
cb
([]);
}
}
)
}
,
}
}
)
},
components
:
{
Menu
}
};
},
components
:
{
Menu
}
};
</
script
>
<
style
scoped
>
@import
"../../assets/css/goods/goods.min.css"
;
@import
"../../assets/css/goods/goods.min.css"
;
</
style
>
\ No newline at end of file
src/views/OrderTrack/purAdd.vue
View file @
83dfe960
...
...
@@ -43,7 +43,7 @@
</div>
</el-form>
<div
class=
"data-box th-all"
>
<el-table
:data=
"purOrderDetail.purchase_item_list"
border
max-height=
"600"
:row-class-name=
"tableRowClassName"
@
selection-change=
"handleSelectionChange"
@
select=
"onRowClick
"
>
<el-table
:data=
"purOrderDetail.purchase_item_list"
border
max-height=
"600"
@
selection-change=
"handleSelectionChange
"
>
<el-table-column
fixed
type=
"selection"
width=
"37"
></el-table-column>
<el-table-column
prop=
"goods_name"
label=
"型号"
min-width=
"15%"
></el-table-column>
<el-table-column
prop=
"brand_name"
label=
"品牌"
min-width=
"15%"
></el-table-column>
...
...
@@ -78,7 +78,6 @@ export default {
purOrderDetail
:
{},
//基本信息,发货信息
purchase_uid
:
''
,
multipleSelection
:
[],
//选中的数据
currentRowIndex
:
[],
//选中数据的索引
rules
:
{
shipping_id
:
[{
required
:
true
,
...
...
@@ -141,15 +140,6 @@ export default {
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
},
tableRowClassName
({
row
,
rowIndex
})
{
row
.
row_index
=
rowIndex
},
onRowClick
(
row
)
{
this
.
currentRowIndex
=
[]
for
(
var
i
=
0
;
i
<
row
.
length
;
i
++
)
{
this
.
currentRowIndex
.
push
(
row
[
i
].
row_index
)
}
},
submit
(
formName
)
{
this
.
$refs
[
formName
].
validate
((
valid
)
=>
{
if
(
valid
)
{
...
...
@@ -161,10 +151,18 @@ export default {
return
false
;
}
this
.
formParam
.
itemlist
=
JSON
.
stringify
(
this
.
itemlist
);
let
filterArr
=
[];
for
(
let
i
=
0
;
i
<
this
.
multipleSelection
.
length
;
i
++
)
{
if
(
this
.
multipleSelection
[
i
].
purchase_item_id
==
this
.
itemlist
[
i
].
purchase_item_id
)
{
filterArr
.
push
(
this
.
itemlist
[
i
])
}
}
this
.
formParam
.
itemlist
=
filterArr
;
this
.
$http
(
'POST'
,
"/api/purchase/addSupDelivery"
,
this
.
formParam
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
$router
.
push
({
path
:
"/orderTrackGoods"
,
})
}
else
{
this
.
$message
({
message
:
res
.
msg
,
...
...
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