| | |
| | | <image src="../../../static/ic_ar@2x.png" class="img_ar" mode=""></image>
|
| | | </div>
|
| | | </div>
|
| | | <div class="bg_list_item" v-if="arrType && arrType.length > 0">
|
| | | <div class="bg_list_item" v-if="form.duration && arrType && arrType.length > 0">
|
| | | <div class="bg_list_item_top">
|
| | | <div class="bg_list_item_top_left">
|
| | | <div class="bg_list_item_top_left_x bg_m"></div>
|
| | |
| | | </view>
|
| | | </view>
|
| | | </u-popup>
|
| | | <u-popup :show="statistics" @close="statistics=false" :round="8" closeable zIndex="20000">
|
| | | <div class="tg">
|
| | | <div class="tg_header">请确认报工信息</div>
|
| | | <div class="tg_table">
|
| | | <div class="tg_table_header">
|
| | | <div class="tg_table_header_item">类型</div>
|
| | | <div class="tg_table_header_item">物料名称</div>
|
| | | <!-- <div class="tg_table_header_item">工装数量</div> -->
|
| | | <div class="tg_table_header_item">物料数量</div>
|
| | | </div>
|
| | | <div class="nr" v-if="statisticsData.length > 0">
|
| | | <div class="tg_table_nr" v-for="(item, index) in statisticsData" :key="index">
|
| | | <div class="tg_table_nr_item">{{ item.name }}</div>
|
| | | <div class="tg_table_nr_item">{{ item.materialName }}</div>
|
| | | <!-- <div class="tg_table_nr_item">{{item.gznum}}</div> -->
|
| | | <div class="tg_table_nr_item" :style="item.name === '工单未投料' ? 'color: #DE5243' : ''">
|
| | | {{ item.num }}
|
| | | </div>
|
| | | </div>
|
| | | </div>
|
| | | <div class="nr" v-else>
|
| | | <div class="tg_table_nr">
|
| | | <div class="tg_table_nr_item1">暂无数据</div>
|
| | | </div>
|
| | | </div>
|
| | | </div>
|
| | | <div class="tg_footer">
|
| | | <!-- proxy.$auth('h5:workorderoutput:confirm') && -->
|
| | | <button class="tg_footer_qr" @click="submitBG" v-if="isSubmit">确认报工</button>
|
| | | <div class="tg_footer_fh" @click="gofh" v-else-if="!isSubmit">返回修改</div>
|
| | | </div>
|
| | | </div>
|
| | | </u-popup>
|
| | | </view>
|
| | | </template>
|
| | |
|
| | |
| | | capacity: 10,
|
| | | page: 1,
|
| | | total: 0
|
| | | }
|
| | | },
|
| | | statisticsData: [],
|
| | | isSubmit: false,
|
| | | statistics: false
|
| | | };
|
| | | },
|
| | | onLoad(obj) {
|
| | |
| | | if (unitAttribute == 0 && num != '') {
|
| | | if (!REGULAR.positiveInteger.test(num)) {
|
| | | obj.num = obj.ynum
|
| | | Toast({
|
| | | message: '只能输入正整数'
|
| | | })
|
| | | uni.$u.toast('只能输入正整数')
|
| | | return
|
| | | }
|
| | | }
|
| | | if (unitAttribute == 1 && num != '') {
|
| | | if (!REGULAR.number.test(num)) {
|
| | | Toast({
|
| | | message: '只能输入正整数或小数(最多四位)'
|
| | | })
|
| | | uni.$u.toast('只能输入正整数或小数(最多四位)')
|
| | | obj.num = obj.ynum
|
| | | return
|
| | | }
|
| | | }
|
| | | if (num > maxNum) {
|
| | | obj.num = obj.ynum
|
| | | Toast.fail({
|
| | | message: '超出工装总数'
|
| | | })
|
| | | uni.$u.toast('超出工装总数')
|
| | | return
|
| | | }
|
| | | } else if (type === 'C' && num > info.value.planNum) {
|
| | | obj.num = obj.ynum
|
| | | Toast.fail({
|
| | | message: '产出数量不能超过计划数量'
|
| | | })
|
| | | uni.$u.toast('产出数量不能超过计划数量')
|
| | | return
|
| | | }
|
| | | // updateById({ id, num }).then(res => {
|
| | | // if (res.code === 200 && type === 'T') {
|
| | | // getOrocessRecords()
|
| | | // } else if (res.code === 200 && type === 'C') {
|
| | | // // getOrocessRecordCC()
|
| | | // }
|
| | | // })
|
| | | updateById({
|
| | | id,
|
| | | num
|
| | | })
|
| | | .then(res => {
|
| | | if (res.code === 200 && type === 'T') {
|
| | | this.getOrocessRecords()
|
| | | }
|
| | | })
|
| | | },
|
| | | changeCC(downType, num, recordId) {
|
| | | if (!num) return
|
| | | console.log(Number(this.produceFrom.qualified) + Number(this.produceFrom.undesirable))
|
| | | if ((Number(this.produceFrom.qualified) + Number(this.produceFrom.undesirable)) > this.info.planNum) {
|
| | | uni.showToast({
|
| | | title: '产出数量不能大于计划数量',
|
| | |
| | | this.form.index = index
|
| | | this.form.type = item.type
|
| | | },
|
| | | getGroupNum(arr) {
|
| | | let newArry = {};
|
| | | for (let i = 0; i < arr.length; i++) {
|
| | | if (newArry[arr[i].materialName]) {
|
| | | newArry[arr[i].materialName].push(arr[i])
|
| | | } else {
|
| | | newArry[arr[i].materialName] = [arr[i]]
|
| | | }
|
| | | }
|
| | | return newArry;
|
| | | },
|
| | | submit() {
|
| | | let res = this.getGroupNum(this.feedingData)
|
| | | if (this.info.bomType === 1) { // 拉式
|
| | | console.log('拉式')
|
| | | this.statisticsData = []
|
| | | if (this.produceFrom.qualified <= 0 && this.produceFrom.undesirable <= 0) {
|
| | | uni.$u.toast('产出明细不能为空')
|
| | | return
|
| | | }
|
| | | if (this.info.hasBom === 0) {
|
| | | console.log('无bom')
|
| | | let arr = []
|
| | | let tl = 0
|
| | | for (let i in res) {
|
| | | let num = 0
|
| | | res[i].forEach(item => {
|
| | | num += Number(item.num)
|
| | | })
|
| | | arr.push({
|
| | | name: '工单投料',
|
| | | materialName: i + res[i][0].procedureName,
|
| | | num: num
|
| | | })
|
| | | }
|
| | | this.feedingData.forEach(item => {
|
| | | tl += Number(item.num)
|
| | | })
|
| | | this.statisticsData = [...this.statisticsData, ...arr]
|
| | | this.statisticsData.push({
|
| | | name: '工单合格产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.qualified
|
| | | })
|
| | | this.infostatisticsData.push({
|
| | | name: '工单不良产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.undesirable
|
| | | })
|
| | | this.statisticsData.push({
|
| | | name: '工单未投料',
|
| | | materialName: '',
|
| | | num: this.info.planNum - Number(this.produceFrom.qualified) - Number(this.produceFrom
|
| | | .undesirable)
|
| | | })
|
| | | let total = this.info.planNum - (Number(this.produceFrom.qualified) + Number(this.produceFrom
|
| | | .undesirable))
|
| | | if (total === 0) {
|
| | | this.isSubmit = true
|
| | | } else {
|
| | | this.isSubmit = false
|
| | | }
|
| | | } else if (this.info.hasBom === 1) { // 有bom情况
|
| | | console.log('有bom')
|
| | | let arr = []
|
| | | let tl = 0
|
| | | // let res = getGroupNum(feedingData)
|
| | | for (let i in res) {
|
| | | let num = 0
|
| | | res[i].forEach(item => {
|
| | | num += Number(item.num)
|
| | | })
|
| | | arr.push({
|
| | | name: '工单投料',
|
| | | materialName: i,
|
| | | num: num
|
| | | })
|
| | | }
|
| | | this.feedingData.forEach(item => {
|
| | | tl += Number(item.num)
|
| | | })
|
| | | this.statisticsData = [...this.statisticsData, ...arr]
|
| | | this.statisticsData.push({
|
| | | name: '工单合格产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.qualified
|
| | | })
|
| | | this.statisticsData.push({
|
| | | name: '工单不良产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.undesirable
|
| | | })
|
| | | this.isSubmit = Number(this.produceFrom.qualified) + Number(this.produceFrom.undesirable) <= this
|
| | | .info.planNum;
|
| | | }
|
| | | } else {
|
| | | console.log('推式')
|
| | | if (this.feedingData.length === 0) {
|
| | | uni.$u.toast('投料明细不能为空')
|
| | |
|
| | | return
|
| | | }
|
| | | if (this.produceFrom.qualified <= 0 && this.produceFrom.undesirable <= 0) {
|
| | | uni.$u.toast('产出明细不能为空')
|
| | |
|
| | | return
|
| | | }
|
| | | this.statisticsData = []
|
| | | if (this.info.hasBom === 0) {
|
| | | console.log('无bom')
|
| | | let arr = []
|
| | | let tl = 0
|
| | | for (let i in res) {
|
| | | let num = 0
|
| | | res[i].forEach(item => {
|
| | | num += Number(item.num)
|
| | | })
|
| | | arr.push({
|
| | | name: '工单投料',
|
| | | materialName: i + '-' + res[i][0].procedureName,
|
| | | num: num
|
| | | })
|
| | | }
|
| | | this.feedingData.forEach(item => {
|
| | | tl += Number(item.num)
|
| | | })
|
| | | this.statisticsData = [...this.statisticsData, ...arr]
|
| | | this.statisticsData.push({
|
| | | name: '工单合格产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.qualified
|
| | | })
|
| | | this.statisticsData.push({
|
| | | name: '工单不良产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.undesirable
|
| | | })
|
| | | if (Number(tl) <= this.info.planNum) {
|
| | | let total = Number(tl) - Number(this.produceFrom.qualified) - Number(this.produceFrom
|
| | | .undesirable) // 是否有余
|
| | | this.statisticsData.push({
|
| | | name: '工单未投料',
|
| | | materialName: '',
|
| | | num: (Number(tl) - Number(this.produceFrom.qualified) - Number(this.produceFrom
|
| | | .undesirable))
|
| | | .toFixed(2)
|
| | | })
|
| | | if (total === 0) {
|
| | | this.isSubmit = true
|
| | | } else {
|
| | | this.isSubmit = false
|
| | | }
|
| | | } else {
|
| | | this.isSubmit = false
|
| | | }
|
| | | } else if (this.info.hasBom === 1) { // 有bom情况
|
| | | console.log('有bom')
|
| | | let arr = []
|
| | | let tl = 0
|
| | | for (let i in res) {
|
| | | let num = 0
|
| | | res[i].forEach(item => {
|
| | | num += Number(item.num)
|
| | | })
|
| | | arr.push({
|
| | | name: '工单投料',
|
| | | materialName: i,
|
| | | num: num
|
| | | })
|
| | | }
|
| | | this.feedingData.forEach(item => {
|
| | | tl += Number(item.num)
|
| | | })
|
| | | this.statisticsData = [...this.statisticsData, ...arr]
|
| | | this.statisticsData.push({
|
| | | name: '工单合格产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.qualified
|
| | | })
|
| | | this.statisticsData.push({
|
| | | name: '工单不良产出',
|
| | | materialName: this.info.mmodel.name + '-' + this.info.procedureName,
|
| | | num: this.produceFrom.undesirable
|
| | | })
|
| | | // isSubmit.value = produceFrom.qualified + produceFrom.undesirable <= info.value.planNum;
|
| | | this.isSubmit = true
|
| | | }
|
| | | }
|
| | | this.statistics = true
|
| | | },
|
| | | submitBG() {
|
| | | let createUnqualifiedDTOList = this.form.defective.map((item) => {
|
| | | return {
|
| | | categoryId: item.id,
|
| | |
| | | }
|
| | | })
|
| | | },
|
| | | // => {
|
| | | // // if (!from.duration || from.duration <= 0) {
|
| | | // // return Toast('报工时长不能为空')
|
| | | // // }
|
| | | // let createUnqualifiedDTOList = from.defective.map(item => {
|
| | | // return {
|
| | | // categoryId: item.id,
|
| | | // unQualifiedNum: item.num
|
| | | // }
|
| | | // })
|
| | | // let createWorkorderRecordDTO = {
|
| | | // workorderId: route.query.id,
|
| | | // duration: from.duration ? from.duration : 0,
|
| | | // qualifiedNum: produceFrom.qualified ? produceFrom.qualified : 0,
|
| | | // unQualifiedNum: produceFrom.undesirable ? produceFrom.undesirable : 0
|
| | | // }
|
| | | // // id: route.query.id
|
| | | // comfirmDoneStandard({
|
| | | // createUnqualifiedDTOList,
|
| | | // createWorkorderRecordDTO
|
| | | // }).then(res => {
|
| | | // if (res.code === 200) {
|
| | | // Toast.success({ message: '报工成功', forbidClick: true, duration: 2000 })
|
| | | // setTimeout(() => {
|
| | | // router.go(-2)
|
| | | // }, 2000)
|
| | | // }
|
| | | // })
|
| | | // }
|
| | |
|
| | | jumpdj() {
|
| | | uni.navigateTo({
|
| | | url: `/pages_adjust/pages/spotCheck/spotCheck?id=${this.workorderId}`
|
| | |
| | | content: '确定删除此条记录吗?',
|
| | | success: (res) => {
|
| | | if (res.confirm) {
|
| | | console.log('用户点击确定');
|
| | | deleteCT(id)
|
| | | .then(res => { |
| | | .then(res => {
|
| | | this.getOrocessRecords()
|
| | | // if (type === 'C') {
|
| | | // this.getOrocessRecordCC()
|
| | | // } else if (type === 'T') {
|
| | | // this.getOrocessRecords()
|
| | | // }
|
| | | }) |
| | | })
|
| | | .catch(err => {})
|
| | | }
|
| | | }
|
| | |
| | | width: 100%;
|
| | | padding: 30rpx 30rpx 60rpx 30rpx;
|
| | | box-sizing: border-box;
|
| | | z-index: 9999;
|
| | |
|
| | | .bg_footer_submit1 {
|
| | | width: 690rpx;
|
| | |
| | | .bl_list_item_right {
|
| | | flex: 1;
|
| | | height: 50rpx;
|
| | | text-align: right;
|
| | |
|
| | | text-align: right; |
| | | display: flex;
|
| | | justify-content: flex-end;
|
| | | input {
|
| | | padding-left: 5rpx;
|
| | | width: 160rpx;
|
| | |
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | .tg {
|
| | | width: 100%;
|
| | | height: 800rpx;
|
| | | padding: 30rpx;
|
| | | box-sizing: border-box;
|
| | |
|
| | | .tg_header {
|
| | | width: 100%;
|
| | | height: 45rpx;
|
| | | text-align: center;
|
| | | line-height: 45rpx;
|
| | | font-size: 30rpx;
|
| | | font-weight: 500;
|
| | | color: #222222;
|
| | | }
|
| | |
|
| | | .tg_table {
|
| | | width: 100%;
|
| | | margin-top: 40rpx;
|
| | |
|
| | | .tg_table_header {
|
| | | width: 100%;
|
| | | height: 72rpx;
|
| | | background: #EFF2FC;
|
| | | display: flex;
|
| | | align-items: center;
|
| | |
|
| | | .tg_table_header_item {
|
| | | flex: 1;
|
| | | font-size: 26rpx;
|
| | | font-weight: 500;
|
| | | color: #333333;
|
| | | display: flex;
|
| | | align-items: center;
|
| | | justify-content: center;
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | .nr {
|
| | | width: 100%;
|
| | | max-height: calc(100% - 133rpx);
|
| | | overflow-x: scroll;
|
| | |
|
| | | .tg_table_nr {
|
| | | width: 100%;
|
| | | padding: 24rpx 10rpx;
|
| | | box-sizing: border-box;
|
| | | display: flex;
|
| | | align-items: center;
|
| | | background: white;
|
| | | box-shadow: inset 0px -2rpx 0px 0px #E5E5E5;
|
| | |
|
| | | .tg_table_nr_item {
|
| | | flex: 1;
|
| | | font-size: 26rpx;
|
| | | font-weight: 500;
|
| | | color: #333333;
|
| | | display: flex;
|
| | | align-items: center;
|
| | | justify-content: center;
|
| | | }
|
| | |
|
| | | .tg_table_nr_item1 {
|
| | | flex: 1;
|
| | | font-size: 26rpx;
|
| | | font-weight: 500;
|
| | | color: #333333;
|
| | | display: flex;
|
| | | align-items: center;
|
| | | justify-content: center;
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | .tg_footer {
|
| | | width: calc(100% - 60rpx);
|
| | | position: fixed;
|
| | | bottom: 0;
|
| | | display: flex;
|
| | | justify-content: space-between;
|
| | | align-items: center;
|
| | | box-sizing: border-box;
|
| | | padding-bottom: 40rpx;
|
| | |
|
| | | .tg_footer_fh {
|
| | | width: 100%;
|
| | | height: 88rpx;
|
| | | display: flex;
|
| | | align-items: center;
|
| | | justify-content: center;
|
| | | background: rgba(66, 117, 252, 0.05);
|
| | | border-radius: 8rpx;
|
| | | border: 1rPX solid #4275FC;
|
| | | font-size: 32rpx;
|
| | | font-weight: 500;
|
| | | color: $nav-color;
|
| | | }
|
| | |
|
| | | .tg_footer_qr {
|
| | | width: 100%;
|
| | | height: 88rpx;
|
| | | border: none;
|
| | | display: flex;
|
| | | align-items: center;
|
| | | justify-content: center;
|
| | | background: $nav-color;
|
| | | border-radius: 8rpx;
|
| | | font-size: 32rpx;
|
| | | font-weight: 500;
|
| | | color: #FFFFFF;
|
| | | }
|
| | | }
|
| | | </style> |