123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <template>
- <dialog-base ref="baseDialog" title="周转申请">
- <view class="list-container">
- <view><text style="margin: 0 0 0 5rpx;">请选择周转类型</text></view>
- <view class="btn uni-row">
- <view v-for="(item,index) in turnoverType"
- :class="{ 'middle-btn': true, 'active': item.dictValue == curDayworkItem.turnoverType }"
- @click="selectTurnoverType(item)"><text class="label"
- style="font-size: 30rpx;">{{item.dictLabel}}</text></view>
- </view>
- <view class="" style="margin: 0 20rpx 20rpx 0;width: 88%;">
- <uni-section title="请选择下序工段" title-font-size="32rpx" style="margin: 0 0 0 -16rpx;"
- v-if="curDayworkItem.turnoverType == '1'">
- <uni-data-select disabled="true" v-model="curDayworkItem.deptId" :localdata="insideDepts"
- :clear="false"
- style="margin: 0 0 0 16rpx;outline: 2rpx solid #999999;border-radius: 10rpx;"></uni-data-select>
- </uni-section>
- <uni-section title="请选择下序工段" title-font-size="32rpx" style="margin: 0 0 0 -16rpx;"
- v-if="curDayworkItem.turnoverType == '2'">
- <uni-data-select v-model="curDayworkItem.deptId" :localdata="outsideDepts" :clear="false"
- style="margin: 0 0 0 16rpx;outline: 2rpx solid #999999;border-radius: 10rpx;"></uni-data-select>
- </uni-section>
- </view>
- <view class="list-title">
- <text class="label" style="margin: 0 0 0 -308rpx;">请选择您摆放位置</text>
- </view>
- <view class="turnArea uni-row" v-if="curDayworkItem.turnoverType == '1'">
- <view v-for="(item,index) in turnAreaList" class="btn">
- <view :class="{ 'middle-btn': true, 'active': handleTurnoverDoor(item) }"
- @click="selectTurnoverDoor(item)"><text class="label"
- style="font-size: 30rpx;">{{item.code}}</text></view>
- </view>
- </view>
- </view>
- <view class="add-btn-container uni-row">
- <button type="default" class="btn" @click="handleConfirm">确认</button>
- </view>
- </dialog-base>
- </template>
- <script setup>
- import {
- ref,
- getCurrentInstance
- } from 'vue'
- import {
- onLoad
- } from '@dcloudio/uni-app'
- import {
- getDictInfoByType
- } from '@/api/dict/dict.js'
- import {
- getTurnoverByWorkshop,
- getOutsourceTurnoverByWorkshop
- } from '@/api/business/workshop.js'
- import {
- getDayWorkItemList,
- turnoverInner,
- } from '@/api/business/dayWorkItem.js'
- import {
- getDeptListInfo
- } from '@/api/dept/dept.js'
- import {
- getTurnoverListByDeptId,
- } from '@/api/business/turnover.js'
- import {
- store
- } from '@/store/index.js'
- import {
- timestampToTime
- } from '@/utils/common.js'
- const baseDialog = ref(null)
- const turnoverDoorChecked = ref([])
- // 创建一个引用来存储最后一次请求的时间戳
- const lastRequestTimestamp = ref(0);
- const turnoverType = ref([])
- const outTurnArea = ref([])
- const turnoverArea = ref([])
- const normalStatus = ref(false)
- const selection = ref([])
- const curDayworkItem = ref({
- turnoverType: 1
- })
- const dayworkInfo = ref(null)
- const deptList = ref([]) // 工段列表
- const insideDepts = ref([]) // 车间内工段
- const outsideDepts = ref([]) // 车间外工段
- const turnAreaList = ref([]) // 周转区列表
- const emit = defineEmits(['reflushDaywork']) // 自定义调用父组件方法
- onLoad(() => {
- })
- function open(data) {
- resetPage();
- dayworkInfo.value = data;
- normalStatus.value = false
- init();
- baseDialog.value.open();
- }
- defineExpose({
- open
- })
- function close() {
- baseDialog.value.close()
- turnAreaList.value = [];
- }
- function resetPage() {
- turnoverDoorChecked.value = []
- turnoverType.value = []
- turnoverArea.value = []
- selection.value = []
- curDayworkItem.value = {
- turnoverType: 1,
- deptId: store.curDeptDetails.deptId,
- deptName: store.curDeptDetails.deptName
- }
- deptList.value = []
- insideDepts.value = []
- outsideDepts.value = []
- turnAreaList.value = []
- }
- function init() {
- console.log(dayworkInfo.value)
- turnoverType.value = [{
- dictValue: "1",
- dictLabel: "车间内"
- }];
- getDayWorkItemList({
- dayworkId: dayworkInfo.value.id,
- userId: store.userInfo.userId,
- lotId: dayworkInfo.value.lotId,
- isWasteRecycling: dayworkInfo.value.isWasteRecycling,
- isAmend: dayworkInfo.value.isAmend,
- processStepNumber: dayworkInfo.value.currentProcess.processStepNumber
- }).then(res => {
- curDayworkItem.value = {
- ...res.rows[0],
- turnoverType: 1,
- deptId: store.curDeptDetails.deptId,
- deptName: store.curDeptDetails.deptName
- };
- })
- deptList.value = store.curDeptDetails;
- console.log(deptList.value)
- insideDepts.value.push({
- text: deptList.value.deptName,
- value: deptList.value.deptId,
- })
- if (store.curDeptDetails.isSortPackaging == 1) {
- normalStatus.value = true
- } else {
- normalStatus.value = false
- }
- getTurnoverListByDeptId({
- deptId: curDayworkItem.value.deptId,
- }).then(res => {
- console.log("999")
- for (var i = 0; i < res.data.length; i++) {
- if (res.data[i].status != 1) {
- turnAreaList.value[i] = res.data[i];
- }
- }
- })
- curDayworkItem.value = {
- turnoverType: 1,
- deptId: store.curDeptDetails.deptId,
- deptName: store.curDeptDetails.deptName
- }
- }
- function selectTurnoverType(item) {
- curDayworkItem.value.deptId = null
- curDayworkItem.value.turnoverType = item.dictValue;
- selection.value = []
- normalStatus.value = false
- curDayworkItem.value.isNextPacking = false
- }
- function selectTurnoverDoor(item) {
- console.log(item, "chejiannei")
- // turnoverDoorChecked.value = item;
- // curDayworkItem.value.turnoverArea = item.dictValue;
- let index = selection.value.findIndex(selectedItem => selectedItem === item);
- if (index > -1) {
- selection.value.splice(index, 1);
- } else {
- selection.value.push(item);
- }
- }
- function handleTurnoverDoor(item) {
- return selection.value.includes(item);
- }
- //校验车间内车间外
- function handleValidate(data) {
- console.log(data)
- if (data.turnoverArea == "" || data.deptId == null || (turnAreaList.value.length != 0 && selection.value.length ==
- 0)) {
- console.log("999")
- return false;
- } else {
- console.log("888")
- return true;
- }
- }
- function handleConfirm() {
- const currentTime = Date.now();
- // 检查是否已经过去了 2 秒
- if (currentTime - lastRequestTimestamp.value < 2000) {
- // 如果在 2 秒 内已经有请求发出,那么不执行
- uni.showToast({
- icon: 'none',
- title: `请勿重复点击`,
- duration: 2000
- })
- return;
- }
- lastRequestTimestamp.value = currentTime;
- console.log(dayworkInfo.value)
- curDayworkItem.value.id = null;
- curDayworkItem.value.status = '4';
- curDayworkItem.value.processStepNumber = dayworkInfo.value.currentProcess.processStepNumber
- curDayworkItem.value.startTime = timestampToTime(new Date());
- curDayworkItem.value.endTime = timestampToTime(new Date());
- curDayworkItem.value.technologicalProcessId = dayworkInfo.value.technologicalProcessId;
- curDayworkItem.value.dayworkId = dayworkInfo.value.id;
- curDayworkItem.value.productionPlanDetailId = dayworkInfo.value.productionPlanDetailId;
- if (!store.tenantId) {
- curDayworkItem.value.tenantId = store.userInfo.tenantId;
- } else {
- curDayworkItem.value.tenantId = store.tenantId;
- }
- // 过滤出周转位置的数组,并转换成字符串
- if (selection.value.length > 0) {
- const newArray = selection.value.map((item) => {
- if (item.code) {
- return item.code;
- } else if (item.dictLabel) {
- return item.dictLabel;
- } else {
- return null;
- }
- })
- const newIdArray = selection.value.map((item) => {
- if (item.id) {
- return item.id;
- } else {
- return null;
- }
- })
- curDayworkItem.value.place = newArray.join('、');
- //0628将位置id也拼接的方式存下来
- curDayworkItem.value.placeId = newIdArray.join('、');
- }
- curDayworkItem.value.turnoverArea = "车间内周转看place字段";
- // console.log(dayworkInfo.value)
- if (!handleValidate(curDayworkItem.value)) {
- uni.showToast({
- icon: "none",
- title: '请选择完整信息'
- });
- } else {
- curDayworkItem.value.isNextPacking = false
- if (normalStatus.value) {
- curDayworkItem.value.isNextPacking = true
- }
- close();
- turnoverInner(curDayworkItem.value).then(res => {
- if (res.code === 200) {
- uni.showToast({
- icon: 'success',
- title: '操作成功'
- });
- emit('reflushDaywork');
- } else {
- console.log("999")
- console.log(res.msg)
- uni.showToast({
- icon: 'none',
- title: res.msg,
- duration: 2000
- });
- setTimeout(() => {
- emit('reflushDaywork')
- }, 1000);
- }
- })
- }
- }
- </script>
- <style lang="scss">
- .dialog-body {
- .list-container {
- width: 100%;
- .list-title {
- margin-top: 24rpx;
- .label {
- font-size: 32rpx;
- }
- }
- .turnArea {
- flex-wrap: wrap;
- height: auto;
- max-height: 200rpx;
- overflow: auto;
- }
- .btn {
- margin-top: 24rpx;
- .middle-btn {
- margin-right: 32rpx;
- align-items: center;
- justify-content: center;
- padding-left: 0;
- height: 80rpx;
- width: 220rpx;
- border-radius: 8rpx;
- background-color: #FFFFFF;
- border: 1px solid #999999;
- background-color: #FFFFFF;
- }
- .label {
- font-size: 24rpx;
- color: #000000;
- }
- .active {
- border-color: #1684fc;
- background-color: rgb(236, 245, 255);
- .label {
- color: #1684fc;
- }
- }
- }
- }
- .add-btn-container {
- margin-top: 32rpx;
- .btn {
- flex: 1;
- background-color: rgb(255, 121, 1);
- color: #FFFFFF;
- }
- }
- }
- </style>
|