From 927ce822017ff8459be84b742d519970ca614096 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期五, 24 十月 2025 17:18:56 +0800
Subject: [PATCH] 1

---
 项目代码/PDA/pages/Inventory/InventoryOutboundOrder.vue |   24 ++++++++----------------
 1 files changed, 8 insertions(+), 16 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Order/OutboundOrder.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Inventory/InventoryOutboundOrder.vue"
similarity index 84%
copy from "\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Order/OutboundOrder.vue"
copy to "\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Inventory/InventoryOutboundOrder.vue"
index ef5e6b9..dc3acf6 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Order/OutboundOrder.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Inventory/InventoryOutboundOrder.vue"
@@ -6,7 +6,7 @@
 			</view>
 		</u-sticky>
 		<uni-list :border="true">
-			<uni-list-item direction="column" clickable @click="groupClick(item.id)" link :to="page+item.orderNo"
+			<uni-list-item direction="column" clickable @click="groupClick(item.id,item.upperOrderNo)" link :to="page+item.orderNo"
 				v-for="item in allReceivingOrders" :key="item.orderNo">
 				<template v-slot:body>
 					<!-- <uni-group margin-top="20">
@@ -26,16 +26,8 @@
 							<view class="value">{{item.upperOrderNo}}</view>
 						</view>
 						<view class="flex-row">
-							<view class="label">鐗╂枡缂栫爜:</view>
-							<view class="value">{{item.materielCode}}</view>
-						</view>
-						<view class="flex-row">
-							<view class="label">鍗曟嵁鏁伴噺:</view>
-							<view class="value">{{item.orderQuantity}}</view>
-						</view>
-						<view class="flex-row">
-							<view class="label">宸插嚭搴撴暟閲�:</view>
-							<view class="value">{{item.overOutQuantity}}</view>
+							<view class="label">鍒涘缓鏃堕棿:</view>
+							<view class="value">{{item.createDate}}</view>
 						</view>
 					</uni-group>
 				</template>
@@ -52,8 +44,9 @@
 	export default {
 		data() {
 			return {
-				page: "/pages/Order/Outorderboxing?orderNo=",
+				page: "/pages/Inventory/InventoryOutorderboxing?orderNo=",
 				loadVisible: false,
+				istrue:false,
 				searchValue: "",
 				status: "more",
 				allReceivingOrders: [],
@@ -75,16 +68,15 @@
 			search(res) {
 				this.getData();
 			},
-			groupClick(Id) {
-				window.location="/pages/Order/Outorderboxing?Id="+Id;
-				// console.log(Id);
+			groupClick(Id,orderNo) {
+				window.location="/pages/Inventory/InventoryOutorderboxing?Id="+Id+"&orderNo="+orderNo;
 			},
 			getData() {
 				var postData = {
 					orderNo: this.searchValue,
 					pageNo: this.pageNo
 				}
-				this.$u.post('/api/OutboundOrder/GetOutboundOrder', postData).then((res) => {
+				this.$u.post('/api/InventoryOutboundOrder/GetInventoryOutboundOrder', postData).then((res) => {
 					if (res.status) {
 						if (this.searchValue == '') {
 							this.allReceivingOrders = this.allReceivingOrders.concat(res.data);

--
Gitblit v1.9.3