import request from '@/utils/request'
|
|
// 大岛车间综合看板,获取生产车间
|
export function ShopSearch() {
|
return request({
|
url: 'KanBanManagerent/ShopSearch',
|
method: 'get'
|
})
|
}
|
|
// 大岛车间综合看板,左上产线加工任务接口
|
export function LineSearchTopLeftData(data) {
|
return request({
|
url: 'KanBanManagerent/LineSearchTopLeftData',
|
method: 'post',
|
params: data
|
})
|
}
|
|
// 大岛车间综合看板,生产车间查找产线接口
|
export function ShopSearchLine(data) {
|
return request({
|
url: 'KanBanManagerent/ShopSearchLine',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// // 大岛车间综合看板,左上产线加工任务接口
|
// export function LineSearchTopLeftData(data) {
|
// return request({
|
// url: 'KanBanManagerent/LineSearchTopLeftData',
|
// method: 'post',
|
// data
|
// })
|
// }
|
|
// 大岛车间综合看板,左下列表接口
|
export function LineSearchBottomLeftData(data) {
|
return request({
|
url: 'KanBanManagerent/LineSearchBottomLeftData',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 大岛车间综合看板,右上top排行接口
|
export function LineSearchTopRightData(data) {
|
return request({
|
url: 'KanBanManagerent/LineSearchTopRightData',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 大岛车间综合看板,右下top排行接口
|
export function LineSearchBottomRightData(data) {
|
return request({
|
url: 'KanBanManagerent/LineSearchBottomRightData',
|
method: 'get',
|
params: data
|
})
|
}
|
|
// 采购订单跟踪管理看板,左上本月采购订单数、本月采购进货单数、本月采购入库单数
|
export function PurchaseLeftTop() {
|
return request({
|
url: 'KanBanManagerent/PurchaseLeftTop',
|
method: 'get'
|
})
|
}
|
|
// 采购订单跟踪管理看板,左下采购订单跟踪列表
|
export function PurchaseLeftBottom() {
|
return request({
|
url: 'KanBanManagerent/PurchaseLeftBottom',
|
method: 'get'
|
})
|
}
|
|
// 采购订单跟踪管理看板,右侧Top
|
export function PurchaseRight() {
|
return request({
|
url: 'KanBanManagerent/PurchaseRight',
|
method: 'get'
|
})
|
}
|
|
// 大岛仓库看板,左上产品待入库列表
|
export function WareHouseTopLeftData() {
|
return request({
|
url: 'KanBanManagerent/WareHouseTopLeftData',
|
method: 'get'
|
})
|
}
|
|
// 大岛仓库看板,左下产品待入库列表
|
export function WareHouseTopBottomData() {
|
return request({
|
url: 'KanBanManagerent/WareHouseTopBottomData',
|
method: 'get'
|
})
|
}
|
|
// 大岛仓库看板,右上成品库、半成品库top5库存排行
|
export function WareHouseRightTopData() {
|
return request({
|
url: 'KanBanManagerent/WareHouseRightTopData',
|
method: 'get'
|
})
|
}
|
|
// 大岛仓库看板,右下原料库库top5库存排行
|
export function WareHouseRightBottomData() {
|
return request({
|
url: 'KanBanManagerent/WareHouseRightBottomData',
|
method: 'get'
|
})
|
}
|
|
// 车间看板公告
|
export function WkspReportNotice(data) {
|
return request({
|
url: 'KanBanManagerent/WkspReportNotice',
|
method: 'post',
|
params: data
|
})
|
}
|
|
export function QCBadTop(data) {
|
return request({
|
url: 'KanBanManagerent/QCBadTop',
|
method: 'get',
|
params: data
|
})
|
}
|
|
export function QCBadCenterLeftWeek(data) {
|
return request({
|
url: 'KanBanManagerent/QCBadCenterLeftWeek',
|
method: 'get',
|
params: data
|
})
|
}
|
|
export function QCBadCenterRightWeek(data) {
|
return request({
|
url: 'KanBanManagerent/QCBadCenterRightWeek',
|
method: 'get',
|
params: data
|
})
|
}
|
|
export function QCBadBottomWeek(data) {
|
return request({
|
url: 'KanBanManagerent/QCBadBottomWeek',
|
method: 'get',
|
params: data
|
})
|
}
|
|
export function WorkShopCompreLeftTop(data) {
|
return request({
|
url: 'KanBanManagerent/WorkShopCompreLeftTop',
|
method: 'get',
|
params: data
|
})
|
}
|
|
export function WorkShopCompreRightTop(data) {
|
return request({
|
url: 'KanBanManagerent/WorkShopCompreRightTop',
|
method: 'get',
|
params: data
|
})
|
}
|
|
export function WorkShopCompreRightBottom(data) {
|
return request({
|
url: 'KanBanManagerent/WorkShopCompreRightBottom',
|
method: 'get',
|
params: data
|
})
|
}
|