<template>
	<view class="page-wraper">
		<view class="">
			<com-blank-view @goScan='getLocation' v-if="fromLocationCode==''"></com-blank-view>
		</view>
		<view class="page-wraper" v-if="fromLocationCode!=''">
			<view class="uni-flex uni-row u-col-center" style="width: 100%;" v-if="detailSource.length>0">
				<view class="" style=" text-align: center;font-size: 32rpx;font-weight: 700;margin-left: 20rpx;">
					报废原因 :
				</view>
				<uni-data-picker v-if="detailSource.length>0" style="padding: 20rpx; background-color:#fff;"
					class='uni-data-picker' placeholder="请选择原因" popup-title="选择报废原因" :localdata="reasonList"
					@change="reasonChange">
				</uni-data-picker>
			</view>
			<view class="page-main">
				<scroll-view scroll-y="true" class="page-main-scroll">
					<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id">
						<view class="">
							<record-com-detail-card :dataContent="item" :index="index" :settingParam="dataContent"
								:isShowLocation="true" @removeItem="removeItem(index,item)" @updateData="updateData"
								@removePack="removePack">
							</record-com-detail-card>
						</view>
						<u-line />
					</view>
				</scroll-view>
			</view>

			<view class="page-footer">
				<view class="uni-flex u-col-center space-between padding_10"
					style="background-color:ghostwhite; width: 100%; ">
					<view class="">
					</view>
					<view class=" uni-flex uni-row">
						<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button>
					</view>
				</view>
			</view>
			<win-scan-button @goScan='openScanPopup'></win-scan-button>
		</view>

		<win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult'></win-scan-pack-and-location>
		<comMessage ref="comMessage"></comMessage>
		<win-scan-location ref="scanLocationCode" title="来源库位" @getLocation='getLocation'
			:locationTypeList="fromlocationTypeList"></win-scan-location>
	</view>

</template>

