pages/ZLGL/lailiaojianyan_fast/Kf_QCStockInCheckBill_Fast.vue
@@ -36,6 +36,9 @@ </view> <!-- 页签 物料清单 --> <view v-if="tabs == 1"> <view style="padding: 10rpx;"> <button class="btn-a" size="mini" @tap="switchModule">批量合格</button> </view> <view class="card-item-wrapper"> <view v-for="(item, index) in materialManifest" :key="index"> <uni-card :title="item.HSourceBillNo" @tap="toDetail(item, index)"> @@ -393,6 +396,13 @@ }; }, methods: { switchModule() { uni.redirectTo({ url: "/pages/ZLGL/lailiaojianyan_fast/Kf_QCStockInCheckBill_Fast2?" + `HInterID=${this.sourceBillInfo.HInterID}&HBillNo=${this.sourceBillInfo.HBillNo}` + `&HSourceBillNo=${this.sourceBillInfo.HSourceBillNo}&operationType=5` }) }, handleUploadCallback(res) { // 文件上传回调 console.log('file: ', res); let fileInfo = res.data[0] @@ -740,9 +750,26 @@ } } }, onLoad() { // 获取来料检验单最新单据号和单据内码 this.GetMaxNumPDA() onLoad(e) { let operationType = e.operationType if (!operationType) { // 获取来料检验单最新单据号和单据内码 this.GetMaxNumPDA() } else if (operationType == 5) { // 由批量页面进入 let { HInterID, HBillNo, HSourceBillNo } = e this.sourceBillInfo.HBillNo = HBillNo this.sourceBillInfo.HInterID = HInterID if (HSourceBillNo) { this.tabs = 1 this.sourceBillInfo.HSourceBillNo = HSourceBillNo this.getCode(HSourceBillNo) } } this.getHEmpInfo() } } @@ -947,6 +974,10 @@ flex-direction: row; justify-content: flex-start; gap: 6rpx; } .btn-a { background-color: #3A78FF; color: #fff; } </style> pages/ZLGL/lailiaojianyan_fast/Kf_QCStockInCheckBill_Fast2.vue
@@ -36,6 +36,9 @@ </view> <!-- 页签 物料清单 --> <view v-if="tabs == 1"> <view style="padding: 10rpx;"> <button class="btn-a" size="mini" @tap="switchModule">批量</button> </view> <view class="form-item-wrapper"> <view class="form-item"> <view class="title">质检员:</view> @@ -310,6 +313,13 @@ }; }, methods: { switchModule() { uni.redirectTo({ url: "/pages/ZLGL/lailiaojianyan_fast/Kf_QCStockInCheckBill_Fast?" + `HInterID=${this.sourceBillInfo.HInterID}&HBillNo=${this.sourceBillInfo.HBillNo}` + `&HSourceBillNo=${this.sourceBillInfo.HSourceBillNo}&operationType=5` }) }, selectMater(item, index) { if (typeof this.materialManifest[index].selected == 'undefined') { this.$set(this.materialManifest[index], 'selected', false) @@ -540,7 +550,7 @@ }, async cmdSubmit() { // 后端在单次上传文件提交后会删除本地文件,一次只能提交一个数据 // 检查是否选中物料 if (this.sourceBillInfo.HSourceInterID == 0) { CommonUtils.showTips({ title: '温馨提示', @@ -556,7 +566,8 @@ return } let HEntryIDStr = `${this.sourceBillInfo.HSourceEntryIDList.filter(item => item !== undefined && item !== null).join(',')}` let HEntryIDStr = `${this.sourceBillInfo.HSourceEntryIDList.filter(item => item !== undefined && item !== null).join(',')}` try { let res = await CommonUtils.doRequest2Sync({ @@ -591,7 +602,7 @@ } else if (res.cancel) { console.log('用户点击取消'); setTimeout(() => { uni.navigateBack(); uni.navigateBack(); }, 50) } } @@ -682,9 +693,28 @@ } } }, onLoad() { // 获取来料检验单最新单据号和单据内码 this.GetMaxNumPDA() onLoad(e) { let operationType = e.operationType if (!operationType) { // 获取来料检验单最新单据号和单据内码 this.GetMaxNumPDA() } else if (operationType == 5) { // 由批量页面进入 let { HInterID, HBillNo, HSourceBillNo } = e this.sourceBillInfo.HBillNo = HBillNo this.sourceBillInfo.HInterID = HInterID if (HSourceBillNo) { this.tabs = 1 this.sourceBillInfo.HSourceBillNo = HSourceBillNo this.getCode(HSourceBillNo) } } this.getHEmpInfo() } } @@ -900,4 +930,9 @@ background-color: #6dabfc !important; } .btn-a { background-color: #3A78FF; color: #fff; } </style> pages/caigoutuiliao/POStockInBackBill.vue
@@ -417,7 +417,7 @@ }, async onLoad(e) { uni.setNavigationBarTitle({ title: this.$t("POStockInBackBill_PDA.title") title: this.$t("POStockInBackBill_PDA.title") == 'POStockInBackBill_PDA.title' ? '生产入库单' : this.$t("POStockInBackBill_PDA.title") }) console.log(e, this.userInfo) this.OperationType = e.OperationType @@ -727,51 +727,55 @@ }, // 通过单据类型获取源单类型 async GetSourceBillType() { let res = await CommonUtils.doRequest2Async({ url: '/Web/GetHSourceBillTypeByBillType', data: { HBillType: this.hform.HBillType, Num: 2 } }) let { data, count, Message } = res.data if (count == 1) { console.log('data: ', data); this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { for(var j = 0; j < this.$t("POStockInBackBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("POStockInBackBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ console.log("当前的单据类型:", HSourceBillType_FY[1]); this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) this.arrayHMainSourceBillValue.push(e['HSourceBillType']) async GetSourceBillType() { let res = await CommonUtils.doRequest2Async({ url: '/Web/GetHSourceBillTypeByBillType', data: { HBillType: this.hform.HBillType, Num: 2 } }) let { data, count, Message } = res.data if (count == 1) { console.log('data: ', data); this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { if (this.$t("POStockInBackBill_PDA.select option").lenth > 0){ for(var j = 0; j < this.$t("POStockInBackBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("POStockInBackBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) } } } }) 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 }) } }, else{ 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 }) } }, //源单资料 getHYDList() { uni.request({ pages/caigoutuiliao/POStockInBackBillList.vue
@@ -155,7 +155,7 @@ components: { BarCodePopupVue }, onLoad() { uni.setNavigationBarTitle({ title: this.$t("POStockInBackBillList_PDA.title") title: this.$t("POStockInBackBillList_PDA.title") == 'POStockInBackBillList_PDA.title' ? '生产入库单' : this.$t("POStockInBackBillList_PDA.title") }) //用户模块权限判断 this.CheckModRight() pages/index/login.vue
@@ -114,8 +114,8 @@ "陈镐哲本地测试2": 'http://192.168.88.82:81/API/', "张瑞广本地测试": 'http://localhost:8082/API/', "余思杰本地测试": 'http://localhost:8082/LuBaoAPI/', "杨权鑫本地测试": 'http://192.168.0.36:8082/API/', "王仪本地测试": 'http://192.168.0.74:8080/API/', "杨权鑫本地测试": 'http://192.168.0.36:8082/API/', "王仪本地测试": 'http://192.168.0.74:8080/API/', // 小卫内外网 "苏州卫智科技-外网": 'http://221.224.60.42:8082/API_WW/', "苏州卫智科技-内网": 'http://172.16.20.233:8082/API_NW/', @@ -131,8 +131,8 @@ "宁波华舟包装": "http://61.164.64.222:8082/API_WW/", //余姚华远 "余姚华远": "http://192.168.3.248:82/HuaYuaAPI/", //天擎航天 "天擎航天": "http://space-engine.com.cn:81/API/", //天擎航天 "天擎航天": "http://space-engine.com.cn:81/API/", }, serverUrlName: uni.getStorageSync('serverUrlName') || '宁波华舟包装', pages/shengchanruku/ProductInCheckBill.vue
@@ -2,9 +2,9 @@ <view> <view class="form"> <view class="form-item"> <view class="title">条码:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.BarCode") == "ProductInCheckBill_PDA.BarCode" ? "条码" : $t("ProductInCheckBill_PDA.BarCode") }}:</view> <view class="right"> <input class="" :focus="barCodeFocus" v-model="hform.HBarCode" placeholder="请扫描(或输入)条码" <input class="" :focus="barCodeFocus" v-model="hform.HBarCode" :placeholder="placeholder_BarCode" @confirm="getCode(hform.HBarCode)" /> </view> <uni-icons type="scan" @@ -12,41 +12,41 @@ size="20" @click="toScanHBarCode()"></uni-icons> </view> <view class="form-item"> <view class="title">数量:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Qty") == "ProductInCheckBill_PDA.Qty" ? "数量" : $t("ProductInCheckBill_PDA.Qty") }}:</view> <view class="right"> <input v-model="hform.HQty" placeholder="请输入数量" /> <input v-model="hform.HQty" :placeholder="placeholder_Qty" /> </view> </view> <view class="form-item"> <view class="title">仓库:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Warehouse") == "ProductInCheckBill_PDA.Warehouse" ? "仓库" : $t("ProductInCheckBill_PDA.Warehouse") }}:</view> <view class="right"> <uni-combox :candidates="arrayHWHName" placeholder="请选择仓库" v-model="hform.HWHName" <uni-combox :candidates="arrayHWHName" :placeholder="placeholder_SCWarehouse" v-model="hform.HWHName" @input="HWHNameChange"></uni-combox> </view> </view> <view class="form-item"> <view class="title">仓位:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.StockPlace") == "ProductInCheckBill_PDA.StockPlace" ? "仓位" : $t("ProductInCheckBill_PDA.StockPlace") }}:</view> <view class="right" v-show="true"> <uni-combox :candidates="arrayHStockPlaceNameComputed" placeholder="请输入(或扫描)仓位" <uni-combox :candidates="arrayHStockPlaceNameComputed" :placeholder="placeholder_SCStockPlace" v-model="hform.HStockPlaceName" @input="HStockPlaceNameChange" @confirm="HStockPlaceNameScan"></uni-combox> </view> <view class="righton" v-show="false"><input v-model="hform.HStockPlaceName" placeholder="不可操作" <view class="righton" v-show="false"><input v-model="hform.HStockPlaceName" :placeholder="unOperate" :disabled="!showHStockPlaceName" /></view> </view> <view class="tabs"> <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 == 1 ? 'on':''" @tap="tabs = 1">{{ $t("ProductInCheckBill_PDA.tableInfo") == "ProductInCheckBill_PDA.tableInfo" ? "表头信息" : $t("ProductInCheckBill_PDA.tableInfo") }}</view> <view :class="tabs == 2 ? 'on':''" @tap="tabs = 2">{{ $t("ProductInCheckBill_PDA.materInfo") == "ProductInCheckBill_PDA.materInfo" ? "物料信息" : $t("ProductInCheckBill_PDA.materInfo") }}</view> <view :class="tabs == 3 ? 'on':''" @tap="tabs = 3">{{ $t("ProductInCheckBill_PDA.barInfo") == "ProductInCheckBill_PDA.barInfo" ? "条码信息" : $t("ProductInCheckBill_PDA.barInfo") }}</view> </view> <view v-if="tabs == 1"> <view class="form-item" v-show="showHBillNo"> <view class="title">单据号:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.BillNo") == "ProductInCheckBill_PDA.BillNo" ? "单据号" : $t("ProductInCheckBill_PDA.BillNo") }}:</view> <view class="right" style="width: 380rpx;"> <input :focus="HBillNoFocus" name="HBillNo" v-model="hform.HBillNo" placeholder="请扫描(或输入)条码" <input :focus="HBillNoFocus" name="HBillNo" v-model="hform.HBillNo" :placeholder="placeholder_BarCode" @confirm="GetMeesageByBillNo(hform.HBarCode)" /> </view> <uni-icons type="scan" @@ -54,31 +54,31 @@ size="20" @click="toScanCode"></uni-icons> </view> <view class="form-item" v-show="!showHBillNo"> <view class="title">单据号:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.BillNo") == "ProductInCheckBill_PDA.BillNo" ? "单据号" : $t("ProductInCheckBill_PDA.BillNo") }}:</view> <view class="righton"> <input name="HBillNo" disabled v-model="hform.HBillNo" /> </view> </view> <view class="form-item"> <view class="title">单据ID:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.BillID") == "ProductInCheckBill_PDA.BillID" ? "单据ID" : $t("ProductInCheckBill_PDA.BillID") }}:</view> <view class="righton"> <input name="HInterID" disabled v-model="hform.HInterID" /> </view> </view> <view class="form-item"> <view class="title">制单人:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Maker") == "ProductInCheckBill_PDA.Maker" ? "制单人" : $t("ProductInCheckBill_PDA.Maker") }}:</view> <view class="righton"> <input name="HMaker" disabled v-model="hform.HMaker" /> </view> </view> <view class="form-item"> <view class="title">组织:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.StockOrg") == "ProductInCheckBill_PDA.StockOrg" ? "组织" : $t("ProductInCheckBill_PDA.StockOrg") }}:</view> <view class="righton"> <input name="HStockOrgName" disabled v-model="hform.HStockOrgName" /> </view> </view> <label class="checkbox"> <checkbox :checked="hform.chkHBarflag" style="transform:scale(0.8)" disabled color="#4f81fc" />条码核对 <checkbox :checked="hform.chkHBarflag" style="transform:scale(0.8)" disabled color="#4f81fc" />{{ $t("ProductInCheckBill_PDA.Barcode_Check") == "ProductInCheckBill_PDA.Barcode_Check" ? "条码核对" : $t("ProductInCheckBill_PDA.Barcode_Check") }} </label> </view> <view v-if="tabs == 2"> @@ -86,95 +86,95 @@ <uni-card :title="item.物料名称" :extra="'数量:'+item.数量" style="margin: 10px;"> <view class="card-detail"> <view class="detail"> <text>单据数量:</text>{{item.单据数量}} <text>{{ $t("ProductInCheckBill_PDA.BillQty") == "ProductInCheckBill_PDA.BillQty" ? "单据数量" : $t("ProductInCheckBill_PDA.BillQty") }}:</text>{{item.单据数量}} </view> <view class="detail"> <text>物料代码:</text>{{item.物料代码}} <text>{{ $t("ProductInCheckBill_PDA.MaterCode") == "ProductInCheckBill_PDA.MaterCode" ? "物料代码" : $t("ProductInCheckBill_PDA.MaterCode") }}:</text>{{item.物料代码}} </view> <view class="detail" v-if="item.规格型号"> <text>规格型号:</text>{{item.规格型号}} <text>{{ $t("ProductInCheckBill_PDA.table_MaterModel") == "ProductInCheckBill_PDA.table_MaterModel" ? "规格型号" : $t("ProductInCheckBill_PDA.table_MaterModel") }}:</text>{{item.规格型号}} </view> <view class="detail"> <text>批号:</text>{{item.批号}} <text>{{ $t("ProductInCheckBill_PDA.BatchNo1") == "ProductInCheckBill_PDA.BatchNo1" ? "批号" : $t("ProductInCheckBill_PDA.BatchNo1") }}:</text>{{item.批号}} </view> <view class="detail" v-if="item.辅助属性"> <text>辅助属性:</text>{{item.辅助属性}} <text>{{ $t("ProductInCheckBill_PDA.table_Aux") == "ProductInCheckBill_PDA.table_Aux" ? "辅助属性" : $t("ProductInCheckBill_PDA.table_Aux") }}:</text>{{item.辅助属性}} </view> <view class="detail"> <text>仓库:</text>{{item.仓库}} <text>{{ $t("ProductInCheckBill_PDA.Warehouse") == "ProductInCheckBill_PDA.Warehouse" ? "仓库" : $t("ProductInCheckBill_PDA.Warehouse") }}:</text>{{item.仓库}} </view> <view class="detail"> <text>仓位:</text>{{item.仓位}} <text>{{ $t("ProductInCheckBill_PDA.StockPlace") == "ProductInCheckBill_PDA.StockPlace" ? "仓位" : $t("ProductInCheckBill_PDA.StockPlace") }}:</text>{{item.仓位}} </view> <view class="detail"> <text>生产日期:</text>{{item.生产日期}} <text>{{ $t("ProductInCheckBill_PDA.ProduceDate") == "ProductInCheckBill_PDA.ProduceDate" ? "生产日期" : $t("ProductInCheckBill_PDA.ProduceDate") }}:</text>{{item.生产日期}} </view> <view class="detail"> <text>有效期至:</text>{{item.有效期至}} <text>{{ $t("ProductInCheckBill_PDA.ValidDate") == "ProductInCheckBill_PDA.ValidDate" ? "有效期至" : $t("ProductInCheckBill_PDA.ValidDate") }}:</text>{{item.有效期至}} </view> <view class="detail"> <text>单据号:</text>{{item.单据号}} <text>{{ $t("ProductInCheckBill_PDA.BillNo") == "ProductInCheckBill_PDA.BillNo" ? "单据号" : $t("ProductInCheckBill_PDA.BillNo") }}:</text>{{item.单据号}} </view> <view class="detail"> <text>条码个数:</text>{{item.条码个数}} <text>{{ $t("ProductInCheckBill_PDA.table_BarNum") == "ProductInCheckBill_PDA.table_BarNum" ? "条码个数" : $t("ProductInCheckBill_PDA.table_BarNum") }}:</text>{{item.条码个数}} </view> </view> </uni-card> </view> <view class="over" v-if="Materlist.length == 0">暂无数据</view> <view class="over" v-if="Materlist.length == 0">{{ $t("ProductInCheckBill_PDA.noData") == "ProductInCheckBill_PDA.noData" ? "暂无数据" : $t("ProductInCheckBill_PDA.noData") }}</view> </view> <view v-if="tabs == 3"> <view class="form-item"> <view class="title">条码:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.BarCode") == "ProductInCheckBill_PDA.BarCode" ? "条码" : $t("ProductInCheckBill_PDA.BarCode") }}:</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="title">{{ $t("ProductInCheckBill_PDA.Material") == "ProductInCheckBill_PDA.Material" ? "物料" : $t("ProductInCheckBill_PDA.Material") }}:</view> <view class="righton"> <input disabled v-model="hform.HMaterName_B" /> </view> </view> <view class="form-item"> <view class="title">规格:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.MaterModel") == "ProductInCheckBill_PDA.MaterModel" ? "规格" : $t("ProductInCheckBill_PDA.MaterModel") }}:</view> <view class="righton"> <input disabled v-model="hform.HMaterModel_B" /> </view> </view> <view class="form-item"> <view class="title">批次:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.BatchNo") == "ProductInCheckBill_PDA.BatchNo" ? "批次" : $t("ProductInCheckBill_PDA.BatchNo") }}:</view> <view class="righton"> <input disabled v-model="hform.HBatchNo_B" /> </view> </view> <view class="form-item"> <view class="title">单位:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Unit") == "ProductInCheckBill_PDA.Unit" ? "单位" : $t("ProductInCheckBill_PDA.Unit") }}:</view> <view class="righton"> <input disabled v-model="hform.HUnitName_B" /> </view> </view> <view class="form-item"> <view class="title">数量:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Qty") == "ProductInCheckBill_PDA.Qty" ? "数量" : $t("ProductInCheckBill_PDA.Qty") }}:</view> <view class="righton"> <input disabled v-model="hform.HQty_B" /> </view> </view> <view class="form-item"> <view class="title">容量:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Capacity") == "ProductInCheckBill_PDA.Capacity" ? "容量" : $t("ProductInCheckBill_PDA.Capacity") }}:</view> <view class="righton"> <input disabled v-model="hform.HTMQty_B" /> </view> </view> <view class="form-item"> <view class="title">仓库:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.Warehouse") == "ProductInCheckBill_PDA.Warehouse" ? "仓库" : $t("ProductInCheckBill_PDA.Warehouse") }}:</view> <view class="righton"> <input disabled v-model="hform.HWHName_B" /> </view> </view> <view class="form-item"> <view class="title">仓位:</view> <view class="title">{{ $t("ProductInCheckBill_PDA.StockPlace") == "ProductInCheckBill_PDA.StockPlace" ? "仓位" : $t("ProductInCheckBill_PDA.StockPlace") }}:</view> <view class="righton"> <input disabled v-model="hform.HSPName_B" /> </view> @@ -182,10 +182,10 @@ </view> <view class="bottom-btn"> <button class="btn-a" size="mini" @tap="submit">提交</button> <button class="btn-a" size="mini" @tap="submit">{{ $t("ProductInCheckBill_PDA.btnSubmit") == "ProductInCheckBill_PDA.btnSubmit" ? "提交" : $t("ProductInCheckBill_PDA.btnSubmit") }}</button> <view style="flex: 1;"></view> <button class="btn-a" size="mini" @tap="addNew">新增</button> <button class="btn-c" size="mini" @tap="goBack">退出</button> <button class="btn-a" size="mini" @tap="addNew">{{ $t("ProductInCheckBill_PDA.btnAdd") == "ProductInCheckBill_PDA.btnAdd" ? "新增" : $t("ProductInCheckBill_PDA.btnAdd") }}</button> <button class="btn-c" size="mini" @tap="goBack">{{ $t("ProductInCheckBill_PDA.btnExit") == "ProductInCheckBill_PDA.btnExit" ? "退出" : $t("ProductInCheckBill_PDA.btnExit") }}</button> </view> </view> </view> @@ -249,7 +249,25 @@ HTMQty_B: '', HWHName_B: '', HSPName_B: '', } }, placeholder_BarCode:this.$t("ProductInCheckBill_PDA.placeholder_BarCode") == "ProductInCheckBill_PDA.placeholder_BarCode" ? "请扫描(或输入)条码" : this.$t("ProductInCheckBill_PDA.placeholder_BarCode"), placeholder_Qty:this.$t("ProductInCheckBill_PDA.placeholder_Qty") == "ProductInCheckBill_PDA.placeholder_Qty" ? "请输入数量" : this.$t("ProductInCheckBill_PDA.placeholder_Qty"), placeholder_DCWarehouse:this.$t("ProductInCheckBill_PDA.placeholder_DCWarehouse") == "ProductInCheckBill_PDA.placeholder_DCWarehouse" ? "请输入(或扫描)仓库" : this.$t("ProductInCheckBill_PDA.placeholder_DCWarehouse"), placeholder_DCStockPlace:this.$t("ProductInCheckBill_PDA.placeholder_DCStockPlace") == "ProductInCheckBill_PDA.placeholder_DCStockPlace" ? "请输入(或扫描)仓位" : this.$t("ProductInCheckBill_PDA.placeholder_DCStockPlace"), placeholder_SourceBillNo:this.$t("ProductInCheckBill_PDA.placeholder_SourceBillNo") == "ProductInCheckBill_PDA.placeholder_SourceBillNo" ? "请输入源单单号" : this.$t("ProductInCheckBill_PDA.placeholder_SourceBillNo"), placeholder_FIFOwarehouse:this.$t("ProductInCheckBill_PDA.placeholder_FIFOwarehouse") == "ProductInCheckBill_PDA.placeholder_FIFOwarehouse" ? "请选择" : this.$t("ProductInCheckBill_PDA.placeholder_FIFOwarehouse"), placeholder_OutboundType:this.$t("ProductInCheckBill_PDA.placeholder_OutboundType") == "ProductInCheckBill_PDA.placeholder_OutboundType" ? "请选择" : this.$t("ProductInCheckBill_PDA.placeholder_OutboundType"), placeholder_TransferDirection:this.$t("ProductInCheckBill_PDA.placeholder_TransferDirection") == "ProductInCheckBill_PDA.placeholder_TransferDirection" ? "请选择调拨方向" : this.$t("ProductInCheckBill_PDA.placeholder_TransferDirection"), placeholder_TransferType:this.$t("ProductInCheckBill_PDA.placeholder_TransferType") == "ProductInCheckBill_PDA.placeholder_TransferType" ? "请选择调拨类型" : this.$t("ProductInCheckBill_PDA.placeholder_TransferType"), placeholder_SCWarehouse:this.$t("ProductInCheckBill_PDA.placeholder_SCWarehouse") == "ProductInCheckBill_PDA.placeholder_SCWarehouse" ? "请选择调出仓库" : this.$t("ProductInCheckBill_PDA.placeholder_SCWarehouse"), placeholder_SCStockPlace:this.$t("ProductInCheckBill_PDA.placeholder_SCStockPlace") == "ProductInCheckBill_PDA.placeholder_SCStockPlace" ? "请选择调出仓位" : this.$t("ProductInCheckBill_PDA.placeholder_SCStockPlace"), placeholder_SecManager:this.$t("ProductInCheckBill_PDA.placeholder_SecManager") == "ProductInCheckBill_PDA.placeholder_SecManager" ? "请选择验收员" : this.$t("ProductInCheckBill_PDA.placeholder_SecManager"), placeholder_Keeper:this.$t("ProductInCheckBill_PDA.placeholder_Keeper") == "ProductInCheckBill_PDA.placeholder_Keeper" ? "请选择保管员" : this.$t("ProductInCheckBill_PDA.placeholder_Keeper"), placeholder_Dept:this.$t("ProductInCheckBill_PDA.placeholder_Dept") == "ProductInCheckBill_PDA.placeholder_Dept" ? "请选择部门" : this.$t("ProductInCheckBill_PDA.placeholder_Dept"), placeholder_Supplier:this.$t("ProductInCheckBill_PDA.placeholder_Supplier") == "ProductInCheckBill_PDA.placeholder_Supplier" ? "请选择供应商" : this.$t("ProductInCheckBill_PDA.placeholder_Supplier"), placeholder_Customer:this.$t("ProductInCheckBill_PDA.placeholder_Customer") == "ProductInCheckBill_PDA.placeholder_Customer" ? "请选择客户" : this.$t("ProductInCheckBill_PDA.placeholder_Customer"), unOperate:this.$t("ProductInCheckBill_PDA.unOperate") == "ProductInCheckBill_PDA.unOperate" ? "不可操作" : this.$t("ProductInCheckBill_PDA.unOperate") } }, computed: { @@ -262,7 +280,10 @@ } } }, onLoad(e) { async onLoad(e) { uni.setNavigationBarTitle({ title: this.$t("ProductInCheckBill_PDA.title") == 'ProductInCheckBill_PDA.title' ? '生产入库单校验' : this.$t("ProductInCheckBill_PDA.title") }) console.log(e, this.userInfo) this.OperationType = e.OperationType if (e.HBillNo) { @@ -272,6 +293,8 @@ this.refreshHBillState() } this.getHBaseList() await this.GetSourceBillType() }, methods: { // 获取仓位 @@ -429,6 +452,52 @@ } } }, // 通过单据类型获取源单类型 async GetSourceBillType() { let res = await CommonUtils.doRequest2Async({ url: '/Web/GetHSourceBillTypeByBillType', data: { HBillType: this.hform.HBillType, Num: 2 } }) let { data, count, Message } = res.data if (count == 1) { console.log('data: ', data); this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { for(var j = 0; j < this.$t("ProductInCheckBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("ProductInCheckBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) 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 }) } }, //选择仓位 HStockPlaceNameChange(e) { for (var i = 0; i < this.HStockPlaceNameList.length; i++) { pages/shengchanruku/ProductInCheckBillList.vue
@@ -1,27 +1,27 @@ <template> <view class="content"> <view class="tabs"> <view :class="tabs == 0 ? 'on':''" @tap="changeTab(0)">缓存列表</view> <view :class="tabs == 1 ? 'on':''" @tap="changeTab(1)">已上传列表</view> <view :class="tabs == 0 ? 'on':''" @tap="changeTab(0)">{{ $t("ProductInCheckBillList_PDA.cacheList") == "ProductInCheckBillList_PDA.cacheList" ? "缓存列表" : $t("ProductInCheckBillList_PDA.cacheList") }}</view> <view :class="tabs == 1 ? 'on':''" @tap="changeTab(1)">{{ $t("ProductInCheckBillList_PDA.updatedList") == "ProductInCheckBillList_PDA.updatedList" ? "已上传列表" : $t("ProductInCheckBillList_PDA.updatedList") }}</view> </view> <view style="width: 100%;height: 16rpx;background-color: #e5e5e5;"></view> <view class="form" v-if="tabs == 0"> <view class="buttons" @tap="add"> <uni-icons type="plus" style="margin-right: 10rpx;" size="22"></uni-icons>新增 <uni-icons type="plus" style="margin-right: 10rpx;" size="22"></uni-icons>{{ $t("ProductInCheckBillList_PDA.btnAdd") == "ProductInCheckBillList_PDA.btnAdd" ? "新增" : $t("ProductInCheckBillList_PDA.btnAdd") }} </view> </view> <view class="form" v-if="tabs == 1"> <view class="form-item"> <view class="title">单据号:</view> <view class="title">{{ $t("ProductInCheckBillList_PDA.billNo") == "ProductInCheckBillList_PDA.billNo" ? "单据号" : $t("ProductInCheckBillList_PDA.billNo") }}:</view> <view class="right"> <input v-model="hform.HBillNo" placeholder="请输入单据号" /> <input v-model="hform.HBillNo" :placeholder="billNoPlaceholder" /> </view> </view> <view class="buttons"> <button class="btn-a" size="mini" type="default" @tap="clear">重置</button> <button class="btn-c" size="mini" type="default" @tap="search">查询</button> <button class="btn-a" size="mini" type="default" @tap="clear">{{ $t("ProductInCheckBillList_PDA.btn_Reset") == "ProductInCheckBillList_PDA.btn_Reset" ? "重置" : $t("ProductInCheckBillList_PDA.btn_Reset") }}</button> <button class="btn-c" size="mini" type="default" @tap="search">{{ $t("ProductInCheckBillList_PDA.btn_Query") == "ProductInCheckBillList_PDA.btn_Query" ? "查询" : $t("ProductInCheckBillList_PDA.btn_Query") }}</button> </view> </view> @@ -31,19 +31,19 @@ <uni-card :title="item.制单日期.substr(0,10)" :extra="item.单据号" style="margin: 10px;" @tap="showDetail = showDetail==index?-1:index"> <view class="card-detail"> <view class="detail" v-if="item.制单人"> <text>制单人:</text>{{item.制单人}} <text>{{ $t("ProductInCheckBillList_PDA.table_Maker") == "ProductInCheckBillList_PDA.table_Maker" ? "制单人" : $t("ProductInCheckBillList_PDA.table_Maker") }}:</text>{{item.制单人}} </view> <view class="detail" v-if="item.组织"> <text>组织:</text>{{item.组织}} <text>{{ $t("ProductInCheckBillList_PDA.table_Org") == "ProductInCheckBillList_PDA.table_Org" ? "组织" : $t("ProductInCheckBillList_PDA.table_Org") }}:</text>{{item.组织}} </view> </view> <view class="more"> <view class="part" style="border-right: 1px solid #eee;color: #3a78ff;" @tap.stop="edit(item)"> <uni-icons type="compose" style="color: #3a78ff;margin-right: 10rpx;" size="18"></uni-icons>编辑 <uni-icons type="compose" style="color: #3a78ff;margin-right: 10rpx;" size="18"></uni-icons>{{ $t("ProductInCheckBillList_PDA.btn_Edit") == "ProductInCheckBillList_PDA.btn_Edit" ? "编辑" : $t("ProductInCheckBillList_PDA.btn_Edit") }} </view> <view class="part" style="color: #da0000;" @tap.stop="del(item)"> <uni-icons type="trash" style="color: #da0000;margin-right: 10rpx;" size="18"></uni-icons>删除 <uni-icons type="trash" style="color: #da0000;margin-right: 10rpx;" size="18"></uni-icons>{{ $t("ProductInCheckBillList_PDA.btn_Del") == "ProductInCheckBillList_PDA.btn_Del" ? "删除" : $t("ProductInCheckBillList_PDA.btn_Del") }} </view> </view> </uni-card> @@ -52,22 +52,22 @@ <uni-card :title="item.日期" :extra="item.单据号" style="margin: 10px;" @tap="showDetail = showDetail==index?-1:index"> <view class="card-detail"> <view class="detail" v-if="item.制单人"> <text>制单人:</text>{{item.制单人}} <text>{{ $t("ProductInCheckBillList_PDA.table_Maker") == "ProductInCheckBillList_PDA.table_Maker" ? "制单人" : $t("ProductInCheckBillList_PDA.table_Maker") }}:</text>{{item.制单人}} </view> <view class="detail" v-if="item.数量"> <text>数量:</text>{{item.数量}} <text>{{ $t("ProductInCheckBillList_PDA.table_Qty") == "ProductInCheckBillList_PDA.table_Qty" ? "数量" : $t("ProductInCheckBillList_PDA.table_Qty") }}:</text>{{item.数量}} </view> <view class="detail" v-if="item.物料代码"> <text>物料代码:</text>{{item.物料代码}} <text>{{ $t("ProductInCheckBillList_PDA.table_MaterNumber") == "ProductInCheckBillList_PDA.table_MaterNumber" ? "物料代码" : $t("ProductInCheckBillList_PDA.table_MaterNumber") }}:</text>{{item.物料代码}} </view> <view class="detail" v-if="item.物料名称"> <text>物料名称:</text>{{item.物料名称}} <text>{{ $t("ProductInCheckBillList_PDA.table_MaterName") == "ProductInCheckBillList_PDA.table_MaterName" ? "物料名称" : $t("ProductInCheckBillList_PDA.table_MaterName") }}:</text>{{item.物料名称}} </view> <view class="detail" v-if="item.规格型号"> <text>规格型号:</text>{{item.规格型号}} <text>{{ $t("ProductInCheckBillList_PDA.table_MaterModel") == "ProductInCheckBillList_PDA.table_MaterModel" ? "规格型号" : $t("ProductInCheckBillList_PDA.table_MaterModel") }}:</text>{{item.规格型号}} </view> <view class="detail" v-if="item.组织"> <text>组织:</text>{{item.组织}} <text>{{ $t("ProductInCheckBillList_PDA.table_Org") == "ProductInCheckBillList_PDA.table_Org" ? "组织" : $t("ProductInCheckBillList_PDA.table_Org") }}:</text>{{item.组织}} </view> </view> @@ -79,9 +79,9 @@ </uni-card> </view> <view class="over" v-if="!listData || listData.length == 0">暂无数据</view> <view class="over" v-if="listData.length != 0 && listData.length != showList.length">加载中...</view> <view class="over" v-if="listData.length != 0 && listData.length == showList.length">已到底</view> <view class="over" v-if="!listData || listData.length == 0">{{ $t("ProductInCheckBillList_PDA.noDate") == "ProductInCheckBillList_PDA.noDate" ? "暂无数据" : $t("ProductInCheckBillList_PDA.noDate") }}</view> <view class="over" v-if="listData.length != 0 && listData.length != showList.length">{{ $t("ProductInCheckBillList_PDA.Loading") == "ProductInCheckBillList_PDA.Loading" ? "加载中..." : $t("ProductInCheckBillList_PDA.Loading") }}</view> <view class="over" v-if="listData.length != 0 && listData.length == showList.length">{{ $t("ProductInCheckBillList_PDA.bottom") == "ProductInCheckBillList_PDA.bottom" ? "已到底" : $t("ProductInCheckBillList_PDA.bottom") }}</view> </view> </template> @@ -101,6 +101,7 @@ HMaker: uni.getStorageSync('HUserName'), HStockOrgID: uni.getStorageSync('OrganizationID'), }, billNoPlaceholder:this.$t("ProductInCheckBillList_PDA.billNoPlaceholder") == "ProductInCheckBillList_PDA.billNoPlaceholder" ? "请输入单据号" : this.$t("ProductInCheckBillList_PDA.billNoPlaceholder"), sWhere:'', listData:[], showList:[], @@ -110,6 +111,9 @@ } }, onLoad() { uni.setNavigationBarTitle({ title: this.$t("ProductInCheckBillList_PDA.title") == 'ProductInCheckBillList_PDA.title' ? '生产入库单校验列表' : this.$t("ProductInCheckBillList_PDA.title") }) //用户模块权限判断 this.CheckModRight() this.changeTab(0) pages/shengchantuiliao/MateOutBackBill.vue
@@ -443,7 +443,7 @@ }, async onLoad(e) { uni.setNavigationBarTitle({ title: this.$t("MateOutBackBill_PDA.title") title: this.$t("MateOutBackBill_PDA.title") == 'MateOutBackBill_PDA.title' ? '生产退料单' : this.$t("MateOutBackBill_PDA.title") }) console.log(e, this.userInfo) this.OperationType = e.OperationType @@ -460,6 +460,7 @@ this.getHSupList() this.getHEmpList() this.getHDeptList() await this.GetSourceBillType() // this.GetSourceBillType() this.getRelationStore() @@ -733,43 +734,56 @@ // this.getHYDList() }, // 通过单据类型获取源单类型 async GetSourceBillType() { CommonUtils.doRequest2({ let res = await CommonUtils.doRequest2Async({ 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']) }) } }) let { data, count, Message } = res.data if (count == 1) { console.log('data: ', data); this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { if (this.$t("MateOutBackBill_PDA.select option").lenth > 0){ for(var j = 0; j < this.$t("MateOutBackBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("MateOutBackBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) } } } else{ this.arrayHMainSourceBillType.push(e['HSourceBillTypeName']) } this.arrayHMainSourceBillValue.push(e['HSourceBillType']) }) this.arrayHMainSourceBillType.push('手工录入') this.arrayHMainSourceBillValue.push('-1') this.HMainSourceBillType = this.arrayHMainSourceBillType[0] this.hform.HMainSourceBillType = this.arrayHMainSourceBillValue[0] } else { uni.showToast({ icon: 'none', title: Message }) } 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 }) } }, //源单资料 getHYDList() { pages/shengchantuiliao/MateOutBackBillList.vue
@@ -129,7 +129,7 @@ HStockOrgID: uni.getStorageSync('OrganizationID'), }, billNoPlaceholder:this.$t("MoveStockBillList_PDA.billNoPlaceholder") == "MoveStockBillList_PDA.billNoPlaceholder" ? "请输入单据号" : this.$t("MoveStockBillList_PDA.billNoPlaceholder"), sourceBillNoPlaceholder:this.$t("MoveStockBillList.sourceBillNoPlaceholder") == "MoveStockBillList_PDA.sourceBillNoPlaceholder" ? "请输入源单编号" : this.$t("MoveStockBillList_PDA.sourceBillNoPlaceholder"), sourceBillNoPlaceholder:this.$t("MoveStockBillList_PDA.sourceBillNoPlaceholder") == "MoveStockBillList_PDA.sourceBillNoPlaceholder" ? "请输入源单编号" : this.$t("MoveStockBillList_PDA.sourceBillNoPlaceholder"), sWhere:'', listData:[], showList:[], @@ -140,7 +140,7 @@ }, onShow() { uni.setNavigationBarTitle({ title: this.$t("MateOutBackBillList_PDA.title") title: this.$t("MoveStockBillList_PDA.title") == 'MoveStockBillList_PDA.title' ? '生产入库单' : this.$t("MoveStockBillList_PDA.title") }) //用户模块权限判断 this.CheckModRight() pages/xiaoshouchuku/SellOutBill.vue
@@ -458,7 +458,7 @@ }, async onLoad(e) { uni.setNavigationBarTitle({ title: this.$t("SellOutBill_PDA.title") title: this.$t("SellOutBill_PDA.title") == 'SellOutBill_PDA.title' ? '销售出库单' : this.$t("SellOutBill_PDA.title") }) console.log(e, this.userInfo) this.OperationType = e.OperationType @@ -900,51 +900,56 @@ // } }, // 通过单据类型获取源单类型 async GetSourceBillType() { let res = await CommonUtils.doRequest2Async({ url: '/Web/GetHSourceBillTypeByBillType', data: { HBillType: this.hform.HBillType, Num: 2 } }) let { data, count, Message } = res.data if (count == 1) { console.log('data: ', data); this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { for(var j = 0; j < this.$t("SellOutBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("SellOutBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) this.arrayHMainSourceBillValue.push(e['HSourceBillType']) // 通过单据类型获取源单类型 async GetSourceBillType() { let res = await CommonUtils.doRequest2Async({ url: '/Web/GetHSourceBillTypeByBillType', data: { HBillType: this.hform.HBillType, Num: 2 } }) let { data, count, Message } = res.data if (count == 1) { console.log('data: ', data); this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { if (this.$t("SellOutBill_PDA.select option").lenth > 0){ for(var j = 0; j < this.$t("SellOutBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("SellOutBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) } } } }) 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 }) } }, else{ 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 }) } }, //选择源单 HSourceBillNoChange(e) { this.hform.HSourceBillNo = e pages/xiaoshouchuku/SellOutBillList.vue
@@ -139,7 +139,7 @@ }, onLoad() { uni.setNavigationBarTitle({ title: this.$t("SellOutBillList_PDA.title") title: this.$t("SellOutBillList_PDA.title") == 'SellOutBillList_PDA.title' ? '销售出库单列表' : this.$t("SellOutBillList_PDA.title") }) //用户模块权限判断 this.CheckModRight() pages/zhijiediaobo/MoveStockBill.vue
@@ -552,7 +552,7 @@ async onLoad(e) { uni.setNavigationBarTitle({ title: this.$t("MoveStockBill_PDA.title") title: this.$t("MoveStockBill_PDA.title") == 'MoveStockBill_PDA.title' ? '直接调拨单' : this.$t("MoveStockBill_PDA.title") }) console.log(e, this.userInfo) this.OperationType = e.OperationType @@ -1263,12 +1263,17 @@ this.arrayHMainSourceBillType = [] this.arrayHMainSourceBillValue = [] Array.from(data).forEach(e => { for(var j = 0; j < this.$t("MoveStockBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("MoveStockBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) if (this.$t("MoveStockBill_PDA.select option").lenth > 0){ for(var j = 0; j < this.$t("MoveStockBill_PDA.select option").length; j++){ let HSourceBillType_FY = this.$t("MoveStockBill_PDA.select option[" + j + "]").split("@"); if(e['HSourceBillType'] == HSourceBillType_FY[0]){ this.arrayHMainSourceBillType.push(HSourceBillType_FY[1]) } } } else{ this.arrayHMainSourceBillType.push(e['HSourceBillTypeName']) } this.arrayHMainSourceBillValue.push(e['HSourceBillType']) }) pages/zhijiediaobo/MoveStockBillList.vue
@@ -133,7 +133,7 @@ HStockOrgID: uni.getStorageSync('OrganizationID'), }, billNoPlaceholder:this.$t("MoveStockBillList_PDA.billNoPlaceholder") == "MoveStockBillList_PDA.billNoPlaceholder" ? "请输入单据号" : this.$t("MoveStockBillList_PDA.billNoPlaceholder"), sourceBillNoPlaceholder:this.$t("MoveStockBillList.sourceBillNoPlaceholder") == "MoveStockBillList_PDA.sourceBillNoPlaceholder" ? "请输入源单编号" : this.$t("MoveStockBillList_PDA.sourceBillNoPlaceholder"), sourceBillNoPlaceholder:this.$t("MoveStockBillList_PDA.sourceBillNoPlaceholder") == "MoveStockBillList_PDA.sourceBillNoPlaceholder" ? "请输入源单编号" : this.$t("MoveStockBillList_PDA.sourceBillNoPlaceholder"), sWhere: '', listData: [], showList: [], @@ -147,7 +147,7 @@ }, onShow() { uni.setNavigationBarTitle({ title: this.$t("MoveStockBillList_PDA.title") title: this.$t("MoveStockBillList_PDA.title") == 'MoveStockBillList_PDA.title' ? '直接调拨单列表' : this.$t("MoveStockBillList_PDA.title") }) //用户模块权限判断 this.CheckModRight()