zss
2023-11-24 aae958d472f1880c5069c0870cfdfa4358168c22
src/views/warehouse/pallettransports/ifslocation-form.vue
@@ -92,7 +92,7 @@
  </el-dialog>
</template>
<script>
import { getIfsLocationByGroup } from '@/api/warehouse/location'
import { getIfsLocationByGroupCopyAll } from '@/api/warehouse/location'
import { updateBatchPalletTransportsMaterial } from '@/api/warehouse/pallettransports'
export default {
  components: {},
@@ -113,8 +113,8 @@
      innerVisible: false,
      isSubmit: false,
      dataForm: {
        locationNo: null,
        locationDesc: null
        locationNo: '',
        locationDesc: ''
      },
      ifsLocationData: [],
      currLocationRow: null
@@ -124,12 +124,12 @@
    // 查询ifs库位列表
    queryLocation() {
      this.ifsLocationData = []
      getIfsLocationByGroup({
      getIfsLocationByGroupCopyAll({
        locationNo: this.dataForm.locationNo,
        locationDesc: this.dataForm.locationDesc
      }).then((response) => {
        if (response.data.code === 0) {
          const _data = response.data.data
          const _data = response.data.data.LIST_INFO
          this.ifsLocationData = _data.map((item, index) => {
            return {
              id: index + 1,
@@ -165,6 +165,7 @@
    saveSelectRow() {
      this.isSubmit = true
      const transportsMaterials = []
      console.log(`output->this.transportsList`,this.transportsList)
      this.transportsList.forEach((item) => {
        transportsMaterials.push({
          id: item.id,