<script>
	import {
		scrapRecordSubmit
	} from '@/api/request2.js';
	
	import {
		goHome,
		updateTitle,
	} from '@/common/basic.js';
	
	import {
		getInventoryStatusDesc,
		getDirectoryItemArray,
		getScarpReasonList
	} from '@/common/directory.js';
	
	import {
		getBusinessType,
		createItemInfo,
		createDetailInfo,
		calcHandleQty
	} from '@/common/record.js';

	import winScanButton from '@/mycomponents/scan/winScanButton.vue'
	import winScanPack from '@/mycomponents/scan/winScanPack.vue'
	import requiredLocation from '@/mycomponents/location/requiredLocation.vue'
	import comBlankView from '@/mycomponents/common/comBlankView.vue'
	import winScanLocation from "@/mycomponents/scan/winScanLocation.vue"
	import comMessage from '@/mycomponents/common/comMessage.vue'
	import winScanPackAndLocation from "@/mycomponents/scan/winScanPackAndLocation.vue"
	import recordComDetailCard from '@/mycomponents/record/recordComDetailCard.vue'
	
	export default {
		components: {
			winScanButton,
			winScanPack,
			requiredLocation,
			comBlankView,
			winScanLocation,
			comMessage,
			winScanPackAndLocation,
			recordComDetailCard
		},
		data() {
			return {
				id: '',
				dataContent: {}, //任务内容
				subList: [], //接口返回的任务subList
				detailSource: [], //绑定在页面上的数据源
				locationTypeList: [],
				fromLocationCode: "",
				fromlocationTypeList: [],
				tolocationTypeList: [],
				inInventoryStatus: "", //目标入库库存状态
				outInventoryStatus: "", //来源出库库存状态
				businessType: {},
				reasonList: [],
				reasonText: "",
				reasonCode:"",
			};
		},
		onLoad(option) {
			this.reasonList = getScarpReasonList();
			var typeCode = "Scrap"
			getBusinessType(typeCode, res => {
				if (res.success) {
					this.businessType = res.businessType;
					this.fromlocationTypeList = res.fromlocationTypeList;
					this.tolocationTypeList = res.tolocationTypeList;
					this.showFromLocationPopup();
				} else {
					this.$refs.comMessage.showBreakMessage(res.message );
				}
			});

		},
		//返回首页
		onNavigationBarButtonTap(e) {
			if (e.index === 0) {
				goHome();
			}
		},
		//拦截返回按钮事件
		onBackPress(e) {},

		onPullDownRefresh() {},

		mounted() {
			
		},
		methods: {
			getScanResult(result) {
				let balance = result.balance;
				let label = result.label;
				let pack = result.package;
				var item = this.detailSource.find(res => {
					if (res.itemCode == balance.itemCode) {
						return res
					}
				})
				if (item == undefined) {
					var itemp = createItemInfo(balance, pack);
					let newDetail = createDetailInfo(balance, pack); //
					itemp.subList.push(newDetail);
					this.detailSource.push(itemp)
				} else {
					var detail = item.subList.find(r => {
						if (r.packingNumber == balance.packingNumber &&
							r.batch == balance.batch &&
							r.locationCode == balance.locationCode &&
							r.inventoryStatus == balance.inventoryStatus) {
							return r;
						}
					})
					if (detail == undefined) {
						let newDetail = createDetailInfo(balance, pack);
						item.subList.push(newDetail);
					} else {
						if (detail.scaned == true) {
							this.showErrorMessage("箱码[" + balance.packingNumber + "批次[" + balance.batch + "]已经在列表中")
						}
					}
				}
				this.calcHandleQty();

			},

			createItemInfo(balance, pack) {
				let item = {
					itemCode: balance.itemCode,
					itemName: pack.itemName,
					stdPackQty: pack.stdPackQty,
					stdPackUnit: pack.stdPackUnit,
					qty: Number(balance.qty),
					handleQty: 0,
					uom: pack.uom,
					subList: []
				}
				return item;
			},

			showErrorMessage(message) {
				this.$refs.comMessage.showErrorMessage(message, res => {
					if (res) {

					}
				});
			},
			calcHandleQty() {
				calcHandleQty(this.detailSource)
				this.$forceUpdate();
			},

			updateData() {
				this.calcHandleQty();
			},
			removeItem(index, item) {
				this.detailSource.splice(index, 1)
			},
			removePack() {
				for (var i = 0; i < this.detailSource.length; i++) {
					var item = this.detailSource[i];
					if (item.subList.length == 0) {
						this.detailSource.splice(i, 1)
					}
				}
				this.updateData();
			},

			openScanPopup() {

				if (this.fromLocationCode == "") {
					this.showFromLocationPopup();
					return
				}
				this.$refs.scanPopup.openScanPopupForType(this.fromLocationCode, this.businessType);
			},
			showFromLocationPopup() {
				this.$nextTick(() => {
					this.$refs.scanLocationCode.openScanPopup();
				})
			},

			closeScanPopup() {
				this.$refs.scanPopup.closeScanPopup();
			},

			scanPopupGetFocus() {
				this.$refs.scanPopup.getfocus();
			},


			commit() {
				if(this.reasonText==""){
					this.showMessage("请先选择报废原因")
					return;
				}
				//允许部分提交
				uni.showLoading({
					title: "提交中....",
					mask: true
				});
				
				scrapRecordSubmit(params).then(res => {
					uni.hideLoading()
					if (res.data) {
						this.showCommitSuccessMessage("提交成功<br>生成报废出库记录" + res.data)
					} else {
						this.showErrorMessage("提交失败[" + res.msg + "]")
					}
				}).catch(error => {
					uni.hideLoading()
					this.showErrorMessage(error)
				})

			},

			setParams() {
				var subList = []
				this.detailSource.forEach(item => {
					item.subList.forEach(detail => {
						if (detail.scaned) {
							detail.itemCode = detail.itemCode;
							detail.itemName = detail.package.itemName;
							detail.itemDesc1 = detail.package.itemDesc1;
							detail.itemDesc2 = detail.package.itemDesc2;
							
							detail.inventoryStatus = detail.inventoryStatus;
							
							detail.fromPackingNumber = detail.packingNumber;
							detail.toPackingNumber = detail.packingNumber;
							
							detail.fromContainerNumber = detail.containerNumber;
							detail.toContainerNumber = detail.containerNumber
							
							detail.fromBatch = detail.batch;
							detail.toBatch = detail.batch;
							
							detail.fromLocationCode = detail.locationCode;
							detail.toLocationCode = "";
							
							detail.reason = this.reasonCode;
							subList.push(detail)
						}
					})
				})
				return subList;
			},
			
			
			

			showMessage(message) {
				this.$refs.comMessage.showMessage(message, res => {
					if (res) {}
				});
			},
			showErrorMessage(message) {
				this.$refs.comMessage.showErrorMessage(message, res => {
					if (res) {

					}
				});
			},

			showScanMessage(message) {
				this.$refs.comMessage.showScanMessage(message);
			},

			afterCloseMessage() {
				this.scanPopupGetFocus();
			},

			closeScanMessage() {
				this.scanPopupGetFocus();
			},
			getLocation(location, code) {
				this.getFromLocationCode(location, code)
			},
			getFromLocationCode(location, code) {
				this.fromLocationCode = code;
				this.openScanPopup();
			},

			showCommitSuccessMessage(hint) {
				this.$refs.comMessage.showSuccessMessage(hint, res => {
					this.reasonCode = ""
					this.reasonText = "";
					this.detailSource = [];
					this.subList =[];
					this.managementList =[];
					this.dataContent ={}

				})
			},

			updateData() {
				this.calcHandleQty();
				for (var i = 0; i < this.detailSource.length; i++) {
					let item = this.detailSource[i];
					if (item.qty == 0) {
						this.detailSource.splice(i, 1)
					}
				}
			},
			reasonChange(e) {
				if (e.detail.value.length == 0) {
					this.reasonCode = ""
					this.reasonText = ""
				} else {
					this.reasonCode = e.detail.value[0].value
					this.reasonText = e.detail.value[0].text
				}
			}
		}
	}
</script>

<style scoped lang="scss">
	page {
		width: 100%;
		height: 100%;
		background-color: #fff;
	}

	.page-wraper {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100%;
	}


	.page-main {
		flex: 1;
		position: relative;
	}

	.page-main-scroll {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.page-main-list {
		/*  height: 80rpx;
	    line-height: 80rpx; */
		text-align: center;
		background: #e0e0e0;

	}
</style>