From dc6abab2f7645107410c9e2a63b5b4ee223be0c9 Mon Sep 17 00:00:00 2001 From: mengjiao <3338049200@qq,com> Date: Thu, 11 Jul 2024 13:56:05 +0800 Subject: [PATCH] =?UTF-8?q?wms=E5=8C=85=E6=9D=90=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2--=E5=8F=8D=E5=86=B2=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/outorderfc.js | 102 +++++ src/views/wms/outorderfc/index.vue | 704 +++++++++++++++++++++++++++++ 2 files changed, 806 insertions(+) create mode 100644 src/api/wms/outorderfc.js create mode 100644 src/views/wms/outorderfc/index.vue diff --git a/src/api/wms/outorderfc.js b/src/api/wms/outorderfc.js new file mode 100644 index 0000000..0c6fa13 --- /dev/null +++ b/src/api/wms/outorderfc.js @@ -0,0 +1,102 @@ +import request from '@/utils/request' + +// 查询包材出库单列表 +export function listOutorder(query) { + return request({ + url: '/wms/outorder/list', + method: 'get', + params: query + }); +} +// 查询包材出库单列表 +export function listOutorderZU(query) { + return request({ + url: '/wms/outorder/listZUFC', + method: 'post', + params: query + }); +} +// 查询包材出库单详细 +export function getOutorder(ID) { + return request({ + url: '/wms/outorder/' + ID, + method: 'get' + }); +} + +// 新增包材出库单 +export function addOutorder(data) { + return request({ + url: '/wms/outorder', + method: 'post', + data: data + }); +} +// 用于出库任务页面--查询 +export function getOutorderOUT(data) { + return request({ + url: '/wms/order/PurchaseOrderOutboundPdafc', + method: 'post', + data: data + }); +} + +// 修改包材出库单 +export function updateOutorder(data) { + return request({ + url: '/wms/outorder', + method: 'put', + data: data + }); +} + +// 删除包材出库单 +export function delOutorder(ID) { + return request({ + url: '/wms/outorder/' + ID, + method: 'delete' + }); +} +// 仓库列表 +export function getlistCK(data) { + return request({ + url: '/wms/order/listCK', + method: 'post', + data: data + }); +} +// 列表 +export function PurchaseOrderOutboundPda(data) { + return request({ + url: '/wms/order/PurchaseOrderOutboundPdafc', + method: 'post', + data: data + }); +} +// 新增 +export function addPurchaseOrderOutbound(data) { + return request({ + url: '/wms/order/addPurchaseOrderOutboundfc', + method: 'post', + data: data + }); +} +// 根据工厂获取产线 +export function getDictData(data) { + return request({ + url: '/mes/mesborad/getLineList', + method: 'get', + params: data + }); +} +// 新增 +export function OutboundPostingSAP(data) { + return request({ + url: '/wms/order/OutboundPostingSAPfc', + method: 'post', + data: data + }); + + + +} diff --git a/src/views/wms/outorderfc/index.vue b/src/views/wms/outorderfc/index.vue new file mode 100644 index 0000000..87a701d --- /dev/null +++ b/src/views/wms/outorderfc/index.vue @@ -0,0 +1,704 @@ + + +