<template>
|
<view>
|
<view class="form">
|
<view class="form-item">
|
<view class="title">条码:</view>
|
<view class="right" style="width: 380rpx;">
|
<input :focus="barCodeFocus" v-model="hform.HBarCode" placeholder="请扫描(或输入)条码"
|
@confirm="getCode(hform.HBarCode)" />
|
</view>
|
<view class="icon-wrapper">
|
<uni-icons type="scan" size="20" @click="toScanCode"></uni-icons>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">数量:</view>
|
<view class="right">
|
<input v-model="hform.HQty" placeholder="请输入数量" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调出仓库:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHWHName" placeholder="请输入(或扫描)仓库" v-model="hform.HSCWHName"
|
@input="HSCWHNameChange" @confirm="HWHNameOutScan"></uni-combox>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调出仓位:</view>
|
<view class="right" v-show="HSCIsStockMgr">
|
<uni-combox :candidates="arrayHStockPlaceNameComputed" placeholder="请输入(或扫描)仓位"
|
v-model="hform.HOutStockPlaceName" @input="HOutStockPlaceNameChange"
|
@confirm="HStockPlaceOutNameScan"></uni-combox>
|
</view>
|
<view class="righton" v-show="!HSCIsStockMgr">
|
<input v-model="hform.HOutStockPlaceName" :disabled="!HIsStockMgr" placeholder="不可操作" />
|
</view>
|
</view>
|
|
<view class="tabs">
|
<view :class="tabs == 0 ? 'on':''" @tap="tabs = 0">选择源单</view>
|
<view :class="tabs == 1 ? 'on':''" @tap="tabs = 1">表头信息</view>
|
<view :class="tabs == 2 ? 'on':''" @tap="tabs = 2">物料信息</view>
|
<view :class="tabs == 3 ? 'on':''" @tap="tabs = 3">条码信息</view>
|
<view :class="tabs == 4 ? 'on':''" @tap="tabs = 4">下架信息</view>
|
</view>
|
|
<view v-if="tabs == 0">
|
<view class="form-item">
|
<view class="title">源单类型:</view>
|
<view class="right" v-show="showHMainSourceBillType">
|
<picker :range="arrayHMainSourceBillType" v-model="HMainSourceBillType"
|
@change="HMainSourceBillTypeChange">
|
<input name="HMainSourceBillType" disabled v-model="HMainSourceBillType"
|
placeholder="请选择源单类型" />
|
<view class="picker-overlay"></view>
|
</picker>
|
</view>
|
<view class="righton" v-show="!showHMainSourceBillType">
|
<input name="HMainSourceBillType" disabled v-model="HMainSourceBillType"
|
placeholder="请选择源单类型" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">源单单号:</view>
|
<view class="right" v-show="showHSourceBillNo">
|
<!-- <uni-combox v-if="reHSourceBillNo" :candidates="arrayHSourceBillNo" placeholder="请输入源单单号"
|
v-model="hform.HSourceBillNo" @input="HSourceBillNoChange"></uni-combox> -->
|
<input :focus="HSourcebillNoFocus" type="text" @confirm="onHSourceBillNoConfirmHandler"
|
name="HSourceBillNo" v-model="hform.HSourceBillNo" placeholder="请输入源单单号" />
|
|
</view>
|
<view class="icon-wrapper" v-show="showHSourceBillNo" :disabled="hform.HMainSourceBillType === -1">
|
<uni-icons type="search" size="20" @click="showBillList"></uni-icons>
|
</view>
|
|
<view class="righton" v-show="!showHSourceBillNo">
|
<input name="HSourceBillNo" disabled v-model="hform.HSourceBillNo" placeholder="请输入源单单号" />
|
</view>
|
</view>
|
|
<view class="form-item">
|
<view class="title">单据子类型:</view>
|
<view class="right">
|
<picker :range="arrayHBillSubType" v-model="hform.HBillSubType" @change="HBillSubTypeChange">
|
<input disabled name="HMainSourceBillType" v-model="HBillSubType" placeholder="请选择单据子类型" />
|
<view class="picker-overlay"></view>
|
</picker>
|
</view>
|
</view>
|
|
<view class="form-item">
|
<view class="title">先进先出仓:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHWHName" placeholder="请选择" v-model="hform.HFIFOWHName"
|
@input="HFIFOWHNameChange"></uni-combox>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调拨类型:</view>
|
<!-- <view class="right" v-show="showHMainSourceBillType">
|
<uni-combox :candidates="HStockStyleArray" placeholder="请选择" v-model="hform.HStockStyle"
|
@input="HStockStyleChange"></uni-combox>
|
</view> -->
|
<view class="righton">
|
<input name="HStockStyle" disabled v-model="hform.HStockStyle" placeholder="请选择调拨类型" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调拨方向:</view>
|
<!-- <view class="right" v-show="showHMainSourceBillType">
|
<uni-combox :candidates="arrayHTransferDirect" placeholder="请选择" v-model="hform.HTransferDirect"
|
@input="HTransferDirectChange"></uni-combox>
|
</view> -->
|
<view class="righton">
|
<input name="HTransferDirect" disabled v-model="hform.HTransferDirect" placeholder="请选择调拨方向" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">出货类型:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHShipType" placeholder="请选择" v-model="hform.HShipType"
|
@input="HShipTypeChange"></uni-combox>
|
</view>
|
</view>
|
|
<view class="form-item">
|
<view class="title">日期:</view>
|
<view class="right">
|
<picker mode="date" v-model="hform.HDate" @change="HDateChange">
|
<input disabled v-model="hform.HDate" placeholder="请选择日期" />
|
<view class="picker-overlay"></view>
|
</picker>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">制单人:</view>
|
<view class="righton">
|
<input name="HMaker" disabled v-model="hform.HMaker" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">单据号:</view>
|
<view class="righton">
|
<input name="HBillNo" disabled v-model="hform.HBillNo" />
|
</view>
|
<view class="icon-wrapper">
|
<uni-icons type="scan" size="20" @click="qrCodeDisplay"></uni-icons>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">单据ID:</view>
|
<view class="righton">
|
<input name="HInterID" disabled v-model="hform.HInterID" />
|
</view>
|
</view>
|
</view>
|
|
<view v-if="tabs == 1">
|
<view class="form-item">
|
<view class="title">调入仓库:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHWHInName" placeholder="请输入(或扫描)仓库" v-model="hform.HWHName"
|
@input="HWHInNameChange" @confirm="HWHNameInScan"></uni-combox>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调入仓位:</view>
|
<view class="right" v-show="HIsStockMgr">
|
<uni-combox :candidates="arrayHStockPlaceInNameComputed" placeholder="请输入(或扫描)仓位"
|
v-model="hform.HStockPlaceName" @input="HStockPlaceInNameChange"
|
@confirm="HStockPlaceNameInScan"></uni-combox>
|
</view>
|
<view class="righton" v-show="!HIsStockMgr">
|
<input v-model="hform.HStockPlaceName" :disabled="!HIsStockMgr" placeholder="不可操作" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">保管:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHEmpName" placeholder="请选择保管员" v-model="hform.HKeeperName"
|
@input="HKeeperNameChange"></uni-combox>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">验收:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHEmpName" placeholder="请选择验收员" v-model="hform.HSecManagerName"
|
@input="HSecManagerNameChange"></uni-combox>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">部门:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHDeptName" placeholder="请选择部门" v-model="hform.HDeptName"
|
@input="HDeptNameChange"></uni-combox>
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">客户:</view>
|
<!-- <view class="right" v-show="showHSupName">
|
<uni-combox :candidates="arrayHSupName" placeholder="请选择客户" v-model="hform.HSupName"
|
@input="HSupNameChange"></uni-combox>
|
</view> -->
|
<view class="righton">
|
<input name="HSupName" disabled v-model="hform.HSupName" placeholder="请选择客户" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">供应商:</view>
|
<view class="right">
|
<uni-combox :candidates="arrayHCusName" placeholder="请选择供应商" v-model="hform.HCusName"
|
@input="HCusNameChange"></uni-combox>
|
</view>
|
<!-- <view class="righton" v-show="!showHSupName">
|
<input name="HSupName" disabled v-model="hform.HSupName" placeholder="" />
|
</view> -->
|
</view>
|
<!-- TODO: 跨组织调用可修改 选中组织后,仓库仓位也要发生变化 -->
|
<view class="form-item">
|
<view class="title">调出组织:</view>
|
<view class="righton">
|
<input name="HStockOutOrgName" disabled v-model="hform.HStockOutOrgName" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调入组织:</view>
|
<view class="right" v-show="!HIsStockInner">
|
<uni-combox :candidates="arrayHOrgName" placeholder="请选择调入组织" v-model="hform.HStockInOrgName"
|
@input="HStockInOrgNameChange"></uni-combox>
|
</view>
|
<view class="righton" v-show="HIsStockInner">
|
<input name="HStockInOrgName" disabled v-model="hform.HStockInOrgName" />
|
</view>
|
</view>
|
</view>
|
|
<view v-if="tabs == 2">
|
<view class="list" v-for="(item,index) in Materlist" :key="index">
|
<uni-card :title="item.物料名称" :extra="item.物料代码" style="margin: 10px;" @tap="delMater(item)">
|
<view class="card-detail">
|
<view class="detail">
|
<text>源单单号:</text>{{item.源单单号}}
|
</view>
|
<view class="detail">
|
<text>源单数量:</text>{{item.源单数量}}
|
</view>
|
<view class="detail">
|
<text>数量:</text>{{item.数量}}
|
</view>
|
<view class="detail">
|
<text>条码个数:</text>{{item.条码个数}}
|
</view>
|
<view class="detail" v-if="item.规格型号">
|
<text>规格型号:</text>{{item.规格型号}}
|
</view>
|
<view class="detail" v-if="item.辅助属性">
|
<text>辅助属性:</text>{{item.辅助属性}}
|
</view>
|
</view>
|
</uni-card>
|
</view>
|
<view class="over" v-if="Materlist.length == 0">暂无数据</view>
|
</view>
|
|
<view v-if="tabs == 4">
|
<view class="list" v-for="(item,index) in FIFOlist" :key="index">
|
<uni-card :title="item.HMaterName" :extra="item.HMaterNumber" style="margin: 10px;"
|
@tap="delMater(item)">
|
<view class="card-detail">
|
<view class="detail">
|
<text>数量:</text>{{item.HQty}}
|
</view>
|
<view class="detail">
|
<text>下架数量:</text>{{item.HQtyMust}}
|
</view>
|
<view class="detail">
|
<text>仓库:</text>{{item.HWhName}}
|
</view>
|
<view class="detail">
|
<text>仓位:</text>{{item.HSPName}}
|
</view>
|
<view class="detail">
|
<text>规格型号:</text>{{item.HMaterModel}}
|
</view>
|
<view class="detail" v-if="item.HBatchNo">
|
<text>批号:</text>{{item.HBatchNo}}
|
</view>
|
<view class="detail" v-if="item.HAuxPropName">
|
<text>辅助属性:</text>{{item.HAuxPropName}}
|
</view>
|
</view>
|
</uni-card>
|
</view>
|
<view class="over" v-if="FIFOlist.length == 0">暂无数据</view>
|
</view>
|
|
<view v-if="tabs == 3">
|
<view class="form-item">
|
<view class="title">条码:</view>
|
<view class="righton">
|
<input name="HBarCode_B" disabled v-model="hform.HBarCode_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">物料:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HMaterName_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">规格:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HMaterModel_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">批次:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HBatchNo_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">单位:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HUnitName_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">数量:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HQty_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">容量:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HTMQty_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调入仓库:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HWHName_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调入仓位:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HSPName_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调出仓库:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HSCWHName_B" />
|
</view>
|
</view>
|
<view class="form-item">
|
<view class="title">调出仓位:</view>
|
<view class="righton">
|
<input disabled v-model="hform.HSCSPName_B" />
|
</view>
|
</view>
|
</view>
|
|
<view class="bottom-btn">
|
<button class="btn-a" size="mini" @tap="submit">提交</button>
|
<view style="flex: 1;"></view>
|
<button class="btn-a" size="mini" @tap="addNew">新增</button>
|
<button class="btn-c" size="mini" @tap="goBack">退出</button>
|
</view>
|
</view>
|
<BillListPopupVue ref="billList" :HBillType="hform.HBillType" :HSourceBillType="hform.HMainSourceBillType"
|
:HStockOrgID="hform.HStockOrgID"></BillListPopupVue>
|
<BarCodePopupVue ref="barcodePopup"></BarCodePopupVue>
|
</view>
|
</template>
|
<script>
|
import {
|
CommonUtils
|
} from '../../utils/common';
|
import getDateTime from '@/utils/getdateTime.js';
|
import {
|
getUserInfo
|
} from "@/utils/auth.js";
|
import elemIterator from '../../utils/elemIterator';
|
import BillListPopupVue from '../../components/BillListPopup/BillListPopup.vue';
|
import {
|
getUserStockRelation
|
} from '../../utils/userRelationManager';
|
import BarCodePopupVue from "../../components/BarCodePopup/BarCodePopup.vue";
|
export default {
|
data() {
|
return {
|
pageTitleName: '直接调拨单',
|
userInfo: getUserInfo(),
|
serverUrl: uni.getStorageSync('serverUrl') || 'http://47.96.97.237/API',
|
HModName: 'Kf_MoveStockBill_PDA',
|
ModRightName: 'CE_MoveStock',
|
OperationType: 1,
|
HInterID_Temp: '',
|
|
HSCIsStockMgr: false,
|
HIsStockMgr: false,
|
showHStockPlaceName: true,
|
showHMainSourceBillType: true,
|
showHSourceBillNo: true,
|
reHSourceBillNo: true,
|
showHSupName: true,
|
barCodeFocus: false,
|
HSourcebillNoFocus: false,
|
HSupName: '',
|
|
HStockStyleArray: ["组织内调拨", "跨组织调拨"],
|
|
tabs: 0,
|
HMainSourceBillType: '发货通知单',
|
arrayHMainSourceBillType: ['发货通知单', '调拨申请单',
|
'生产用料清单', '委外用料清单', '生产发货通知单',
|
'生产备料单', '出库申请单', '手工录入'
|
],
|
arrayHMainSourceBillValue: [1402, 1243, 3720, 1604,
|
1214, 3721, 1242, -1
|
],
|
|
linterid: '',
|
HBillNo: '',
|
btnType: 0, //0新增,1修改,2审核,3反审核
|
showmore: false,
|
|
arrayHWHName: [], //仓库
|
HWHNameList: [],
|
arrayHStockPlaceName: [], //仓位
|
HStockPlaceNameList: [],
|
arrayHSourceBillNo: [], //源单单号
|
HSourceBillNoList: [],
|
arrayHTransferDirect: [], // 调拨方向
|
arrayHShipType: [], // 出货类型
|
arrayHOrgName: [], // 组织
|
arrayHOrgValue: [], // 组织对应ID
|
arrayHWHInName: [], // 调入仓库
|
HWHInNameList: [],
|
arrayHStockPlaceInName: [], //调入仓位
|
HStockPlaceInNameList: [],
|
|
arrayHBillSubType: [],
|
arrayHBillSubTypeValue: [],
|
HBillSubType: '',
|
|
arrayHEmpName: [], //操作员
|
HEmpNameList: [],
|
arrayHDeptName: [], //部门
|
HDeptNameList: [],
|
arrayHSupName: [], //客户
|
HSupNameList: [],
|
arrayHSupName: [], //客户
|
HSupNameList: [],
|
arrayHCusName: [], //供应商
|
HCusNameList: [],
|
|
Materlist: [],
|
FIFOlist: [],
|
hform: {
|
HBillType: 1207,
|
HBillSubType: "",
|
HBillerID: uni.getStorageSync('HBillerID'),
|
HRedBlueFlag: false,
|
|
HStockOutOrgName: uni.getStorageSync('Organization'),
|
HStockInOrgName: uni.getStorageSync('Organization'),
|
HStockInOrgID: uni.getStorageSync('OrganizationID'),
|
HStockOutOrgID: uni.getStorageSync('OrganizationID'),
|
|
HBarCode: '',
|
HQty: '',
|
HSCWHName: getUserInfo().HWHName,
|
HSCWHID: getUserInfo().HWhID,
|
HWHName: getUserInfo().HWHName,
|
HWHID: getUserInfo().HWhID,
|
|
HStockStyle: '',
|
HOutStockPlaceName: getUserInfo().HSPName,
|
HOutStockPlaceID: getUserInfo().HSPID,
|
HStockPlaceName: getUserInfo().HSPName,
|
HStockPlaceID: getUserInfo().HSPID,
|
HTransferDirect: '', //调拨方向
|
HShipType: '', // 出库类型
|
|
HMainSourceBillType: 1402,
|
HSourceBillNo: '', //CGDD000200
|
HFIFOWHName: '',
|
HFIFOWHID: '',
|
HDate: getDateTime.dateTimeStr('y-m-d'),
|
HMaker: uni.getStorageSync('HUserName'),
|
HBillNo: '',
|
HInterID: '',
|
|
HKeeperName: getUserInfo().HKeeper,
|
HKeeperID: getUserInfo().HKeeperID,
|
HSecManagerName: getUserInfo().HSecManager,
|
HSecManagerID: getUserInfo().HSecManagerID,
|
HDeptName: getUserInfo().HDept,
|
HDeptID: getUserInfo().HDeptID,
|
// 客户
|
HSupName: '',
|
HSupID: '',
|
// 供应商
|
HCusID: '',
|
HCusName: '',
|
HStockOrgName: uni.getStorageSync('Organization'),
|
HStockOrgID: uni.getStorageSync('OrganizationID'),
|
|
HBarCode_B: '',
|
HMaterName_B: '',
|
HMaterModel_B: '',
|
HBatchNo_B: '',
|
HUnitName_B: '',
|
HQty_B: '',
|
HTMQty_B: '',
|
HWHName_B: '',
|
HSPName_B: '',
|
}
|
}
|
},
|
components: {
|
BillListPopupVue,
|
BarCodePopupVue
|
},
|
|
async onLoad(e) {
|
await this.getOrganization()
|
console.log(e, this.userInfo)
|
this.OperationType = e.OperationType
|
if (e.HInterID) {
|
this.HInterID_Temp = e.HInterID
|
// this.btnType = 1
|
this.barCodeFocus = true
|
this.RoadBillMain(e.HInterID)
|
} else {
|
this.HSourcebillNoFocus = true
|
this.getNewData()
|
}
|
|
this.getHWarehouseInList()
|
// this.getHBaseList()
|
this.getHSupList()
|
this.getHEmpList()
|
this.getHDeptList()
|
this.set_InitBillSubType()
|
this.InitTransferDirect()
|
this.InitShipType()
|
|
// this.getHSupList() // 初始化 客户
|
this.getHCusList() // 初始化 供应商
|
|
this.getRelationStore()
|
this.GetSourceBillType()
|
|
uni.$on('BillSelectComplete', (e) => {
|
console.log("接收到的消息: ", e.HBillNo)
|
this.getHBarCodeData(e.HBillNo)
|
this.$refs.billList.exit()
|
})
|
},
|
onUnload() {
|
uni.$off('BillSelectComplete')
|
},
|
computed: {
|
HIsStockInner: {
|
get: function() {
|
if (this.hform.HStockStyle == '组织内调拨') {
|
return true
|
}
|
return false
|
}
|
},
|
arrayHStockPlaceNameComputed: {
|
get() {
|
// 动态计算对应调出仓库的仓位
|
return this.HStockPlaceNameList
|
.filter(e => e['所属仓库'] == this.hform.HSCWHName)
|
.map(e => e['仓位名称'])
|
}
|
},
|
arrayHStockPlaceInNameComputed: {
|
get() {
|
// 动态计算对应调入仓库的仓位
|
return this.HStockPlaceInNameList
|
.filter(e => e['所属仓库'] == this.hform.HWHName)
|
.map(e => e['仓位名称'])
|
}
|
}
|
},
|
methods: {
|
//获取供应商数据
|
getHCusList() {
|
if (!this.hform.HStockOrgID) {
|
var HOtherOrgID = 0;
|
} else {
|
var HOtherOrgID = this.hform.HStockOrgID
|
}
|
uni.request({
|
url: this.serverUrl + '/Web/GetSupplierList_Json',
|
data: {
|
Supplier: '',
|
HOrgID: HOtherOrgID
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
console.log('Supplier: ',res.data);
|
this.HCusNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHCusName[i] = res.data.data[i].HName
|
}
|
this.$forceUpdate();
|
} else {
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '供应商数据请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
//选择供应商
|
HCusNameChange(e) {
|
console.log('e: ',e);
|
for (var i = 0; i < this.HCusNameList.length; i++) {
|
if (this.HCusNameList[i].HName == e) {
|
this.hform.HCusID = this.HCusNameList[i].HItemID
|
this.hform.HCusName = this.HCusNameList[i].HName
|
}
|
}
|
},
|
async refreshHSourceBillState() {
|
this.HSourceBillNoFocus = false
|
await this.$nextTick(() => {
|
this.hform.HSourceBillNo = ""
|
this.HSourceBillNoFocus = true
|
|
})
|
},
|
async refreshBarCodeState() {
|
this.barCodeFocus = false
|
await this.$nextTick(() => {
|
this.hform.HBarCode = ""
|
this.barCodeFocus = true
|
})
|
},
|
async HWHNameOutScan(e) {
|
// 扫描仓库码
|
console.log('仓库码: ', e);
|
let index = this.HWHNameList.findIndex(elem => elem['条码编号'] == e)
|
if (index == -1) {
|
uni.showToast({
|
icon: 'none',
|
title: '扫描仓库条码对应的仓库不存在...'
|
})
|
} else {
|
this.HWHNameChange(this.HWHNameList[index]['仓库名称'])
|
}
|
},
|
async HStockPlaceOutNameScan(e) {
|
// 扫描仓位码
|
console.log('仓位码: ', e);
|
let index = this.HStockPlaceNameList.findIndex(elem => elem['条码编号'] == e)
|
console.log('index: ', index);
|
if (index == -1) {
|
uni.showToast({
|
icon: 'none',
|
title: '扫描仓位条码对应的仓位不存在...'
|
})
|
} else {
|
this.HOutStockPlaceNameChange(this.HStockPlaceNameList[index]['仓位名称'])
|
}
|
},
|
async HWHNameInScan(e) {
|
// 扫描仓库码
|
console.log('仓库码: ', e);
|
let index = this.HWHInNameList.findIndex(elem => elem['条码编号'] == e)
|
if (index == -1) {
|
uni.showToast({
|
icon: 'none',
|
title: '扫描仓库条码对应的仓库不存在...'
|
})
|
} else {
|
this.HWHInNameChange(this.HWHInNameList[index]['仓库名称'])
|
}
|
},
|
async HStockPlaceNameInScan(e) {
|
// 扫描仓位码
|
console.log('仓位码: ', e);
|
let index = this.HStockPlaceInNameList.findIndex(elem => elem['条码编号'] == e)
|
console.log('index: ', index);
|
if (index == -1) {
|
uni.showToast({
|
icon: 'none',
|
title: '扫描仓位条码对应的仓位不存在...'
|
})
|
} else {
|
this.HStockPlaceNameChange(this.HStockPlaceInNameList[index]['仓位名称'])
|
}
|
},
|
async qrCodeDisplay() {
|
try {
|
this.$refs.barcodePopup.setCodeInfo(this.hform.HBillNo)
|
await this.$nextTick()
|
this.$refs.barcodePopup.open()
|
} catch (err) {
|
uni.showToast({
|
icon: 'none',
|
title: err
|
})
|
}
|
},
|
async getRelationStore() {
|
let {
|
data,
|
count
|
} = await getUserStockRelation()
|
if (count == 1) {
|
let WHIDList = []
|
console.log('WHIDList: ', data);
|
Array.from(data).forEach(elem => {
|
WHIDList.push(elem.HItemID)
|
})
|
|
let sWhere = ` and HItemID in (${WHIDList.join(",")})`
|
this.getHBaseList({
|
sWhere: sWhere
|
})
|
|
} else {
|
this.getHBaseList()
|
}
|
},
|
// 调入仓库修改
|
HStockPlaceInNameChange(e) {
|
for (var i = 0; i < this.HStockPlaceNameList.length; i++) {
|
if (this.HStockPlaceNameList[i].仓位名称 == e) {
|
this.hform.HStockPlaceName = this.HStockPlaceNameList[i].仓位名称
|
this.hform.HStockPlaceID = this.HStockPlaceNameList[i].HMainID
|
}
|
}
|
},
|
// 调入仓位修改
|
HWHInNameChange(e) {
|
console.log('e: ', e);
|
for (var i = 0; i < this.HWHInNameList.length; i++) {
|
if (this.HWHInNameList[i].仓库名称 == e) {
|
this.hform.HWHName = this.HWHInNameList[i].仓库名称
|
this.hform.HWHID = this.HWHInNameList[i].HItemID
|
|
if (this.HWHInNameList[i]['启用仓位'] == 'Y') {
|
this.HIsStockMgr = true
|
} else {
|
// this.hform.HStockPlaceName = ''
|
this.HIsStockMgr = false
|
}
|
}
|
}
|
},
|
getOrganization() {
|
return new Promise((resolve, reject) => {
|
CommonUtils.doRequest2({
|
url: '/Web/GetOrganizations',
|
resFunction: (res) => {
|
console.log("Organizations: ", res.data)
|
let {
|
data,
|
count,
|
Message
|
} = res.data
|
if (count == 1) {
|
this.arrayHOrgName = []
|
this.arrayHOrgValue = []
|
Array.from(data).forEach(e => {
|
this.arrayHOrgName.push(e.Name)
|
this.arrayHOrgValue.push(e.ID)
|
})
|
resolve()
|
} else {
|
uni.showToast({
|
icon: 'none',
|
title: Message
|
})
|
reject()
|
}
|
|
}
|
})
|
})
|
},
|
HStockInOrgNameChange(e) {
|
let index = this.arrayHOrgName.findIndex(elem => elem == e)
|
if (index != -1) {
|
this.hform.HStockInOrgID = this.arrayHOrgValue[index]
|
}
|
// 更新调入仓库
|
this.getHWarehouseInList(e)
|
this.hform.HWHID = '',
|
this.hform.HWHName = ''
|
},
|
set_InitBillSubType() { // 初始化单据子类型
|
this.arrayHBillSubType = []
|
this.arrayHBillSubTypeValue = []
|
CommonUtils.doRequest(
|
"/WEBSController/GetBillSubType_Json", {
|
HBillType: this.hform.HBillType,
|
HStockOrgID: this.hform.HStockOrgID
|
},
|
(res) => {
|
let {
|
data,
|
count,
|
Message
|
} = res.data
|
if (count == 1) {
|
Array.from(data).forEach(item => {
|
this.arrayHBillSubType.push(item['HName'])
|
this.arrayHBillSubTypeValue.push(item['HNumber'])
|
})
|
|
this.HBillSubType = this.arrayHBillSubType[0]
|
this.hform.HBillSubType = this.arrayHBillSubTypeValue[0]
|
} else {
|
uni.showToast({
|
icon: 'none',
|
title: Message
|
})
|
}
|
}
|
)
|
},
|
onHSourceBillNoConfirmHandler() {
|
if (this.hform.HMainSourceBillType == -1) {
|
// 手工录入不进行提交
|
this.playSound(1)
|
return
|
}
|
|
this.getHBarCodeData(this.hform.HSourceBillNo)
|
},
|
playSound(e) {
|
const innerAudioContext = uni.createInnerAudioContext();
|
if (e == 1) {
|
innerAudioContext.src = '/static/success.wav';
|
} else {
|
innerAudioContext.src = '/static/jingbao.wav';
|
}
|
innerAudioContext.play(); // 播放音频
|
},
|
//扫码
|
toScanCode() {
|
uni.scanCode({
|
onlyFromCamera: true,
|
success: (res) => {
|
console.log('条码内容:' + res.result);
|
if (this.hform.HBarCode == '*') {
|
this.hform.HBarCode = this.hform.HBarCode + res.result
|
} else {
|
this.hform.HBarCode = res.result
|
}
|
|
this.getCode(this.hform.HBarCode)
|
}
|
});
|
},
|
showBillList() {
|
this.$refs.billList.showPopup()
|
},
|
//扫其他(仓库,仓位)
|
// toScanData(e){
|
// uni.scanCode({
|
// onlyFromCamera: true,
|
// success: (res) => {
|
// console.log('条码内容:' + res.result);
|
// var code = res.result
|
// if(e == 1){
|
// uni.request({
|
// url: this.serverUrl + '/WEBSController/GetWarehouse_Json',
|
// data: {HBarCode:code,HStockOrgID:uni.getStorageSync('OrganizationID')},
|
// success: (res) => {
|
// this.hform.HStockPlaceID = 0
|
// this.hform.HStockPlaceName = ''
|
// this.showHStockPlaceName = true
|
// if(res.data.count == 1){
|
// var data = res.data.data[0]
|
// this.hform.HWHID = data.HItemID
|
// this.hform.HWHName = data.HName
|
// if (data.HSPFlag == 0) {
|
// this.showHStockPlaceName = false
|
// }
|
// }else{
|
// this.hform.HWHID = 0
|
// this.hform.HWHName = ''
|
// uni.showToast({
|
// title:res.data.Message,
|
// icon:'none'
|
// })
|
// }
|
// },
|
// fail: (res) => {
|
// console.log(res);
|
// uni.showToast({
|
// title:'仓库数据请求失败',
|
// icon:'none'
|
// })
|
// },
|
// });
|
// }else if(e == 2){
|
// uni.request({
|
// url: this.serverUrl + '/WEBSController/GetStockPlace_Json',
|
// data: {HBarCode:code,HStockOrgID:uni.getStorageSync('OrganizationID'),HWhID: this.hform.HWHID},
|
// success: (res) => {
|
// if(res.data.count == 1){
|
// var data = res.data.data[0]
|
// this.hform.HWHID = data.HWHID
|
// this.hform.HWHName = data.HWhName
|
// this.hform.HStockPlaceID = data.HItemID
|
// this.hform.HStockPlaceName = data.HName
|
// }else{
|
// this.hform.HWHID = 0
|
// this.hform.HWHName = ''
|
// this.hform.HStockPlaceID = 0
|
// this.hform.HStockPlaceName = ''
|
// uni.showToast({
|
// title:res.data.Message,
|
// icon:'none'
|
// })
|
// }
|
// },
|
// fail: (res) => {
|
// console.log(res);
|
// uni.showToast({
|
// title:'仓库数据请求失败',
|
// icon:'none'
|
// })
|
// },
|
// });
|
// }
|
// }
|
// });
|
// },
|
//日期
|
HDateChange(e) {
|
console.log(e.detail.value)
|
this.hform.HDate = e.detail.value
|
},
|
HShipTypeChange(e) {
|
this.hform.HShipType = e
|
},
|
HBillSubTypeChange(e) {
|
let index = e.detail.value
|
// console.log(e.detail.value)
|
this.HBillSubType = this.arrayHBillSubType[index]
|
this.hform.HBillSubType = this.arrayHBillSubTypeValue[index]
|
},
|
// 调拨方向修改
|
HStockStyleChange(e) {
|
this.hform.HStockStyle = e
|
},
|
// 调入仓库资料
|
getHWarehouseInList(Organizaiton) {
|
Organizaiton = Organizaiton || uni.getStorageSync("Organization")
|
CommonUtils.doRequest2({
|
url: '/Gy_Warehouse/list',
|
data: {
|
sWhere: "",
|
user: uni.getStorageSync('HUserName'),
|
Organization: Organizaiton
|
},
|
resFunction: (res) => {
|
console.log('调入仓库 res: ', res.data.data);
|
if (res.data.count == 1) {
|
this.HWHInNameList = []
|
this.arrayHWHInName = []
|
|
this.HWHInNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHWHInName[i] = res.data.data[i].仓库名称
|
}
|
} else {
|
uni.showToast({
|
title: '仓库数据请求失败',
|
icon: 'none'
|
})
|
}
|
}
|
});
|
|
uni.request({
|
url: this.serverUrl + '/Gy_StockPlace/list',
|
data: {
|
sWhere: "",
|
user: uni.getStorageSync('HUserName'),
|
Organization: Organizaiton
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.HStockPlaceInNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHStockPlaceInName[i] = res.data.data[i].仓位名称
|
}
|
} else {
|
uni.showToast({
|
title: '仓位数据请求失败',
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
//基础仓库资料
|
getHBaseList({
|
sWhere = ''
|
} = {}) {
|
uni.request({
|
url: this.serverUrl + '/Gy_Warehouse/list',
|
data: {
|
sWhere: sWhere,
|
user: uni.getStorageSync('HUserName'),
|
Organization: uni.getStorageSync('Organization')
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.HWHNameList = res.data.data
|
this.HWHInNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHWHName[i] = res.data.data[i].仓库名称
|
this.arrayHWHInName[i] = res.data.data[i].仓库名称
|
}
|
} else {
|
uni.showToast({
|
title: '仓库数据请求失败',
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
|
uni.request({
|
url: this.serverUrl + '/Gy_StockPlace/list',
|
data: {
|
sWhere: "",
|
user: uni.getStorageSync('HUserName'),
|
Organization: uni.getStorageSync('Organization')
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.HStockPlaceNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHStockPlaceName[i] = res.data.data[i].仓位名称
|
}
|
} else {
|
uni.showToast({
|
title: '仓位数据请求失败',
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
|
// this.getHYDList()
|
},
|
// 调拨方向
|
InitTransferDirect() {
|
let HTransferDirect = '';
|
|
CommonUtils.doRequest(
|
"/WEBSController/GetMoveDirect_Json", {},
|
(res) => {
|
console.log('transferDirectRes: ', res);
|
let {
|
data,
|
count,
|
Message
|
} = res.data
|
if (count == 1) {
|
this.arrayHTransferDirect = Array.from(data).map(e => {
|
|
return e.HName
|
|
})
|
} else {
|
uni.showToast({
|
icon: 'none',
|
Message: Message
|
})
|
}
|
},
|
(err) => {
|
console.log('err: ', err);
|
}
|
)
|
|
},
|
// 出货类型
|
InitShipType() {
|
let HShipType = '';
|
CommonUtils.doRequest(
|
"/WEBSController/GetStockMoveStyle_Json", {
|
|
},
|
(res) => {
|
console.log('ShipTyperes: ', res);
|
let {
|
data,
|
count,
|
Message
|
} = res.data
|
if (count == 1) {
|
this.arrayHShipType = Array.from(data).map(e => {
|
return e.HName
|
})
|
|
this.hform.HShipType = this.arrayHShipType[0]
|
} else {
|
uni.showToast({
|
icon: 'none',
|
Message: Message
|
})
|
}
|
},
|
(err) => {
|
console.log('err: ', err);
|
}
|
)
|
},
|
// 通过单据类型获取源单类型
|
async GetSourceBillType() {
|
CommonUtils.doRequest2({
|
url: '/Web/GetHSourceBillTypeByBillType',
|
data: {
|
HBillType: this.hform.HBillType,
|
Num: 2
|
},
|
resFunction: (res) => {
|
let {
|
data,
|
count,
|
Message
|
} = res.data
|
if (count == 1) {
|
console.log('data: ', data);
|
this.arrayHMainSourceBillType = []
|
this.arrayHMainSourceBillValue = []
|
Array.from(data).forEach(e => {
|
this.arrayHMainSourceBillType.push(e['HSourceBillTypeName'])
|
this.arrayHMainSourceBillValue.push(e['HSourceBillType'])
|
})
|
|
this.arrayHMainSourceBillType.push('手工录入')
|
this.arrayHMainSourceBillValue.push('-1')
|
//如果手工录入不用选择源单
|
if (this.arrayHMainSourceBillType[0] == '手工录入') {
|
this.tabs = 1
|
}
|
|
this.HMainSourceBillType = this.arrayHMainSourceBillType[0]
|
this.hform.HMainSourceBillType = this.arrayHMainSourceBillValue[0]
|
} else {
|
uni.showToast({
|
icon: 'none',
|
title: Message
|
})
|
}
|
}
|
|
})
|
},
|
//源单资料
|
async getHYDList() {
|
uni.request({
|
url: this.serverUrl + '/WEBSController/GetSourceBillList_Json',
|
data: {
|
HBillType: this.hform.HBillType,
|
HSourceBillType: this.hform.HMainSourceBillType,
|
HStockOrgID: this.hform.HStockOrgID,
|
HSourceBillNo: "",
|
HMater: "",
|
HCustom: ""
|
},
|
success: (res) => {
|
let {
|
count,
|
data,
|
Message
|
} = res.data
|
if (res.data.count == 1) {
|
this.HSourceBillNoList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHSourceBillNo[i] = res.data.data[i].单据号
|
}
|
this.reHSourceBillNo = false
|
this.$nextTick(() => {
|
this.reHSourceBillNo = true
|
})
|
} else {
|
uni.showToast({
|
title: Message,
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
|
},
|
//选择仓库
|
HWHNameChange(e) {
|
// var name = e.split("(")
|
for (var i = 0; i < this.HWHNameList.length; i++) {
|
if (this.HWHNameList[i].仓库名称 == e) {
|
this.hform.HWHName = this.HWHNameList[i].仓库名称
|
this.hform.HWHID = this.HWHNameList[i].HItemID
|
|
if (this.HWHNameList[i]['启用仓位'] == 'Y') {
|
this.HIsStockMgr = true
|
} else {
|
this.hform.HStockPlaceName = ''
|
this.hform.HStockPlaceID = ''
|
this.HIsStockMgr = false
|
}
|
}
|
}
|
},
|
// 调出仓库修改
|
HSCWHNameChange(e) {
|
// var name = e.split("(")
|
for (var i = 0; i < this.HWHNameList.length; i++) {
|
if (this.HWHNameList[i].仓库名称 == e) {
|
this.hform.HSCWHName = this.HWHNameList[i].仓库名称
|
this.hform.HSCWHID = this.HWHNameList[i].HItemID
|
|
if (this.HWHNameList[i]['启用仓位'] == 'Y') {
|
this.HSCIsStockMgr = true
|
} else {
|
this.hform.HOutStockPlaceName = ''
|
this.hform.HOutStockPlaceID = ''
|
this.HSCIsStockMgr = false
|
}
|
}
|
}
|
},
|
HFIFOWHNameChange(e) {
|
for (var i = 0; i < this.HWHNameList.length; i++) {
|
if (this.HWHNameList[i].仓库名称 == e) {
|
this.hform.HFIFOWHName = this.HWHNameList[i].仓库名称
|
this.hform.HFIFOWHID = this.HWHNameList[i].HItemID
|
}
|
}
|
},
|
//选择仓位
|
HStockPlaceNameChange(e) {
|
for (var i = 0; i < this.HStockPlaceNameList.length; i++) {
|
if (this.HStockPlaceNameList[i].仓位名称 == e) {
|
console.log(this.HStockPlaceNameList[i]);
|
this.hform.HStockPlaceName = this.HStockPlaceNameList[i].仓位名称
|
this.hform.HStockPlaceID = this.HStockPlaceNameList[i].HMainID
|
}
|
}
|
},
|
HOutStockPlaceNameChange(e) {
|
for (var i = 0; i < this.HStockPlaceInNameList.length; i++) {
|
if (this.HStockPlaceInNameList[i].仓位名称 == e) {
|
this.hform.HOutStockPlaceName = this.HStockPlaceInNameList[i].仓位名称
|
this.hform.HOutStockPlaceID = this.HStockPlaceInNameList[i].HMainID
|
}
|
}
|
},
|
//选择源单
|
HSourceBillNoChange(e) {
|
this.hform.HSourceBillNo = e
|
this.getHBarCodeData(e)
|
// for(var i=0;i<this.HSourceBillNoList.length;i++){
|
// if(this.HSourceBillNoList[i].单据号 == e){
|
// this.hform.HSourceBillNo = this.HSourceBillNoList[i].单据号
|
// }
|
// }
|
},
|
//选择源单类型
|
HMainSourceBillTypeChange(e) {
|
this.HMainSourceBillType = this.arrayHMainSourceBillType[e.detail.value]
|
let index = this.arrayHMainSourceBillType.findIndex(e => e == this.HMainSourceBillType)
|
if (index != -1) {
|
this.hform.HMainSourceBillType = this.arrayHMainSourceBillValue[index]
|
// this.getHYDList()
|
}
|
},
|
|
//获取供应商数据
|
getHSupList() {
|
uni.request({
|
url: this.serverUrl + '/Gy_Customer/list',
|
data: {
|
sWhere: "",
|
user: uni.getStorageSync('HUserName'),
|
Organization: uni.getStorageSync('Organization')
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.HSupNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHSupName[i] = res.data.data[i].客户名称
|
}
|
this.$forceUpdate();
|
} else {
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '客户数据请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
//选择供应商
|
HSupNameChange(e) {
|
for (var i = 0; i < this.HSupNameList.length; i++) {
|
if (this.HSupNameList[i].客户名称 == e) {
|
this.hform.HSupID = this.HSupNameList[i].HItemID
|
this.hform.HSupName = this.HSupNameList[i].客户名称
|
}
|
}
|
},
|
//获取使用部门数据
|
getHDeptList() {
|
uni.request({
|
url: this.serverUrl + '/Gy_Department/list',
|
data: {
|
sWhere: "",
|
user: uni.getStorageSync('HUserName'),
|
Organization: uni.getStorageSync('Organization')
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.HDeptNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHDeptName[i] = res.data.data[i].部门名称
|
}
|
this.$forceUpdate();
|
} else {
|
uni.showToast({
|
title: '部门数据请求失败',
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
//选择使用部门
|
HDeptNameChange(e) {
|
for (var i = 0; i < this.HDeptNameList.length; i++) {
|
if (this.HDeptNameList[i].部门名称 == e) {
|
this.hform.HDeptID = this.HDeptNameList[i].HItemID
|
this.hform.HDeptName = this.HDeptNameList[i].部门名称
|
}
|
}
|
},
|
//操作员
|
getHEmpList() {
|
uni.request({
|
url: this.serverUrl + '/Web/GetEmployeeList_Json',
|
data: {
|
Employee: '',
|
HGroupID: 0
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.HEmpNameList = res.data.data
|
for (var i = 0; i < res.data.data.length; i++) {
|
this.arrayHEmpName[i] = res.data.data[i].HName
|
}
|
this.$forceUpdate();
|
} else {
|
uni.showToast({
|
title: '人员数据请求失败',
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
// 调拨方向修改
|
HTransferDirectChange(e) {
|
this.hform.HTransferDirect = e
|
},
|
//保管
|
HKeeperNameChange(e) {
|
for (var i = 0; i < this.HEmpNameList.length; i++) {
|
if (this.HEmpNameList[i].HName == e) {
|
console.log(this.HEmpNameList[i])
|
this.hform.HKeeperID = this.HEmpNameList[i].HItemID
|
this.hform.HKeeperName = this.HEmpNameList[i].HName
|
}
|
}
|
},
|
//验收
|
HSecManagerNameChange(e) {
|
for (var i = 0; i < this.HEmpNameList.length; i++) {
|
if (this.HEmpNameList[i].HName == e) {
|
this.hform.HSecManagerID = this.HEmpNameList[i].HItemID
|
this.hform.HSecManagerName = this.HEmpNameList[i].HName
|
}
|
}
|
},
|
//选中源单
|
getHBarCodeData(HBarCode) {
|
if (!this.hform.HFIFOWHName) {
|
this.hform.HFIFOWHID = 0
|
}
|
uni.request({
|
url: this.serverUrl + '/WEBSController/get_SourceBarCode_MoveStock_Json',
|
data: {
|
HInterID: this.hform.HInterID,
|
HBillNo: this.hform.HBillNo,
|
HBillType: this.hform.HBillType,
|
HSourceBillNo: HBarCode,
|
HSourceBillType: this.hform.HMainSourceBillType,
|
HMaker: this.hform.HMaker,
|
HOWNERID: this.hform.HStockOrgID,
|
HFIFOWhID: this.hform.HFIFOWHID,
|
// HPTQty: this.hform.HPTQty || 0,
|
// HPlanMode: this.hform.HPlanMode || 0
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
var data = res.data.data
|
console.log(2, data);
|
this.hform.HSupName = data.hSupNameField
|
this.hform.HSupID = data.hSupIDField
|
if (data.hDeptIDField != 0) {
|
this.hform.HDeptID = data.hDeptIDField
|
this.hform.HDeptName = data.hDeptNameField
|
}
|
this.hform.HSourceBillNo = data.hSourceBillNoField
|
this.showHMainSourceBillType = false
|
if (data.hMulSourceFlagField == 0) {
|
this.showHSourceBillNo = false
|
}
|
this.tabs = 2
|
this.showHSupName = false
|
this.barCodeFocus = true
|
this.playSound(1)
|
this.DisBillEntryList()
|
} else {
|
this.playSound(0)
|
console.log('res: ', res);
|
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
this.HSourcebillNoFocus = false
|
this.$nextTick(() => {
|
this.hform.HSourceBillNo = ""
|
this.HSourcebillNoFocus = true
|
})
|
}
|
},
|
fail: (err) => {
|
console.log('err: ', err);
|
this.playSound(0)
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
this.HSourcebillNoFocus = false
|
this.$nextTick(() => {
|
this.hform.HSourceBillNo = ""
|
this.HSourcebillNoFocus = true
|
})
|
},
|
});
|
},
|
//扫条码处理
|
async getCode(HBarCode) {
|
//仓库、仓位文本框为空时,清空对应ID
|
if (!this.hform.HSCWHName) {
|
this.hform.HSCWHID = 0
|
}
|
if (!this.hform.HOutStockPlaceName) {
|
this.hform.HOutStockPlaceID = 0
|
}
|
var sOldBarCode = HBarCode
|
var HDeleteFlag = sOldBarCode.substring(0, 1);
|
var sBarCode = sOldBarCode.slice(1);
|
|
var sHWHID = this.hform.HWHID
|
var sHSPID = this.hform.HStockPlaceID
|
var sHSCWHID = this.hform.HSCWHID
|
var sHOUTSPID = this.hform.HOutStockPlaceID
|
var sHQty = this.hform.HQty
|
var sSourceBillNo = this.hform.HSourceBillNo
|
var sSourceBillType = this.hform.HMainSourceBillType
|
var HSourceFlag = this.hform.HSourceBillNo == '' ? false : true
|
console.log(this.hform.HSourceBillNo, HSourceFlag)
|
if (HDeleteFlag == "*") {
|
if (sBarCode == "") {
|
this.playSound(0)
|
uni.showToast({
|
title: '请扫描要删除的条码',
|
icon: 'none'
|
})
|
} else {
|
|
try {
|
let res = await CommonUtils.doRequest2Sync({
|
url: '/WEBSController/set_DelPonderationBillMain_Temp_BarCode_Json',
|
data: {
|
HInterID: this.hform.HInterID,
|
HBillType: this.hform.HBillType,
|
HBarCode: sBarCode
|
}
|
})
|
if (!res) {
|
return
|
}
|
console.log('删除条码', res.data);
|
this.hform.HBarCode = ''
|
if (res.data.count == 1) {
|
this.playSound(1)
|
this.hform.HQty = ''
|
this.DisBillEntryList()
|
} else {
|
this.playSound(0)
|
this.refreshBarCodeState()
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
} catch (err) {
|
this.refreshBarCodeState()
|
this.playSound(0)
|
uni.showToast({
|
title: '接口请求失败: ' + err,
|
icon: 'none'
|
})
|
}
|
// uni.request({
|
// url: this.serverUrl +
|
// '/WEBSController/set_DelPonderationBillMain_Temp_BarCode_Json',
|
// data: {
|
// HInterID: this.hform.HInterID,
|
// HBillType: this.hform.HBillType,
|
// HBarCode: sBarCode
|
// },
|
// success: (res) => {
|
// console.log('删除条码', res.data);
|
// this.hform.HBarCode = ''
|
// if (res.data.count == 1) {
|
// this.playSound(1)
|
// this.hform.HQty = ''
|
// this.DisBillEntryList()
|
// } else {
|
// this.playSound(0)
|
//
|
// uni.showToast({
|
// title: res.data.Message,
|
// icon: 'none'
|
// })
|
// this.barCodeFocus = false
|
// this.$nextTick(() => {
|
// this.barCodeFocus = true
|
// this.hform.HBarCode = ""
|
// })
|
// }
|
// },
|
// fail: (res) => {
|
// this.playSound(0)
|
// this.barCodeFocus = true
|
// console.log(res);
|
// uni.showToast({
|
// title: '接口请求失败',
|
// icon: 'none'
|
// })
|
// this.barCodeFocus = false
|
// this.$nextTick(() => {
|
// this.barCodeFocus = true
|
// this.hform.HBarCode = ""
|
// })
|
// },
|
// });
|
}
|
} else {
|
var sBarCode = this.hform.HBarCode
|
if (sHQty == "") {
|
sHQty = 0;
|
}
|
try {
|
|
let res = await CommonUtils.doRequest2Sync({
|
url: '/WEBSController/get_BarCode_MoveStock_New_Json',
|
data: {
|
sBarCode: sBarCode,
|
HInterID: this.hform.HInterID,
|
HBillType: this.hform.HBillType,
|
HBillNo: this.hform.HBillNo,
|
HMaker: this.hform.HMaker,
|
HWhID: sHWHID,
|
HSPID: sHSPID,
|
HSCWHID: sHSCWHID,
|
HSCSPID: sHOUTSPID,
|
HQty: sHQty,
|
// HRedBlueFlag: this.hform.HRedBlueFlag,
|
SourceFlag: HSourceFlag,
|
HSourceBillNo: sSourceBillNo,
|
HSourceBillType: sSourceBillType,
|
HStockInOrgID: this.hform.HStockOrgID,
|
HStockOutOrgID: this.hform.HStockOutOrgID,
|
HScanStyle: "",
|
HCustom1: "",
|
HCustom2: ""
|
},
|
})
|
|
if (!res) {
|
return
|
}
|
|
console.log('扫码返回', res.data);
|
this.hform.HBarCode = ''
|
if (res.data.count == 1) {
|
this.playSound(1)
|
var data = res.data.data
|
if (data.hBarTypeField == '仓库条码') {
|
this.hform.HWHName = data.hWhNameField
|
this.hform.HWHID = data.hWhIDField
|
this.hform.HStockPlaceName = ''
|
this.hform.HStockPlaceID = 0
|
if (data.hSPFlagField == 0) {
|
this.showHStockPlaceName = false
|
} else {
|
this.showHStockPlaceName = true
|
}
|
} else if (data.hBarTypeField == '仓位条码') {
|
this.hform.HWHName = data.hWhNameField
|
this.hform.HWHID = data.hWhIDField
|
this.hform.HStockPlaceName = data.hSPNameField
|
this.hform.HStockPlaceID = data.hSPIDField
|
} else if (data.hBarTypeField == '部门条码') {
|
this.hform.HDeptName = data.hDeptNameField
|
this.hform.HDeptID = data.hDeptIDField
|
this.tabs = 1
|
} else if (data.hBarTypeField == '源单条码') {
|
this.hform.HSupName = data.hSupNameField
|
this.hform.HSupID = data.hSupIDField
|
if (data.hDeptIDField != 0) {
|
this.hform.HDeptID = data.hDeptIDField
|
this.hform.HDeptName = data.hDeptNameField
|
}
|
this.hform.HSourceBillNo = data.hSourceBillNoField
|
//获取源单类型、源单单号
|
this.hform.HMainSourceBillType = data.hSourceBillTypeField
|
let index = this.arrayHMainSourceBillValue.findIndex(e => e == data
|
.hSourceBillTypeField)
|
if (index != -1) {
|
this.HMainSourceBillType = this.arrayHMainSourceBillType[index]
|
this.hform.HMainSourceBillType = data.hSourceBillTypeField
|
this.showHMainSourceBillType = false
|
}
|
// if (data.hSourceBillTypeField == "1402") {
|
// this.HMainSourceBillType = '发货通知单'
|
// this.hform.HMainSourceBillType = 1402
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "1243") {
|
// this.HMainSourceBillType = '调拨申请单'
|
// this.hform.HMainSourceBillType = 1243
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "1214") {
|
// this.HMainSourceBillType = '生产发料通知单'
|
// this.hform.HMainSourceBillType = 1214
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "3720") {
|
// this.HMainSourceBillType = '生产用料清单'
|
// this.hform.HMainSourceBillType = 3720
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "1604") {
|
// this.HMainSourceBillType = '委外用料清单'
|
// this.hform.HMainSourceBillType = 1604
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "1214") {
|
// this.HMainSourceBillType = '生产发料通知单'
|
// this.hform.HMainSourceBillType = 1214
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "3721") {
|
// this.HMainSourceBillType = '生产备料单'
|
// this.hform.HMainSourceBillType = 3721
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "1242") {
|
// this.HMainSourceBillType = '出库申请单'
|
// this.hform.HMainSourceBillType = 1242
|
// this.showHMainSourceBillType = false
|
// } else {
|
// this.HMainSourceBillType = '手工录入'
|
// this.hform.HMainSourceBillType = -1
|
// this.showHMainSourceBillType = false
|
// }
|
if (data.hMulSourceFlagField == 0) {
|
this.showHSourceBillNo = false
|
}
|
//客户不可编辑
|
this.showHSupName = false
|
this.tabs = 2
|
} else { //物料条码
|
this.tabs = 2
|
if (!this.hform.HSourceBillNo) {
|
this.hform.HSupName = data.hSupNameField
|
this.hform.HSupID = data.hSupIDField
|
this.hform.HSourceBillNo = data.hSourceBillNoField
|
if (data.hDeptIDField != 0) {
|
this.hform.HDeptID = data.hDeptIDField
|
this.hform.HDeptName = data.hDeptNameField
|
}
|
console.log(data)
|
//获取源单类型、源单单号
|
this.hform.HMainSourceBillType = data.hSourceBillTypeField || -1
|
let index = this.arrayHMainSourceBillValue.findIndex(e => e ==
|
data
|
.hSourceBillTypeField)
|
if (index != -1) {
|
this.HMainSourceBillType = this.arrayHMainSourceBillType[
|
index]
|
this.hform.HMainSourceBillType = data.hSourceBillTypeField
|
this.showHMainSourceBillType = false
|
}
|
// if (data.hSourceBillTypeField == "1103") {
|
// this.HMainSourceBillType = '收料通知单'
|
// this.hform.HMainSourceBillType = 1103
|
// this.showHMainSourceBillType = false
|
// } else if (data.hSourceBillTypeField == "1102") {
|
// this.HMainSourceBillType = '采购订单'
|
// this.hform.HMainSourceBillType = 1102
|
// this.showHMainSourceBillType = false
|
// } else {
|
// this.HMainSourceBillType = '手工录入'
|
// this.hform.HMainSourceBillType = -1
|
// this.showHMainSourceBillType = false
|
// }
|
if (data.hMulSourceFlagField == 0) {
|
this.showHSourceBillNo = false
|
}
|
//供应商不可编辑
|
this.showHSupName = false
|
}
|
}
|
//显示表体明细
|
this.DisBillEntryList()
|
//清空数量
|
this.hform.HQty = ''
|
//光标对准
|
this.barCodeFocus = false
|
this.$nextTick(() => {
|
this.barCodeFocus = true
|
this.hform.HBarCode = ""
|
})
|
} else {
|
this.playSound(0)
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
this.barCodeFocus = false
|
this.$nextTick(() => {
|
this.barCodeFocus = true
|
this.hform.HBarCode = ""
|
})
|
}
|
|
} catch (err) {
|
this.playSound(0)
|
this.barCodeFocus = true
|
console.log(err);
|
uni.showToast({
|
title: '接口请求失败:' + err,
|
icon: 'none'
|
})
|
this.barCodeFocus = false
|
this.$nextTick(() => {
|
this.barCodeFocus = true
|
this.hform.HBarCode = ""
|
})
|
|
}
|
|
|
// uni.request({
|
// url: this.serverUrl + '/WEBSController/get_BarCode_MoveStock_New_Json',
|
// data: {
|
// sBarCode: sBarCode,
|
// HInterID: this.hform.HInterID,
|
// HBillType: this.hform.HBillType,
|
// HBillNo: this.hform.HBillNo,
|
// HMaker: this.hform.HMaker,
|
// HWhID: sHWHID,
|
// HSPID: sHSPID,
|
// HSCWHID: sHSCWHID,
|
// HSCSPID: sHOUTSPID,
|
// HQty: sHQty,
|
// // HRedBlueFlag: this.hform.HRedBlueFlag,
|
// SourceFlag: HSourceFlag,
|
// HSourceBillNo: sSourceBillNo,
|
// HSourceBillType: sSourceBillType,
|
// HStockInOrgID: this.hform.HStockOrgID,
|
// HStockOutOrgID: this.hform.HStockOutOrgID,
|
// HScanStyle: "",
|
// HCustom1: "",
|
// HCustom2: ""
|
// },
|
// success: (res) => {
|
// console.log('扫码返回', res.data);
|
// this.hform.HBarCode = ''
|
// if (res.data.count == 1) {
|
// this.playSound(1)
|
// var data = res.data.data
|
// if (data.hBarTypeField == '仓库条码') {
|
// this.hform.HWHName = data.hWhNameField
|
// this.hform.HWHID = data.hWhIDField
|
// this.hform.HStockPlaceName = ''
|
// this.hform.HStockPlaceID = 0
|
// if (data.hSPFlagField == 0) {
|
// this.showHStockPlaceName = false
|
// } else {
|
// this.showHStockPlaceName = true
|
// }
|
// } else if (data.hBarTypeField == '仓位条码') {
|
// this.hform.HWHName = data.hWhNameField
|
// this.hform.HWHID = data.hWhIDField
|
// this.hform.HStockPlaceName = data.hSPNameField
|
// this.hform.HStockPlaceID = data.hSPIDField
|
// } else if (data.hBarTypeField == '部门条码') {
|
// this.hform.HDeptName = data.hDeptNameField
|
// this.hform.HDeptID = data.hDeptIDField
|
// this.tabs = 1
|
// } else if (data.hBarTypeField == '源单条码') {
|
// this.hform.HSupName = data.hSupNameField
|
// this.hform.HSupID = data.hSupIDField
|
// if (data.hDeptIDField != 0) {
|
// this.hform.HDeptID = data.hDeptIDField
|
// this.hform.HDeptName = data.hDeptNameField
|
// }
|
// this.hform.HSourceBillNo = data.hSourceBillNoField
|
// //获取源单类型、源单单号
|
// this.hform.HMainSourceBillType = data.hSourceBillTypeField
|
//
|
// let index = this.arrayHMainSourceBillValue.findIndex(e => e == data
|
// .hSourceBillTypeField)
|
// if (index != -1) {
|
// this.HMainSourceBillType = this.arrayHMainSourceBillType[index]
|
// this.hform.HMainSourceBillType = data.hSourceBillTypeField
|
// this.showHMainSourceBillType = false
|
// }
|
// // if (data.hSourceBillTypeField == "1402") {
|
// // this.HMainSourceBillType = '发货通知单'
|
// // this.hform.HMainSourceBillType = 1402
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "1243") {
|
// // this.HMainSourceBillType = '调拨申请单'
|
// // this.hform.HMainSourceBillType = 1243
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "1214") {
|
// // this.HMainSourceBillType = '生产发料通知单'
|
// // this.hform.HMainSourceBillType = 1214
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "3720") {
|
// // this.HMainSourceBillType = '生产用料清单'
|
// // this.hform.HMainSourceBillType = 3720
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "1604") {
|
// // this.HMainSourceBillType = '委外用料清单'
|
// // this.hform.HMainSourceBillType = 1604
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "1214") {
|
// // this.HMainSourceBillType = '生产发料通知单'
|
// // this.hform.HMainSourceBillType = 1214
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "3721") {
|
// // this.HMainSourceBillType = '生产备料单'
|
// // this.hform.HMainSourceBillType = 3721
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "1242") {
|
// // this.HMainSourceBillType = '出库申请单'
|
// // this.hform.HMainSourceBillType = 1242
|
// // this.showHMainSourceBillType = false
|
// // } else {
|
// // this.HMainSourceBillType = '手工录入'
|
// // this.hform.HMainSourceBillType = -1
|
// // this.showHMainSourceBillType = false
|
// // }
|
// if (data.hMulSourceFlagField == 0) {
|
// this.showHSourceBillNo = false
|
// }
|
// //客户不可编辑
|
// this.showHSupName = false
|
// this.tabs = 2
|
// } else { //物料条码
|
// this.tabs = 2
|
// if (!this.hform.HSourceBillNo) {
|
// this.hform.HSupName = data.hSupNameField
|
// this.hform.HSupID = data.hSupIDField
|
// this.hform.HSourceBillNo = data.hSourceBillNoField
|
// if (data.hDeptIDField != 0) {
|
// this.hform.HDeptID = data.hDeptIDField
|
// this.hform.HDeptName = data.hDeptNameField
|
// }
|
// console.log(data)
|
// //获取源单类型、源单单号
|
// this.hform.HMainSourceBillType = data.hSourceBillTypeField || -1
|
//
|
// let index = this.arrayHMainSourceBillValue.findIndex(e => e ==
|
// data
|
// .hSourceBillTypeField)
|
// if (index != -1) {
|
// this.HMainSourceBillType = this.arrayHMainSourceBillType[
|
// index]
|
// this.hform.HMainSourceBillType = data.hSourceBillTypeField
|
// this.showHMainSourceBillType = false
|
// }
|
// // if (data.hSourceBillTypeField == "1103") {
|
// // this.HMainSourceBillType = '收料通知单'
|
// // this.hform.HMainSourceBillType = 1103
|
// // this.showHMainSourceBillType = false
|
// // } else if (data.hSourceBillTypeField == "1102") {
|
// // this.HMainSourceBillType = '采购订单'
|
// // this.hform.HMainSourceBillType = 1102
|
// // this.showHMainSourceBillType = false
|
// // } else {
|
// // this.HMainSourceBillType = '手工录入'
|
// // this.hform.HMainSourceBillType = -1
|
// // this.showHMainSourceBillType = false
|
// // }
|
// if (data.hMulSourceFlagField == 0) {
|
// this.showHSourceBillNo = false
|
// }
|
// //供应商不可编辑
|
// this.showHSupName = false
|
// }
|
// }
|
// //显示表体明细
|
// this.DisBillEntryList()
|
// //清空数量
|
// this.hform.HQty = ''
|
// //光标对准
|
// this.barCodeFocus = false
|
// this.$nextTick(() => {
|
// this.barCodeFocus = true
|
// this.hform.HBarCode = ""
|
// })
|
// } else {
|
// this.playSound(0)
|
// uni.showToast({
|
// title: res.data.Message,
|
// icon: 'none'
|
// })
|
// this.barCodeFocus = false
|
// this.$nextTick(() => {
|
// this.barCodeFocus = true
|
// this.hform.HBarCode = ""
|
// })
|
// }
|
// },
|
// fail: (res) => {
|
// this.playSound(0)
|
// this.barCodeFocus = true
|
// console.log(res);
|
// uni.showToast({
|
// title: '接口请求失败',
|
// icon: 'none'
|
// })
|
// this.barCodeFocus = false
|
// this.$nextTick(() => {
|
// this.barCodeFocus = true
|
// this.hform.HBarCode = ""
|
// })
|
// },
|
// });
|
}
|
},
|
//物料信息
|
DisBillEntryList() {
|
uni.request({
|
url: this.serverUrl + '/WEBSController/GetBillEntryTmpList_Json',
|
data: {
|
HInterID: this.hform.HInterID,
|
HBillNo: this.hform.HBillNo,
|
HBillType: this.hform.HBillType,
|
HStockOrgID: this.hform.HStockOrgID
|
},
|
success: (res) => {
|
console.log('物料', res.data)
|
if (res.data.count == 1) {
|
var data = res.data.data
|
this.Materlist = data.Materlist
|
if (data.FIFOlist.length != 0) {
|
if (data.FIFOlist[0].HMaterID != 0) {
|
this.FIFOlist = data.FIFOlist
|
}
|
}
|
if (!data.BarCodeDetailslist[0].HBarCode) {
|
this.hform.HMaterName_B = ''
|
this.hform.HMaterModel_B = ''
|
this.hform.HBatchNo_B = ''
|
this.hform.HUnitName_B = ''
|
this.hform.HQty_B = ''
|
this.hform.HTMQty_B = ''
|
this.hform.HWHName_B = ''
|
this.hform.HSPName_B = ''
|
this.hform.HSCWHName_B = ''
|
this.hform.HSCSPName_B = ''
|
} else {
|
this.hform.HBarCode_B = data.BarCodeDetailslist[0].HBarCode
|
this.hform.HMaterName_B = data.BarCodeDetailslist[0].HMaterName
|
this.hform.HMaterModel_B = data.BarCodeDetailslist[0].HMaterModel
|
this.hform.HBatchNo_B = data.BarCodeDetailslist[0].HBatchNo
|
this.hform.HUnitName_B = data.BarCodeDetailslist[0].HUnitName
|
this.hform.HQty_B = data.BarCodeDetailslist[0].HQty
|
this.hform.HTMQty_B = data.BarCodeDetailslist[0].HTMQty
|
this.hform.HWHName_B = data.BarCodeDetailslist[0].HWHName
|
this.hform.HSPName_B = data.BarCodeDetailslist[0].HSPName
|
this.hform.HSCWHName_B = data.BarCodeDetailslist[0].HSCWHName
|
this.hform.HSCSPName_B = data.BarCodeDetailslist[0].HSCSPName
|
}
|
} else {
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
//删除物料码
|
delMater(item) {
|
uni.showModal({
|
title: '提示',
|
content: '确认要删除 " ' + item.物料名称 + ' " 所有扫码记录?删除后将不可恢复!',
|
success: (res) => {
|
if (res.confirm) {
|
uni.request({
|
url: this.serverUrl +
|
'/WEBSController/set_DelPonderationBillMain_Temp_InterIDAndSource_Json',
|
data: {
|
HInterID: this.hform.HInterID,
|
HMaterID: item.HMaterID,
|
HAuxPropID: item.HAuxPropID,
|
HMTONo: item.HMTONo,
|
HSourceInterID: item.HSourceInterID,
|
HSourceEntryID: item.HSourceEntryID,
|
HBillType: this.hform.HBillType
|
},
|
success: (res) => {
|
if (res.data.count == 1) {
|
this.DisBillEntryList()
|
} else {
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
}
|
}
|
});
|
},
|
//新增
|
getNewData() {
|
uni.request({
|
url: this.serverUrl + '/WEBSController/GetMaxBillNoAndID_Json',
|
data: {
|
HBillType: this.hform.HBillType
|
},
|
success: (res) => {
|
// console.log(res.data)
|
if (res.data.count == 1) {
|
this.hform.HInterID = res.data.data[0].HInterID
|
this.hform.HBillNo = res.data.data[0].HBillNo
|
} else {
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
//修改回填数据
|
RoadBillMain(HInterID) {
|
uni.request({
|
url: this.serverUrl + '/WEBSController/GetSourceBill_Temp_Json',
|
data: {
|
HInterID: HInterID,
|
HBillType: this.hform.HBillType
|
},
|
success: (res) => {
|
console.log(33, res.data.data[0]);
|
if (res.data.count == 1) {
|
var data = res.data.data[0]
|
this.hform.HInterID = data.HInterID
|
this.hform.HBillNo = data.HBillNo
|
this.hform.HMainSourceBillType = data.HSourceBillType
|
this.hform.HSourceBillNo = data.HSourceBillNo
|
|
let index = this.arrayHMainSourceBillValue.findIndex(e => e == data
|
.HSourceBillType)
|
if (index != -1) {
|
this.HMainSourceBillType = this.arrayHMainSourceBillType[index]
|
this.hform.HMainSourceBillType = data.HSourceBillType
|
if (this.HMainSourceBillType != -1) {
|
this.showHSupName = false
|
}
|
}
|
// if (data.HSourceBillType == 1402) {
|
// this.hform.HMainSourceBillType = 1402
|
// this.HMainSourceBillType = '发货通知单'
|
// this.showHSupName = false
|
// } else if (data.HSourceBillType == 1243) {
|
// this.hform.HMainSourceBillType = 1243
|
// this.HMainSourceBillType = '调拨申请单'
|
// this.showHSupName = false
|
// } else if (data.HSourceBillType == 3720) {
|
// this.hform.HMainSourceBillType = 3720
|
// this.HMainSourceBillType = '生产用料清单'
|
// this.showHSupName = false
|
// } else if (data.HSourceBillType == 1604) {
|
// this.hform.HMainSourceBillType = 1604
|
// this.HMainSourceBillType = '委外用料清单'
|
// this.showHSupName = false
|
// } else if (data.HSourceBillType == 1214) {
|
// this.hform.HMainSourceBillType = 1214
|
// this.HMainSourceBillType = '生产发料通知单'
|
// this.showHSupName = false
|
// } else if (data.HSourceBillType == 3721) {
|
// this.hform.HMainSourceBillType = 3721
|
// this.HMainSourceBillType = '生产备料单'
|
// this.showHSupName = false
|
// } else if (data.HSourceBillType == 1242) {
|
// this.hform.HMainSourceBillType = 1242
|
// this.HMainSourceBillType = '出库申请单'
|
// this.showHSupName = false
|
// } else {
|
// this.hform.HMainSourceBillType = -1
|
// this.HMainSourceBillType = '手工录入'
|
// }
|
this.showHMainSourceBillType = false
|
|
//非多源单模式
|
if (data.HMulSourceBill == 0) {
|
this.showHSourceBillNo = false
|
}
|
this.hform.HDeptID = data.HDeptID
|
this.hform.HDeptName = data.HDeptName
|
this.hform.HSupID = data.HCusID
|
this.hform.HSupName = data.HCusName
|
this.hform.HStockStyle = data.HStockStyle
|
|
let HStockInOrgIndex = this.arrayHOrgValue.findIndex(e => e == data
|
.HStockInOrgID)
|
let HStockOutOrgIndex = this.arrayHOrgValue.findIndex(e => e == data
|
.HStockOutOrgID)
|
this.hform.HStockInOrgID = data.HStockInOrgID
|
this.hform.HStockOutOrgID = data.HStockOutOrgID
|
if (HStockInOrgIndex != -1) {
|
this.hform.HStockInOrgName = this.arrayHOrgName[HStockInOrgIndex]
|
}
|
|
if (HStockOutOrgIndex != -1) {
|
this.hform.HStockOutOrgName = this.arrayHOrgName[HStockOutOrgIndex]
|
}
|
this.tabs = 2
|
this.DisBillEntryList()
|
} else {
|
uni.showToast({
|
title: '获取数据回填失败',
|
icon: 'none'
|
})
|
}
|
},
|
fail: (res) => {
|
console.log(res);
|
uni.showToast({
|
title: '接口请求失败',
|
icon: 'none'
|
})
|
},
|
});
|
},
|
addNew() {
|
uni.redirectTo({
|
url: '/pages/zhijiediaobo/MoveStockBill?OperationType=1'
|
})
|
},
|
async submit() {
|
//仓库、仓位、保管、验收、部门、客户文本框为空时,清空对应ID
|
if (!this.hform.HWHName) {
|
this.hform.HWHID = 0
|
}
|
if (!this.hform.HStockPlaceName) {
|
this.hform.HStockPlaceID = 0
|
}
|
if (!this.hform.HKeeperName) {
|
this.hform.HKeeperID = 0
|
}
|
if (!this.hform.HSecManagerName) {
|
this.hform.HSecManagerID = 0
|
}
|
if (!this.hform.HDeptName) {
|
this.hform.HDeptID = 0
|
}
|
if (!this.hform.HSupName) {
|
this.hform.HSupID = 0
|
}
|
if (this.hform.HInterID == 0 || !this.hform.HInterID) {
|
uni.showToast({
|
title: '单据内码获取失败,错误的单据内码!',
|
icon: 'none'
|
})
|
} else if (!this.hform.HBillNo) {
|
uni.showToast({
|
title: '单据号获取失败,错误的单据号!',
|
icon: 'none'
|
})
|
} else if (!this.Materlist || this.Materlist.length == 0) {
|
uni.showToast({
|
title: '没有扫码信息,请先扫描条码,确认无误后再提交!',
|
icon: 'none'
|
})
|
} else {
|
var s = 0;
|
for (var i = 0; i < this.Materlist.length; i++) {
|
if (this.Materlist[i].数量 > 0) {
|
s = 1;
|
}
|
}
|
if (s == 0) {
|
uni.showToast({
|
title: '没有扫描物料条码,请先扫描物料条码,确认无误后再提交!',
|
icon: 'none'
|
})
|
} else {
|
// uni.showLoading({
|
// title: '请稍候'
|
// })
|
var sMainStr = JSON.stringify(this.hform);
|
|
try {
|
let res = await CommonUtils.doRequest2Sync({
|
url: '/WEBSController/set_SaveMoveStockBill_Json',
|
method: 'POST',
|
data: {
|
oMain: sMainStr
|
},
|
})
|
if (!res) {
|
return
|
}
|
console.log(1, res);
|
uni.hideLoading()
|
if (res.data.count == 1) {
|
// let sMain = JSON.stringify(this.materMeta) + ';' + this.hform
|
// .HBillType + ';' + this.hform.HSourceBillNo
|
// 为条码设置出库单号和出库次数
|
// await this.Set_BarCodeBill(sMain)
|
uni.showModal({
|
title: '提示',
|
content: res.data.Message + '。是否继续新增?',
|
success: (res) => {
|
if (res.confirm) {
|
console.log('用户点击确定');
|
uni.redirectTo({
|
url: '/pages/zhijiediaobo/MoveStockBill?OperationType=1'
|
})
|
} else if (res.cancel) {
|
console.log('用户点击取消');
|
// setTimeout(() => {
|
// uni.navigateBack();
|
// }, 50)
|
}
|
}
|
});
|
} else {
|
uni.showToast({
|
title: res.data.Message,
|
icon: 'none'
|
})
|
}
|
} catch (err) {
|
console.warn(err);
|
uni.showToast({
|
title: '接口请求失败:' + err,
|
icon: 'none'
|
})
|
}
|
|
// uni.request({
|
// url: this.serverUrl + '/WEBSController/set_SaveMoveStockBill_Json',
|
// method: 'POST',
|
// dataType: "json",
|
// data: {
|
// oMain: sMainStr
|
// },
|
// success: (res) => {
|
// console.log(1, res);
|
// uni.hideLoading()
|
// if (res.data.count == 1) {
|
// uni.showModal({
|
// title: '提示',
|
// content: res.data.Message + '。是否继续新增?(点击取消返回上级页面)',
|
// success: (res) => {
|
// if (res.confirm) {
|
// console.log('用户点击确定');
|
// uni.redirectTo({
|
// url: '/pages/zhijiediaobo/MoveStockBill?OperationType=1'
|
// })
|
// } else if (res.cancel) {
|
// console.log('用户点击取消');
|
// // setTimeout(() => {
|
// // uni.navigateBack();
|
// // }, 500)
|
// }
|
// }
|
// });
|
// } else {
|
// uni.showToast({
|
// title: res.data.Message,
|
// icon: 'none'
|
// })
|
// }
|
// },
|
// fail: (res) => {
|
// console.log(res);
|
// uni.showToast({
|
// title: '接口请求失败',
|
// icon: 'none'
|
// })
|
// },
|
// });
|
}
|
}
|
},
|
|
goBack() {
|
uni.showModal({
|
title: '提示',
|
content: '确认要退出当前页面吗?',
|
success: (res) => {
|
if (res.confirm) {
|
console.log('用户点击确定');
|
uni.navigateBack({
|
url: '/pages/shengchanlingliaoshengdan/table'
|
})
|
} else if (res.cancel) {
|
console.log('用户点击取消');
|
}
|
}
|
});
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.form {
|
width: 668rpx;
|
margin: 20rpx auto;
|
padding-bottom: 240rpx;
|
}
|
|
.tab_area {
|
width: 100%;
|
height: 50rpx;
|
}
|
|
.other {
|
margin-top: 8rpx;
|
text-align: center;
|
font-size: 28rpx;
|
padding: 4rpx 18rpx;
|
color: #1890FF;
|
}
|
|
.tabs {
|
width: 100%;
|
display: flex;
|
border-bottom: 1px solid #ddd;
|
margin: 20rpx 0;
|
|
view {
|
width: 25%;
|
font-size: 30rpx;
|
color: #555;
|
text-align: center;
|
padding: 16rpx 0;
|
}
|
|
.on {
|
color: #3a78ff;
|
font-weight: bold;
|
border-bottom: 3px solid #3a78ff;
|
}
|
}
|
|
.form-item {
|
display: flex;
|
align-items: center;
|
font-size: 30rpx;
|
padding: 6rpx 0;
|
gap: 12rpx;
|
|
.title {
|
width: 208rpx;
|
flex-shrink: 0;
|
|
text {
|
color: red;
|
font-weight: bold;
|
}
|
}
|
|
.right {
|
// width: 450rpx;
|
flex: 1;
|
border-radius: 22rpx;
|
border: 1px solid #acacac;
|
position: relative;
|
display: flex;
|
|
|
picker {
|
width: 100%;
|
}
|
|
.uni-combox {
|
width: 100%;
|
}
|
}
|
|
.righton {
|
width: 450rpx;
|
border-radius: 22rpx;
|
border: 1px solid #e4e4e4;
|
background-color: #e4e4e4;
|
}
|
|
input {
|
width: 100%;
|
padding: 8rpx 20rpx;
|
font-size: 30rpx;
|
}
|
|
textarea {
|
width: 98%;
|
padding: 8rpx 20rpx;
|
font-size: 30rpx;
|
}
|
|
.icon-wrapper {
|
background-color: #3A78FF;
|
border-radius: 100%;
|
width: 52rpx;
|
height: 52rpx;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
flex-shrink: 0;
|
|
.uni-icons {
|
color: #fff !important;
|
}
|
}
|
|
.icon-wrapper[disabled] {
|
background-color: rgba(228, 228, 228, 1);
|
pointer-events: none;
|
touch-action: none;
|
}
|
}
|
|
.bottom-btn {
|
box-sizing: border-box;
|
width: 100%;
|
// height: 120rpx;
|
position: fixed;
|
bottom: 0;
|
left: 0;
|
background-color: #fff;
|
box-shadow: 0 2rpx 10rpx 2rpx rgba(0, 0, 0, 0.4);
|
padding: 30rpx 40rpx 40rpx 40rpx;
|
display: flex;
|
flex-direction: row;
|
gap: 10rpx;
|
|
button {
|
border-radius: 50rpx;
|
width: 180rpx;
|
height: 66rpx;
|
line-height: 66rpx;
|
font-size: 28rpx;
|
}
|
|
.btn-a {
|
background-color: #3A78FF;
|
color: #fff;
|
}
|
|
.btn-b {
|
background-color: #41a863;
|
color: #fff;
|
}
|
|
.btn-c {
|
background-color: #acacac;
|
color: #fff;
|
// position: absolute;
|
// right: 120rpx;
|
}
|
|
.btn-d {
|
background-color: #ff8901;
|
color: #fff;
|
}
|
}
|
|
.list {
|
width: 100%;
|
|
.card-detail {
|
width: 100%;
|
display: flex;
|
flex-wrap: wrap;
|
justify-content: space-between;
|
line-height: 120%;
|
|
.detail {
|
// width: 50%;
|
font-size: 26rpx;
|
margin-bottom: 12rpx;
|
color: #555;
|
margin-right: 20rpx;
|
|
text {
|
color: #999;
|
font-size: 26rpx;
|
}
|
}
|
}
|
|
.more {
|
color: #888;
|
font-size: 24rpx;
|
display: flex;
|
border-top: 1px solid #eee;
|
padding-top: 20rpx;
|
|
.part {
|
width: 50%;
|
text-align: center;
|
}
|
}
|
}
|
</style>
|