Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
63b7899c
Commit
63b7899c
authored
Nov 17, 2025
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 备货计划页面1000860
parent
681244f3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
7 deletions
+39
-7
public/files/stockingPlan.xlsx
+0
-0
public/files/warehousingEntry.xlsx
+0
-0
src/api/warehouse.ts
+33
-6
src/types/api/warehouse.ts
+6
-1
src/views/warehouse/stockingPlan.vue
+0
-0
No files found.
public/files/stockingPlan.xlsx
0 → 100644
View file @
63b7899c
File added
public/files/warehousingEntry.xlsx
View file @
63b7899c
No preview for this file type
src/api/warehouse.ts
View file @
63b7899c
...
...
@@ -11,7 +11,8 @@ import {
InterProductList
,
ExportInWarehouseInfo
,
stockingPlanSearchForm
,
InterStackingPlanDetail
InterStackingPlanDetail
,
InterWarehouseBase
}
from
'@/types/api/warehouse'
export
interface
LogListData
{
createTime
:
string
...
...
@@ -683,11 +684,36 @@ export function deleteStackingPlanApi(ids: string) {
},
)
}
// 备货计划 审核
export
function
auditStackingPlanApi
(
data
:
WarehouseParams
)
{
// 备货计划 更新物流单号
export
function
updateShipmentNumberApi
(
data
:
InterWarehouseBase
[])
{
return
axios
.
post
<
never
,
BaseRespData
<
never
>>
(
'factoryStockingPlanRecord/audit'
,
{
data
},
'factoryStockingPlanRecord/update_shipmentNumber'
,
{
stockingPlanRecordParamList
:
data
},
)
}
// 备货计划 导出
export
function
stackingPlanRecordExport
(
data
:
ExportInWarehouseInfo
)
{
return
axios
.
post
<
never
,
BasePaginationData
<
never
>>
(
'factoryStockingPlanRecord/export'
,
data
,
{
responseType
:
'blob'
,
},
)
}
// 备货计划 盘点
export
function
scanBoxCodeApi
(
boxCode
:
string
)
{
return
axios
.
get
<
never
,
BaseRespData
<
never
>>
(
'factoryStockingPlanRecord/scan_box_code'
,
{
params
:
{
boxCode
},
},
)
}
// 备货计划 打印箱贴
export
function
printBarcodeApi
(
data
:
{
id
:
number
,
dataVersion
:
number
}[])
{
return
axios
.
post
<
never
,
BaseRespData
<
never
[]
>>
(
'factoryStockingPlanRecord/print_barcode'
,
data
,
)
}
\ No newline at end of file
src/types/api/warehouse.ts
View file @
63b7899c
...
...
@@ -21,6 +21,7 @@ export interface InterProductList {
productNo
?:
string
|
null
//custom的货号
buyStored
?:
number
|
null
//入库数量
outCount
?:
number
|
null
//出库数量
stockUpStored
?:
number
|
null
//备货数量
remark
?:
string
|
null
skuImage
?:
string
skuName
?:
string
...
...
@@ -80,6 +81,7 @@ export interface InterProductList {
productNo
?:
string
|
null
//货号
buyStored
?:
number
|
null
//入库数量
outCount
?:
number
|
null
//出库数量
stockUpStored
?:
number
|
null
//备货数量
usableInventory
?:
number
|
null
//可用库存数量
remark
?:
string
|
null
skuImage
?:
string
...
...
@@ -127,8 +129,11 @@ export interface stockingPlanSearchForm extends InterWarehouseBase {
warehouseSku
?:
string
}
// 备货计划
新增编辑
// 备货计划
export
interface
InterStackingPlanDetail
extends
InterWarehouseDetail
{
boxSum
?:
number
checkBoxSum
?:
number
box
?:
number
|
string
}
src/views/warehouse/stockingPlan.vue
View file @
63b7899c
This diff is collapsed.
Click to expand it.
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