Browse Source

Merge branch 'dispatch' into ZL

ZL 1 week ago
parent
commit
bb87e8c086
3 changed files with 4 additions and 3 deletions
  1. 1 1
      pages.json
  2. 2 1
      pages/stock-dispatch/summary.vue
  3. 1 1
      pages/storage/search.vue

+ 1 - 1
pages.json

@@ -124,7 +124,7 @@
 		{
 			"path": "pages/storage/search",
 			"style": {
-				"navigationBarTitleText": "源单查询"
+				"navigationBarTitleText": "仓位查询"
 				// "navigationStyle": "custom"
 			}
 		},

+ 2 - 1
pages/stock-dispatch/summary.vue

@@ -161,7 +161,8 @@
 				try {
 					// await submitHelper.submit(FormId,FID, this.indexList);
 					const FormId = uni.getStorageSync('formId')
-					await submitHelper.submit(FormId, this.selectedItemId, this.indexList);
+					const fbillType = uni.getStorageSync('fbillType')
+					await submitHelper.submit(FormId, this.selectedItemId, this.indexList,fbillType);
 					this.indexList = this.indexList.filter(item => item.FID !== this.selectedItemId);
 					this.billSummary = this.billSummary.filter(item => item.FID !==
 						this.selectedItemId)

+ 1 - 1
pages/storage/search.vue

@@ -27,7 +27,7 @@
 						<checkbox :value="item.FStockLocNum" :checked="item.checked"
 							@tap="handleCheckboxClick(item.FStockLocNum)" />
 						<view style="display: flex; justify-content: center; align-items: center;">
-							{{ item.FStockLocNum}}
+							{{ item.FStockLocNum}}({{item.FQty}})
 						</view>
 					</view>