| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- <template>
- <view class="content-box">
- <uni-nav-bar fixed="true" statusBar="true" left-icon="back" :title="title" background-color="#F7F9FA"
- color="#000" @clickLeft="back" right-icon="scan" @clickRight="handlScanCode"></uni-nav-bar>
- <view class="list_box">
- <u-list @scrolltolower="scrolltolower">
- <view v-for="(item,index) in List" :key="index" class="card_box">
- <workOrderBom :item='item' @handleScan='handleScan'></workOrderBom>
- <paramBom v-if='item.paramDetailList.length != 0' :list='item.paramDetailList'></paramBom>
- <deviceBom v-if='item.equipmentList.length != 0' :workOrderId='item.workOrderId'
- :list='item.equipmentList' @scanIt='scanIt'></deviceBom>
- <modelBom v-if='item.modelList.length != 0' :workOrderId='item.workOrderId' :list='item.modelList'
- @scanIt='scanIt'>
- </modelBom>
- <instanceBom v-if='item.instanceList.length != 0' :workOrderId='item.workOrderId'
- :list='item.instanceList'></instanceBom>
- <turnoverBom v-if='item.turnover.length != 0' :list='item.turnover' :wordItem='item' pattern='feed'
- @handleScan='handleScan' @handleDel='handleDel'></turnoverBom>
- <aridRegion v-if='item.aridRegionList.length != 0' :list='item.aridRegionList'
- @handleScan='handleScan'></aridRegion>
- <packingBom v-if='item.packingList.length != 0' :list='item.packingList'></packingBom>
- <view class="operate_box rx-sc">
- <u-button size="small" class="u-reset-button" type="success"
- @click="handOutbound(item.workOrderId)">出库单</u-button>
- <u-button size="small" class="u-reset-button" type="success"
- @click="handAdd(item.workOrderId)">手动添加</u-button>
- <u-button size="small" class="u-reset-button" type="success"
- @click="scanIt(item.workOrderId)">扫一扫</u-button>
- </view>
- </view>
- </u-list>
- </view>
- <view class="bottom-wrapper">
- <view class="btn_box" @click="save">一键报工</view>
- </view>
- </view>
- </template>
- <script>
- import workOrderBom from './components/workOrderBom.vue'
- import deviceBom from './components/deviceBom.vue'
- import modelBom from './components/modelBom.vue'
- import instanceBom from './components/instanceBom.vue'
- import aridRegion from './components/aridRegion'
- import paramBom from './components/paramBom.vue'
- import turnoverBom from '../jobBooking/components/turnoverBom.vue'
- import packingBom from './components/packingBom.vue'
- import {
- workorderList,
- getByCode,
- scanLedger,
- } from '@/api/pda/workOrder.js'
- import {
- batchSave
- } from '@/api/pda/feeding.js'
- export default {
- components: {
- workOrderBom,
- deviceBom,
- modelBom,
- instanceBom,
- aridRegion,
- paramBom,
- turnoverBom,
- packingBom
- },
- data() {
- return {
- title: '',
- idsList: [],
- List: [],
- taskId: null
- }
- },
- onLoad(options) {
- this.title = options.taskName ? options.taskName + '-投料' : '投料'
- let queryArray = decodeURIComponent(options.arr);
- this.idsList = JSON.parse(queryArray);
- this.taskId = options.taskId
- this.taskName = options.taskName
- this.getList()
- },
- onShow() {
- uni.$off("setSelectList");
- uni.$on("setSelectList", (selectList, id) => {
- this.List.forEach(m => {
- if (m.workOrderId == id) {
- let modelList = [] // 模具
- let instanceList = [] // 投料
- let aridRegionList = [] // 干燥区
- let equipmentList = [] // 生产设备
- selectList.forEach(f => {
- if (f.rootCategoryLevelId == 4) {
- equipmentList = equipmentList.concat(f)
- }
- if (f.rootCategoryLevelId == 5) {
- modelList = modelList.concat(f)
- } else if (f.rootCategoryLevelId == 1) {
- instanceList = instanceList.concat(f)
- } else if (f.rootCategoryLevelId == 11) {
- aridRegionList = aridRegionList.concat(f)
- }
- })
- this.$set(m, 'modelList', modelList)
- this.$set(m, 'instanceList', instanceList)
- this.$set(m, 'aridRegionList', aridRegionList)
- this.$set(m, 'equipmentList', equipmentList)
- }
- })
- });
- },
- methods: {
- scrolltolower() {},
- save() {
- batchSave(this.List).then(res => {
- uni.navigateTo({
- url: `/pages/pda/feeding/index/index?feedStatus=1`,
- });
- })
- },
- getList() {
- workorderList({
- ids: this.idsList,
- taskId: this.taskId
- }).then(res => {
- this.List = res.map(m => {
- m.workOrderId = m.id
- m.instanceList = [] // 物料
- m.equipmentList = [] // 设备
- m.modelList = [] // 模具
- m.aridRegionList = [] // 干燥区
- m.packingList = [] // 包装
- if (m.pickOutInList.length > 0) {
- m.pickOutInList.forEach(f => {
- if (f.rootCategoryLevelId == 1) {
- m.instanceList.push(f)
- } else if (f.rootCategoryLevelId == 4) {
- m.modelList.push(f)
- } else if (f.rootCategoryLevelId == 5) {
- m.modelList.push(f)
- } else if (f.rootCategoryLevelId == 11) {
- m.aridRegionList.push(f)
- } else if (f.rootCategoryLevelId == 13) {
- m.packingList.push(f)
- }
- })
- }
- // 处理字段
- m.quality == '' ? m.quality = {} : ''
- delete m.id
- if (this.taskId) {
- m.taskId = this.taskId
- m.taskName = this.taskName
- }
- return {
- ...m
- }
- })
- })
- },
- handleScan(id, type) {
- console.log(id)
- console.log(type)
- // this.scanData('SCJHGD20240117002', type, id)
- // return false
- let _this = this
- uni.scanCode({
- success: function(res) {
- _this.scanData(res.result, type, id)
- }
- })
- },
- scanData(result, type, id) {
- if (type == 'wordOrder') {
- let isFals = this.List.some(m => m.code == result)
- if (isFals) {
- uni.showToast({
- title: '工单已存在',
- icon: 'none'
- })
- return false
- }
- getByCode(result).then(res => {
- let _arr = this.List
- _arr.forEach((e, index) => {
- if (e.workOrderId == id && res) {
- _arr[index] = res
- }
- })
- this.List = _arr
- this.$forceUpdate()
- })
- }
- },
- scanIt(id) {
- console.log(id)
- let _this = this
- uni.scanCode({
- success: function(res) {
- _this.scanItData(res.result, id)
- console.log(res.result, id)
- }
- })
- },
- scanItData(result, id) {
- scanLedger(result).then(res => {
- console.log(res)
- let _arr = []
- if (res.length == 1 && res[0].rootCategoryLevelId == 4) { // 设备
- _arr = this.List
- _arr.forEach((e, index) => {
- if (e.workOrderId == id) {
- _arr[index].equipmentList = res
- }
- })
- this.List = _arr
- this.$forceUpdate()
- } else if (res.length >= 1 && res[0].rootCategoryLevelId == 5) { // 模具
- _arr = this.List
- _arr.forEach((e, index) => {
- if (e.workOrderId == id) {
- _arr[index].modelList = res
- }
- })
- this.List = _arr
- this.$forceUpdate()
- } else if (res.length >= 1 && ['1'].includes(res[0].rootCategoryLevelId)) { // 物料
- _arr = this.List
- _arr.forEach((e, index) => {
- if (e.workOrderId == id) {
- _arr[index].instanceList = _arr[index].instanceList.concat(res)
- }
- })
- this.List = _arr
- this.$forceUpdate()
- } else if (res.length >= 1 && res[0].rootCategoryLevelId == 11) { // 干燥区
- _arr = this.List
- _arr.forEach((e, index) => {
- if (e.workOrderId == id) {
- let isFals = _arr[index].aridRegionList.some(m => m.code == res[0]
- .aridRegionList[0].code)
- if (isFals) {
- uni.showToast({
- title: '干燥区已存在',
- icon: 'none'
- })
- return false
- }
- let _obj = res[0].aridRegionList[0]
- if (_obj.status == 0) {
- _obj['name'] = res[0].name
- _obj['region'] = res[0].extInfo.region
- _arr[index].aridRegionList = _arr[index].aridRegionList.concat(res[0]
- .aridRegionList)
- } else {
- uni.showToast({
- title: '干燥区已占用',
- icon: 'none'
- })
- }
- }
- })
- this.List = _arr
- this.$forceUpdate()
- } else if (res.length >= 1 && res[0].rootCategoryLevelId == 7) { // 周转车
- let isFals = _arr[index].turnover.some(m => m.code == res[0].code)
- if (isFals) {
- uni.showToast({
- title: '周转车已存在',
- icon: 'none'
- })
- return false
- }
- }
- })
- },
- // 全部扫一扫
- handlScanCode() {
- let _this = this
- uni.scanCode({
- success: function(res) {
- _this.scanItAllData(res.result)
- }
- })
- },
- scanItAllData(result) {
- scanLedger(result).then(res => {
- let _arr = []
- if (res.length == 1 && res[0].rootCategoryLevelId == 4) { // 设备
- _arr = this.List
- _arr.forEach((e, index) => {
- res['extInfo'].fixCode = res.fixCode
- e.equipmentList = res
- })
- this.List = _arr
- this.$forceUpdate()
- } else if (res.length >= 1 && res[0].rootCategoryLevelId == 5) { // 模具
- _arr = this.List
- _arr.forEach((e, index) => {
- e.modelList = res
- })
- this.List = _arr
- this.$forceUpdate()
- } else if (res.length >= 1 && ['1'].includes(res[0].rootCategoryLevelId)) {
- _arr = this.List
- _arr.forEach((e, index) => {
- e.instanceList = e.instanceList.concat(res)
- })
- this.List = _arr
- this.$forceUpdate()
- }
- })
- },
- handAdd(id) {
- const storageKey = Date.now() + "";
- uni.setStorageSync(storageKey, this.List || []);
- uni.navigateTo({
- url: `/pages/pda/workOrder/search/index?id=${id}&storageKey=${storageKey}&isType=feed&taskId=${this.taskId}`
- })
- },
- handOutbound(id) {
- const storageKey = Date.now() + "";
- uni.setStorageSync(storageKey, this.List || []);
- uni.navigateTo({
- url: `/pages/pda/feeding/outbound/index?id=${id}&storageKey=${storageKey}taskId=${this.taskId}`
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content-box {
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- }
- .list_box {
- flex: 1;
- overflow: hidden;
- padding: 4rpx 0;
- .u-list {
- height: 100% !important;
- }
- .card_box {
- padding: 16rpx 24rpx;
- }
- }
- .bottom-wrapper {
- .btn_box {
- width: 750rpx;
- height: 88rpx;
- line-height: 88rpx;
- background: $theme-color;
- text-align: center;
- font-size: 36rpx;
- font-style: normal;
- font-weight: 400;
- color: #fff;
- }
- }
- .operate_box {
- padding: 10rpx 80rpx;
- /deep/ .u-button {
- width: 160rpx;
- }
- }
- </style>
|