index.vue 48.9 KB
Newer Older
1 2 3 4
<template>
  <div class="app-container">
    <!-- 搜索工作栏 -->
    <el-card>
我在何方's avatar
我在何方 committed
5
        <div slot="header" class="card-title">{{$t('拆单申请')}}-{{orderData.orderNo||''}}</div>
6
        <div class="btn-header">
我在何方's avatar
我在何方 committed
7
          <span class="card-title">{{$t('原单信息')}}</span>
8 9
        </div>
        <el-descriptions :column="4">
我在何方's avatar
我在何方 committed
10 11
            <el-descriptions-item :label="$t('唛头')">
                {{orderData.marks?orderData.marks:$t('')}}
12
            </el-descriptions-item>
我在何方's avatar
我在何方 committed
13
            <el-descriptions-item :label="$t('已到箱数/总箱数')">
我在何方's avatar
我在何方 committed
14
                <span>{{orderData.sumNum||0}}/{{orderData.costVO?orderData.costVO.totalNum:0}}</span>
15
            </el-descriptions-item>
我在何方's avatar
我在何方 committed
16
            <el-descriptions-item :label="$t('订单状态')">
我在何方's avatar
我在何方 committed
17
              <!-- <dict-tag :type="DICT_TYPE.ORDER_STATUS" :value="orderData.status" /> -->
我在何方's avatar
我在何方 committed
18
              {{orderData.abnormalState!=0?$t('异常'):$t('正常')}}
19
            </el-descriptions-item>
我在何方's avatar
我在何方 committed
20 21
            <el-descriptions-item :label="$t('送货日期')">
              {{orderData.deliveryDate||$t('')}}
22
            </el-descriptions-item>
我在何方's avatar
我在何方 committed
23
          <el-descriptions-item :label="$t('运输方式')">
24 25
              <dict-tag :type="DICT_TYPE.ECW_TRANSPORT_TYPE" :value="orderData.transportId" />
          </el-descriptions-item>
我在何方's avatar
我在何方 committed
26
          <el-descriptions-item :label="$t('始发地')" >
dragondean@qq.com's avatar
dragondean@qq.com committed
27 28 29 30
              <template v-if="orderData.logisticsInfoDto">
                {{$l(orderData.logisticsInfoDto, 'startTitle')}}
              </template>
              <template v-else>{{$t('')}}</template>
31
          </el-descriptions-item>
我在何方's avatar
我在何方 committed
32
          <el-descriptions-item :label="$t('目的地')" :span="2">
dragondean@qq.com's avatar
dragondean@qq.com committed
33 34 35 36
            <template v-if="orderData.logisticsInfoDto">
              {{$l(orderData.logisticsInfoDto, 'destTitle')}}
            </template>
            <template v-else>{{$t('')}}</template>
37
          </el-descriptions-item>
我在何方's avatar
我在何方 committed
38 39
          <el-descriptions-item :label="$t('发货人姓名')">
              {{orderData.consignorVO?orderData.consignorVO.name||$t('无'):$t('无')}}
40
          </el-descriptions-item>
我在何方's avatar
我在何方 committed
41 42
          <el-descriptions-item :label="$t('发货公司')">
              {{orderData.consignorVO?orderData.consignorVO.company||$t('无'):$t('无')}}
43
          </el-descriptions-item>
我在何方's avatar
我在何方 committed
44
          <el-descriptions-item :label="$t('发货电话')">
我在何方's avatar
我在何方 committed
45
                {{!orderData.consignorVO?$t('无'):!orderData.consignorVO.phone?$t('无'):(checkCode(orderData.consignorVO.countryCode)+orderData.consignorVO.phone)}}
46 47 48
          </el-descriptions-item>
        </el-descriptions>
        <el-descriptions :column="4">
我在何方's avatar
我在何方 committed
49 50
            <el-descriptions-item :label="$t('收货人姓名')">
                {{orderData.consigneeVO?orderData.consigneeVO.name||$t('无'):$t('无')}}
51
            </el-descriptions-item>
我在何方's avatar
我在何方 committed
52 53
            <el-descriptions-item :label="$t('收货公司')">
                {{orderData.consigneeVO?orderData.consigneeVO.company||$t('无'):$t('无')}}
54
            </el-descriptions-item>
我在何方's avatar
我在何方 committed
55
            <el-descriptions-item :label="$t('收货电话')">
我在何方's avatar
我在何方 committed
56
              {{!orderData.consigneeVO?$t('无'):!orderData.consigneeVO.phone?$t('无'):(checkCode(orderData.consigneeVO.countryCode)+orderData.consigneeVO.phone)}}
57 58 59 60 61 62
            </el-descriptions-item>
        </el-descriptions>

    </el-card>
    <el-card class="card">
      <!-- 列表 -->
我在何方's avatar
我在何方 committed
63
      <div slot="header" class="card-title">{{$t('货物信息')}}</div>
我在何方's avatar
我在何方 committed
64
      <el-table id='table' v-loading="loading"  border :data="orderData.orderItemVOList"  :summary-method="getSummaries" show-summary>
我在何方's avatar
我在何方 committed
65
        <el-table-column :label="$t('序号')" align="center" prop="id" type="index" width="60">
我在何方's avatar
我在何方 committed
66
          <template slot-scope="scope" >
67 68 69
              <span>{{scope.$index + 1}}</span>
          </template>
        </el-table-column>
我在何方's avatar
我在何方 committed
70
        <el-table-column :label="$t('品名')" align="center">
71 72 73 74 75
          <template slot-scope="scope">
             <el-row>{{scope.row.prodTitleEn}}</el-row>
             <el-row>{{scope.row.prodTitleZh}}</el-row>
          </template>
        </el-table-column>
我在何方's avatar
我在何方 committed
76
        <el-table-column :label="$t('填单货物属性')" align="center" width="200">
77 78
            <template slot-scope="scope">
              <el-row>
我在何方's avatar
我在何方 committed
79
                <span>{{$t('品牌')}}
80 81 82 83
                  <dict-tag :type="DICT_TYPE.ECW_IS_BRAND" :value="scope.row.brandType" />
                </span>
              </el-row>
              <el-row>
我在何方's avatar
我在何方 committed
84
                <span>{{$t('箱数')}}{{scope.row.num||$t('未填')}}</span>
85 86
              </el-row>
              <el-row>
我在何方's avatar
我在何方 committed
87
                <span>{{$t('体积')}}{{scope.row.volume||$t('未填')}}</span>
88 89
              </el-row>
              <el-row>
我在何方's avatar
我在何方 committed
90
                <span>{{$t('重量')}}{{scope.row.weight||$t('未填')}}kg</span>
91 92 93
              </el-row>
            </template>
        </el-table-column>
我在何方's avatar
我在何方 committed
94
        <el-table-column :label="$t('入库货物属性')" align="center" width="400">
95
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
96
              <el-row v-if="scope.row.warehouseInInfoVO">
我在何方's avatar
我在何方 committed
97
                <span>{{$t('规格')}}{{scope.row.warehouseInInfoVO?scope.row.warehouseInInfoVO.boxGauge:0}}</span>
98
              </el-row>
我在何方's avatar
我在何方 committed
99
              <el-row v-if="scope.row.warehouseInInfoVO">
我在何方's avatar
我在何方 committed
100
                <span>{{$t('品牌')}}
101 102
                  <template v-if="scope.row.brandName">{{scope.row.brandName}}</template>
                  <dict-tag v-else :type="DICT_TYPE.ECW_IS_BRAND" :value="scope.row.feeType" />
103
                </span>
我在何方's avatar
我在何方 committed
104 105 106
                <span style="margin-left: 10px;">{{$t('箱数')}}:{{!scope.row.warehouseInInfoVO?0:scope.row.warehouseInInfoVO.cartonsNum}}</span>
                <span style="margin-left: 10px;">{{$t('体积')}}:{{!scope.row.warehouseInInfoVO?0:scope.row.warehouseInInfoVO.volume}}m³</span>
                <span style="margin-left: 10px;">{{$t('重量')}}:{{!scope.row.warehouseInInfoVO?0:scope.row.warehouseInInfoVO.weight}}kg</span>
dragondean@qq.com's avatar
dragondean@qq.com committed
107
                <span style="margin-left: 10px;">{{$t('数量(个)')}}:{{!scope.row.warehouseInInfoVO?0:scope.row.warehouseInInfoVO.quantityAll}}</span>
108
              </el-row>
我在何方's avatar
我在何方 committed
109 110 111
              <el-row v-if="!scope.row.warehouseInInfoVO">
                <span>{{$t('暂时没有入仓信息')}}</span>
              </el-row>
112 113
            </template>
        </el-table-column>
我在何方's avatar
我在何方 committed
114
        <el-table-column :label="$t('最后操作时间')" align="center">
我在何方's avatar
我在何方 committed
115 116 117 118
        <template slot-scope="scope">
                <span>{{parseTime(scope.row.updateTime)}}</span>
          </template>
        </el-table-column>
我在何方's avatar
我在何方 committed
119
        <el-table-column :label="$t('状态')" align="center">
120
           <template slot-scope="scope">
我在何方's avatar
我在何方 committed
121 122
             <!-- {{orderData.abnormalState!=0?$t('异常'):$t('正常')}} -->
               <dict-tag :type="DICT_TYPE.ORDER_ITEM_STATUS" :value="scope.row.itemStatus" />
123 124 125 126
          </template>
        </el-table-column>
      </el-table>
    </el-card>
127
    <el-card class="card">
128
      <!-- 列表 -->
129 130 131 132 133
      <div slot="header" class="card-title flex">
        <div style="flex: 1; display: flex; align-items: center">{{$t('拆单信息')}}</div>
        <div>
          <span v-if="orderData.abnormalState!=0" class="red">{{$t('异常无法拆单')}}</span>
          <el-button v-else type="primary" @click="addSplit" :disabled="orderData.inWarehouseState==207">{{$t('新建拆单')}} </el-button>
134
        </div>
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
      </div>
      <template  v-if="splitData.length>0">
        <div v-for="(item, index) in splitData" :key="index">
          <div class="btn-header">
            <div>
              <p class="card-info">
                <span class="card-title">
                {{item.orderNo}}
                </span>
                <dict-tag :type="DICT_TYPE.ECW_TRANSPORT_TYPE" :value="item.transportId" />
                <span>{{$t('发往')}}{{importCityName(item.dstWarehouseId)}}</span>
              </p>
            </div>
            <div>
              <el-button type="primary" @click="addShop(index)">{{$t('放入')}}</el-button>
              <el-button :disabled="index < splitData.length - 1" type="primary" plain @click="deleteSplit(item.id)">{{$t('删除')}}</el-button>
            </div>
          </div>
          <el-table v-if="item.orderSplitItemBackVOList"  border :data="item.orderSplitItemBackVOList">
            <el-table-column :label="$t('序号')" align="center" prop="id" type="index">
              <template slot-scope="scope">
                  <span>{{scope.$index + 1}}</span>
              </template>
            </el-table-column>
            <el-table-column :label="$t('中文名')" align="center" prop="prodTitleZh" />
            <el-table-column :label="$t('英文名')" align="center" prop="prodTitleEn" />
            <el-table-column :label="$t('品牌')" align="center">
              <template slot-scope="scope">
                <template v-if="scope.row.brandName">{{scope.row.brandName}}</template>
                <dict-tag v-else :type="DICT_TYPE.ECW_IS_BRAND" :value="scope.row.feeType" />
              </template>
            </el-table-column>
167

168 169 170 171
            <el-table-column :label="$t('入仓体积')" align="center" >
              <template slot-scope="scope">
                {{scope.row.volume}}
              </template>
172
            </el-table-column>
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
            <el-table-column :label="$t('收费体积')" align="center" >
              <template slot-scope="scope">
                <el-input v-model="scope.row.chargeVolume" @change="updateField(scope.row, 'chargeVolume')" size="mini" disabled>
                  <span slot="append"></span>
                </el-input>
              </template>
            </el-table-column>
            <el-table-column :label="$t('入仓重量')" align="center">
              <template slot-scope="scope">
                {{scope.row.weight}}kg
              </template>
              </el-table-column>
            <el-table-column :label="$t('收费重量')" align="center">
              <template slot-scope="scope">
                <el-input v-model="scope.row.chargeWeight" @change="updateField(scope.row, 'chargeWeight')" size="mini" disabled>
                  <span slot="append">kg</span>
                </el-input>
              </template>
            </el-table-column>
            <el-table-column :label="$t('货值')" align="center">
              <template slot-scope="scope">
                <el-input v-model="scope.row.worth" @change="updateField(scope.row, 'worth')" size="mini" disabled>
                  <span slot="append">{{ $t('') }}</span>
                </el-input>
              </template>
            </el-table-column>
            <el-table-column :label="$t('箱数')" align="center" prop="num">
              <template slot-scope="scope">
                <el-button type="text" @click="currentWarehouseRecord=scope.row.specsRecordVOList">
                  {{ scope.row.num }}
                </el-button>
              </template>
            </el-table-column>
            <el-table-column :label="$t('数量(个)')" align="center" prop="quantity"></el-table-column>
            <el-table-column :label="$t('操作')" align="center">
              <template slot-scope="scope">
               <el-button size="mini" type="text" icon="el-icon-delete" @click="removeShop(scope.row.id)">{{$t('移出')}}</el-button>
              </template>
            </el-table-column>
          </el-table>
        </div>
      </template>
      <el-empty v-else></el-empty>
216
    </el-card>
我在何方's avatar
我在何方 committed
217
    <work-flow xmlkey="split_order" v-model="selectedUsers"></work-flow>
我在何方's avatar
我在何方 committed
218
    <div slot="footer" class="card footer_btn" v-if="orderData.abnormalState==0">
dragondean@qq.com's avatar
dragondean@qq.com committed
219 220
        <template v-if="orderData.inWarehouseState!=207">
          <el-button type="primary" @click="submitForm">{{$t('提交申请')}}</el-button>
221
          <el-button plain type="primary" @click="cancel">{{$t('取消')}}</el-button>
dragondean@qq.com's avatar
dragondean@qq.com committed
222 223 224 225 226 227 228
          <el-button type="primary" @click="reset">{{$t('重置')}}</el-button>
        </template>
        <template v-else>
          <el-button type="primary" @click="$router.push(`/bpm/process-instance/detail?id=`+orderApprovalBackVO.applyingFormId)">{{$t('审核中')}}</el-button>
          <el-button plain type="primary" @click="dialogVisible = true">{{$t('取消审核')}}</el-button>
          <el-button plain type="primary" @click="$store.dispatch('tagsView/delCurrentView')">{{$t('返回')}}</el-button>
        </template>
229
    </div>
230 231 232 233 234 235 236 237 238 239 240
    <!-- 对话框(添加 / 修改) -->
    <el-dialog :title="$t('新建拆单')" :visible.sync="open" width="400px" append-to-body>
      <el-form ref="formSplit" :model="form" :rules="rules" label-width="80px">
          <el-form-item :label="$t('运输方式')">
             <dict-selector :clearable="true" :type="DICT_TYPE.ECW_TRANSPORT_TYPE" @change="changeTransport" v-model="form.transportId" />
          </el-form-item>
          <el-form-item :label="$t('出货渠道')" v-if="getDictData(DICT_TYPE.ECW_TRANSPORT_TYPE, form.transportId).cssClass == 'channel'">
            <el-select v-model="form.channelId" :placeholder="$t('请选择出货渠道')" :clearable="true">
                 <el-option :disabled="getDictData(DICT_TYPE.ECW_TRANSPORT_TYPE, form.transportId).cssClass != 'channel'" v-for="item in channelData" :key="item.channelId" :label="$l(item, 'name')" :value="item.channelId"/>
             </el-select>
          </el-form-item>
我在何方's avatar
我在何方 committed
241

242 243 244 245 246 247
          <el-form-item :label="$t('目的仓库')" >
              <el-select v-model="form.destWarehouseId" @change="changeDeatWarehouseId" :placeholder="$t('请选择目的仓库')" :clearable="true">
               <el-option v-for="items in importCityList" :label="$l(items, 'title')" :value="items.id" :key="items.id" ></el-option>
              </el-select>
          </el-form-item>
      </el-form>
248

249 250 251 252 253 254
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="haddleAdd">{{$t('确定')}}</el-button>
        <el-button @click="cancel">{{$t('取消')}}</el-button>
      </div>
    </el-dialog>
    <!-- 对话框(添加 / 修改) -->
dragondean@qq.com's avatar
dragondean@qq.com committed
255
    <el-dialog :title="$t('放入品名')" :visible.sync="shopOpen" width="1500px" append-to-body>
256
     <el-form ref="shopForm" :model="shopForm" :rules="shopRules" label-width="120px" inline>
257 258 259
      <el-form-item :label="$t('中文品名')">
         <el-select v-model="shopForm.orderItemId" :placeholder="$t('请选择中文品名')">
          <el-option v-for="item in orderData.orderItemVOList" :label="item.prodTitleZh" :value="item.orderItemId" :key="item.prodTitleZh" ></el-option>
dragondean@qq.com's avatar
dragondean@qq.com committed
260 261
         </el-select>
      </el-form-item>
262 263 264 265
      <el-form-item :label="$t('英文品名')">
         <el-select v-model="shopForm.orderItemId" :placeholder="$t('请选择英文品名')">
          <el-option v-for="item in orderData.orderItemVOList" :label="item.prodTitleEn" :value="item.orderItemId" :key="item.prodTitleEn" ></el-option>
         </el-select>
dragondean@qq.com's avatar
dragondean@qq.com committed
266
      </el-form-item>
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
       <el-card>
         <div slot="header" class="page-title">{{$t('品名可拆数据')}}</div>
         <div class="pl-20">
           <span class="mr-10">{{$t('箱数')}}:{{ leftData.num || 0 }}</span>
           <span class="mr-10">{{ $t('入仓方数') }}:{{ leftData.volume || 0 }}m³</span>
           <span class="mr-10">{{ $t('收费方数') }}:{{ leftData.chargeVolume || 0 }}m³</span>
           <span class="mr-10">{{ $t('入仓重量') }}:{{ leftData.weight || 0 }}kg</span>
           <span class="mr-10">{{ $t('收费重量') }}:{{ leftData.chargeWeight || 0 }}kg</span>
           <span class="mr-10">{{ $t('数量(个)') }}:{{ leftData.quantity || 0 }}</span>
           <span class="mr-10">{{ $t('剩余货值') }}:{{ leftData.worth || 0 }}{{ $t('元') }}</span>
         </div>
       </el-card>


       <el-card class="mt-10">
         <div slot="header" class="page-title">{{$t('可拆入仓记录')}}</div>
283 284 285 286 287
        <el-table
         :data="getOrderItemWarehouseIn(shopForm.orderItemId)"
         style="width: 100%">
         <el-table-column :label="$t('箱数')">
           <template v-slot="{row,$index}">
288 289 290
             <!--{{row.cartonsNum}}-->
             {{getWarehouseLeftData(row, 'num')}}
             <dict-tag :type="DICT_TYPE.WAREHOUSING_SPECIFICATION_TYPE" v-model="row.specificationType"></dict-tag>
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
           </template>
         </el-table-column>
         <el-table-column :label="$t('包装类型')">
           <template v-slot="{row,$index}">
               <dict-tag :type="DICT_TYPE.ECW_PACKAGING_TYPE" v-model="row.unit"></dict-tag>
           </template>
         </el-table-column>
         <el-table-column label="长(cm)">
           <template v-slot="{row,$index}">
             {{row.boxGauge1}}
           </template>
         </el-table-column>
         <el-table-column label="宽(cm)">
           <template v-slot="{row,$index}">
             {{ row.boxGauge2 }}
           </template>
         </el-table-column>
         <el-table-column label="高(cm)">
           <template v-slot="{row,$index}">
             {{ row.boxGauge3 }}
           </template>
         </el-table-column>
         <el-table-column label="入仓体积(m³)">
           <template v-slot="{row,$index}">
315 316 317 318 319 320 321 322 323 324 325
             {{getWarehouseLeftData(row, 'volume')}}
           </template>
         </el-table-column>
         <el-table-column label="入仓重量(Kg)" prop="weight">
           <template v-slot="{row,$index}">
             {{getWarehouseLeftData(row, 'weight')}}
           </template>
         </el-table-column>
         <el-table-column :label="$t('数量')" prop="quantity">
           <template v-slot="{row,$index}">
             {{getWarehouseLeftData(row, 'quantity')}}
326 327 328 329 330
           </template>
         </el-table-column>
         <el-table-column :label="$t('快递单号')" prop="expressNo"></el-table-column>
         <el-table-column :label="$t('储位')" prop="orderLocationBackVOList">
           <template v-slot="{ row, column, $index }">
dragondean@qq.com's avatar
dragondean@qq.com committed
331
             {{getLocationName(row.orderLocationBackVOList)}}
332 333 334 335
           </template>
         </el-table-column>
         <el-table-column :label="$t('操作')">
           <template v-slot="{ row, column, $index}">
336
             <el-tag v-if="getWarehouseInSplitData(row.id,'num') >= row.cartonsNum" disabled size="mini" type="primary" >{{$t('已拆完')}}</el-tag>
337
             <el-button v-else size="mini" type="primary" @click="putInRecord(row)">放入</el-button>
338 339 340
           </template>
         </el-table-column>
        </el-table>
341 342 343 344 345 346 347
       </el-card>
       <el-card class="mt-10">
         <div slot="header" class="flex-between mt-20 mb-10">
           <div class="page-title" style="margin: 0">
             {{$t('已放入入仓记录')}}
           </div>
           <el-button type="danger" size="mini" @click="clearAll">清空放入数据</el-button>
348
         </div>
349
         <el-table
dragondean@qq.com's avatar
dragondean@qq.com committed
350 351 352 353 354 355
           :data="shopForm.specsRecordVOList"
           style="width: 100%">
           <el-table-column :label="$t('箱数')" width="200px">
             <template v-slot="{row,$index}">
               {{row.num}}
               <dict-tag :type="DICT_TYPE.WAREHOUSING_SPECIFICATION_TYPE" v-model="row.specificationType"></dict-tag>
dragondean@qq.com's avatar
dragondean@qq.com committed
356
             </template>
dragondean@qq.com's avatar
dragondean@qq.com committed
357 358
           </el-table-column>
           <el-table-column :label="$t('包装类型')" width="100px">
dragondean@qq.com's avatar
dragondean@qq.com committed
359
             <template v-slot="{row,$index}">
dragondean@qq.com's avatar
dragondean@qq.com committed
360
               <dict-tag :type="DICT_TYPE.ECW_PACKAGING_TYPE" v-model="row.unit"></dict-tag>
dragondean@qq.com's avatar
dragondean@qq.com committed
361 362
             </template>
           </el-table-column>
dragondean@qq.com's avatar
dragondean@qq.com committed
363 364 365
           <el-table-column label="长(cm)">
             <template v-slot="{row,$index}">
               {{row.boxGauge1}}
dragondean@qq.com's avatar
dragondean@qq.com committed
366
             </template>
dragondean@qq.com's avatar
dragondean@qq.com committed
367 368
           </el-table-column>
           <el-table-column label="宽(cm)">
dragondean@qq.com's avatar
dragondean@qq.com committed
369
             <template v-slot="{row,$index}">
dragondean@qq.com's avatar
dragondean@qq.com committed
370
               {{ row.boxGauge2 }}
dragondean@qq.com's avatar
dragondean@qq.com committed
371 372
             </template>
           </el-table-column>
dragondean@qq.com's avatar
dragondean@qq.com committed
373
           <el-table-column label="高(cm)">
dragondean@qq.com's avatar
dragondean@qq.com committed
374
             <template v-slot="{row,$index}">
dragondean@qq.com's avatar
dragondean@qq.com committed
375
               {{ row.boxGauge3 }}
dragondean@qq.com's avatar
dragondean@qq.com committed
376 377
             </template>
           </el-table-column>
dragondean@qq.com's avatar
dragondean@qq.com committed
378
           <el-table-column label="入仓体积(m³)">
dragondean@qq.com's avatar
dragondean@qq.com committed
379
             <template v-slot="{row,$index}">
dragondean@qq.com's avatar
dragondean@qq.com committed
380
               {{row.volume}}
dragondean@qq.com's avatar
dragondean@qq.com committed
381 382
             </template>
           </el-table-column>
383
           <!--<el-table-column label="收费体积(m³)" prop="chargeVolume"></el-table-column>-->
dragondean@qq.com's avatar
dragondean@qq.com committed
384
           <el-table-column label="入仓重量(Kg)" prop="weight"></el-table-column>
385
           <!--<el-table-column label="收费重量(Kg)" prop="chargeWeight"></el-table-column>-->
dragondean@qq.com's avatar
dragondean@qq.com committed
386 387
           <el-table-column :label="$t('数量')" width="130px" prop="quantity"></el-table-column>
           <el-table-column :label="$t('快递单号')" prop="expressNo"></el-table-column>
dragondean@qq.com's avatar
dragondean@qq.com committed
388 389
           <el-table-column :label="$t('储位')" prop="orderLocationBackVOList">
             <template v-slot="{ row, column, $index }">
dragondean@qq.com's avatar
dragondean@qq.com committed
390
               {{getLocationName(row.orderLocationList)}}
dragondean@qq.com's avatar
dragondean@qq.com committed
391 392 393 394
             </template>
           </el-table-column>
           <el-table-column :label="$t('操作')">
             <template v-slot="{ row, column, $index}">
dragondean@qq.com's avatar
dragondean@qq.com committed
395
               <el-button size="mini" type="primary" @click="deleteRow($index)">删除</el-button>
dragondean@qq.com's avatar
dragondean@qq.com committed
396 397 398
             </template>
           </el-table-column>
         </el-table>
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
       </el-card>
       <el-card class="mt-10">
         <div slot="header" class="page-title">放入数据</div>
         <div>
           <div class="pl-20 mb-10">
             <span class="mr-10">{{$t('箱数')}}:{{ putin.num || 0 }},</span>
             <span class="mr-10">{{ $t('数量(个)') }}:{{ putin.quantity || 0 }},</span>
             <span class="mr-10">{{ $t('入仓方数') }}:{{ putin.volume || 0 }}m³, </span>
             <span class="mr-10">{{ $t('入仓重量') }}:{{ putin.weight || 0 }}kg</span>
           </div>
           <el-form-item :label="$t('收费方数')" prop="chargeVolume">
             <el-input-number v-model="shopForm.chargeVolume" controls-position="right"></el-input-number>
           </el-form-item>
           <el-form-item :label="$t('收费重量')" prop="chargeWeight">
             <el-input-number v-model="shopForm.chargeWeight" controls-position="right"></el-input-number>kg
           </el-form-item>
dragondean@qq.com's avatar
dragondean@qq.com committed
415

416 417 418 419 420 421 422 423 424 425
           <el-form-item :label="$t('放入货值')">
             <el-input-number v-model="shopForm.worth" controls-position="right"  :min="0" :max="mainOrderItem.worth">
               <template slot="append">{{ $t('') }}</template>
             </el-input-number>
           </el-form-item>
           <el-form-item :label="$t('备注信息')">
             <el-input v-model="shopForm.remark"></el-input>
           </el-form-item>
         </div>
       </el-card>
dragondean@qq.com's avatar
dragondean@qq.com committed
426

427 428
     </el-form>
     <div slot="footer" class="dialog-footer">
dragondean@qq.com's avatar
dragondean@qq.com committed
429
       <el-button type="primary" @click="shopAdd" :disabled="!shopForm.specsRecordVOList || !shopForm.specsRecordVOList.length">{{$t('确定')}}</el-button>
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
       <el-button @click="shopCancel">{{$t('取消')}}</el-button>
     </div>
    </el-dialog>
    <el-dialog
     :title="$t('提示')"
     :visible.sync="dialogVisible"
     width="30%">
     <span class="cancel_notice">{{$t('拆单申请正在审核中,你确定取消拆单申请吗?')}}</span>
     <div class="cancel_content">
       <span>{{$t('取消原因:')}}</span>
       <el-input v-model="reason" :placeholder="$t('请输入取消原因')"></el-input>
     </div>

     <span slot="footer" class="dialog-footer">
       <el-button @click="dialogVisible = false">{{$t('取消')}}</el-button>
       <el-button type="primary" @click="cancelSplit">{{$t('确定')}}</el-button>
     </span>
    </el-dialog>
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464

    <el-dialog
      :title="$t('提示')"
      :visible.sync="dialogVisible"
      width="30%">
      <span class="cancel_notice">{{$t('拆单申请正在审核中,你确定取消拆单申请吗?')}}</span>
      <div class="cancel_content">
        <span>{{$t('取消原因:')}}</span>
        <el-input v-model="reason" :placeholder="$t('请输入取消原因')"></el-input>
      </div>

      <span slot="footer" class="dialog-footer">
       <el-button @click="dialogVisible = false">{{$t('取消')}}</el-button>
       <el-button type="primary" @click="cancelSplit">{{$t('确定')}}</el-button>
     </span>
    </el-dialog>

465 466 467 468 469
    <warehouse-record
      v-if="currentWarehouseRecord"
      :list="currentWarehouseRecord"
      :warehouseId="currentWarehouseId"
      @close="currentWarehouseRecord=null"></warehouse-record>
dragondean@qq.com's avatar
dragondean@qq.com committed
470 471 472 473 474 475
    <put-in
      v-if="currentPutIn"
      :warehouse-record="currentPutIn"
      @close="currentPutIn=null"
      @submit="handlePutin"
      :warehouse-id="currentWarehouseId"
dragondean@qq.com's avatar
dragondean@qq.com committed
476
      :max-num="orderData.sumNum"
dragondean@qq.com's avatar
dragondean@qq.com committed
477
    ></put-in>
478 479 480 481
  </div>
</template>

<script>
我在何方's avatar
我在何方 committed
482
import {getDictData, getDictDatas,DICT_TYPE} from '@/utils/dict'
dragondean@qq.com's avatar
dragondean@qq.com committed
483 484 485 486 487 488 489 490 491 492
import {
  getSplitList,
  splitApply,
  createSplit,
  cancelApply,
  createSplitItem,
  deleteSplitItem,
  deleteSplit,
  deleteAllSplit
} from "@/api/ecw/orderHandle"
493
import {getWarehouseList, quantityRequired} from '@/api/ecw/warehouse'
我在何方's avatar
我在何方 committed
494 495
import {getChannelList} from '@/api/ecw/channel'
import WorkFlow from '@/components/WorkFlow'
496
import {getOrder, getOrderWarehouseIn, splitItemUpdate} from '@/api/ecw/order'
497
import Decimal from 'decimal.js'
dragondean@qq.com's avatar
dragondean@qq.com committed
498
import WarehouseAreaSelect from "@/components/WarehouseAreaSelect";
499 500
import WarehouseDetail from "@/views/ecw/order/components/WarehouseDetail";
import WarehouseRecord from "@/views/ecw/order/splitApply/components/WarehouseRecord";
dragondean@qq.com's avatar
dragondean@qq.com committed
501
import PutIn from "@/views/ecw/order/splitApply/components/PutIn.vue";
dragondean@qq.com's avatar
dragondean@qq.com committed
502
import Template from "@/views/cms/template/index.vue";
503 504 505 506

export default {
  name: "SplitApply",
  components: {
dragondean@qq.com's avatar
dragondean@qq.com committed
507
    Template,
508 509
    WarehouseRecord,
    WarehouseDetail,
dragondean@qq.com's avatar
dragondean@qq.com committed
510
    WarehouseAreaSelect,
dragondean@qq.com's avatar
dragondean@qq.com committed
511 512
    WorkFlow,
    PutIn
513 514 515 516
  },
  data() {
    return {
      checked:false,
我在何方's avatar
我在何方 committed
517 518
      reason:'',
      dialogVisible:false,
519 520
      orderData:{},
      splitData:[],
我在何方's avatar
我在何方 committed
521
      orderApprovalBackVO:{},
522 523 524 525 526 527 528 529 530
      splitIndex:0,
      channelData:[],
      tradeCityList:[],
      multipleSelection:[],
      loading:false,
      open:false,
      form:{

      },
我在何方's avatar
我在何方 committed
531
      importCityList:[],
我在何方's avatar
我在何方 committed
532 533
      selectedUsers:[],
      shopOpen:false,
534
      quantityshow:false,
dragondean@qq.com's avatar
dragondean@qq.com committed
535 536 537
      shopForm:{
        specsRecordVOList: []
      },
538 539
      // 表单校验
      rules: {
我在何方's avatar
我在何方 committed
540 541 542
        transportId: [{ required: true, message: this.$t("请选择运输方式"), trigger: "change" }],
        warehouseIds: [{ required: true, message: this.$t("请选择目的仓库"), trigger: "change" }],
        channelId: [{ required: true, message: this.$t("请选择出货渠道"), trigger: "change" }],
543 544 545
      },
      // 表单校验
      shopRules: {
546 547
        chargeVolume: [{ required: true, message: this.$t("请填写收费方数"), trigger: "blur" }],
        chargeWeight: [{ required: true, message: this.$t("请填写收费重量"), trigger: "blur" }],
我在何方's avatar
我在何方 committed
548 549
      },
      queryParams:{
550
        orderId: null,
我在何方's avatar
我在何方 committed
551
        lang:0
552 553
      },
      query:{
我在何方's avatar
我在何方 committed
554 555 556
        page:1,
        rows:20
      },
dragondean@qq.com's avatar
dragondean@qq.com committed
557
      // splitItemIndex:0,
558 559
      quantitySum:0,
      // 当前查看的入仓记录
560 561 562 563
      currentWarehouseRecord: null,
      // 订单入仓记录
      warehouseInList: [],
      // 当前选择的入仓记录ID
dragondean@qq.com's avatar
dragondean@qq.com committed
564 565 566
      // selectedWarehouseInId: null,
      // 当前正在放入的入仓记录
      currentPutIn: null
567 568
    };
  },
dragondean@qq.com's avatar
dragondean@qq.com committed
569
  async created() {
我在何方's avatar
我在何方 committed
570
    this.getChannel()
我在何方's avatar
我在何方 committed
571 572 573 574
    getWarehouseList().then(res => {
      this.tradeCityList = res.data
      this.importCityList = this.tradeCityList.filter(item => item.type == 1)
    })
我在何方's avatar
我在何方 committed
575
    if (this.$route.query.orderId) {
我在何方's avatar
我在何方 committed
576
      this.queryParams.orderId = this.$route.query.orderId
我在何方's avatar
我在何方 committed
577
    }
578 579 580
    Promise.all([this.getList(), this.getOrder()]).then(res => {
      console.log("拆单数据", this.splitData, this.splitData.length)
      if(this.orderData.inWarehouseState != 207 &&  this.splitData.length){
dragondean@qq.com's avatar
dragondean@qq.com committed
581
        this.reset()
582 583
      }
    })
584 585 586 587
    // 获取入仓记录
    getOrderWarehouseIn(this.queryParams.orderId).then(res => {
      this.warehouseInList = res.data
    })
588
  },
我在何方's avatar
我在何方 committed
589
  watch: {
dragondean@qq.com's avatar
dragondean@qq.com committed
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
    //监听table这个对象
    tableData: {
      // 立即监听
      immediate: true,
      handler() {
        this.$nextTick(() => {
          const tds = document.querySelectorAll(
            "#table .el-table__footer-wrapper tr>td"
          );
          // colSpan合并列
          tds[1].colSpan = 5;
          tds[1].style.textAlign = "left";
          tds[2].style.display = "none";
          tds[3].style.display = "none";
          tds[4].style.display = "none";
          tds[5].style.display = "none";
        });
我在何方's avatar
我在何方 committed
607 608
      },
    },
dragondean@qq.com's avatar
dragondean@qq.com committed
609 610 611 612 613 614 615 616
    // 关闭放入弹层的时候清理弹层表单内容
    shopOpen(show){
        if(!show){
          this.shopForm = {}
        }
    },
    // 切换品名需要重置已放入的记录
    'shopForm.orderItemId'(){
dragondean@qq.com's avatar
dragondean@qq.com committed
617 618 619 620 621 622 623 624 625 626
      // 默认取以前放入的品名
      let split = this.splitData.find(item => item.id == this.splitData[this.splitIndex].id)
      this.shopForm.specsRecordVOList = []
      if(split) {
        let specsRecordVOList = split.orderSplitItemBackVOList.find(item => item.orderItemId == this.shopForm.orderItemId)?.specsRecordVOList || []
        specsRecordVOList.forEach(item => {
          const [boxGauge1, boxGauge2, boxGauge3] = item.boxGauge.split('*')
          this.shopForm.specsRecordVOList.push({...item, boxGauge1, boxGauge2, boxGauge3})
        })
      }
dragondean@qq.com's avatar
dragondean@qq.com committed
627 628
    }
  },
629
  computed:{
我在何方's avatar
我在何方 committed
630 631 632 633 634
    getDictData(){
        return (type, value) => getDictData(type, value) || {}
    },
    getDictDatas(){
        return getDictDatas
635 636 637 638 639 640 641 642
    },
    // 放入品名试选择的商品项
    orderItem(){
      if(!this.orderData || !this.shopForm.orderItemId) return {}
      return this.orderData.orderItemVOList.find(item => item.orderItemId == this.shopForm.orderItemId) || {}
    },
    // 主单数据,也就是拆分剩余的数据,可用来限制拆单放入的最大值
    mainOrderItem(){
dragondean@qq.com's avatar
dragondean@qq.com committed
643 644
      if(!this.shopForm.orderItemId) return {}
      return this.orderData.orderItemVOList.find(item => item.orderItemId === this.shopForm.orderItemId)
dragondean@qq.com's avatar
dragondean@qq.com committed
645
    },
dragondean@qq.com's avatar
dragondean@qq.com committed
646
    // 剩余可拆数据,父订单的入仓数据 - 全部拆单的品名数据
647
    leftData(){
dragondean@qq.com's avatar
dragondean@qq.com committed
648 649
      if(!this.shopForm.orderItemId) return {}

650
      let data = {
dragondean@qq.com's avatar
dragondean@qq.com committed
651 652 653
        num: new Decimal(this.orderItem.warehouseInInfoVO?.cartonsNum || 0),
        volume: new Decimal(this.orderItem.warehouseInInfoVO?.volume || 0),
        weight: new Decimal(this.orderItem.warehouseInInfoVO?.weight || 0),
dragondean@qq.com's avatar
dragondean@qq.com committed
654
        quantity: new Decimal(this.orderItem.warehouseInInfoVO?.quantityAll || 0),
655
        chargeVolume: new Decimal(this.orderItem.chargeVolume || 0),
dragondean@qq.com's avatar
dragondean@qq.com committed
656 657
        chargeWeight: new Decimal(this.orderItem.chargeWeight || 0),
        worth: new Decimal(this.orderItem.worth || 0),
658
      }
dragondean@qq.com's avatar
dragondean@qq.com committed
659 660 661
      // 全部拆单的放入数据累减
      this.splitData.forEach(split => {
        split.orderSplitItemBackVOList.forEach(splitItem => {
662

dragondean@qq.com's avatar
dragondean@qq.com committed
663 664 665 666 667
          // 正在拆的要排除,不然会重复计算
          if(splitItem.orderItemId == this.shopForm.orderItemId && split.id == this.splitData[this.splitIndex].id){
            return
          }

668
          // 每个品名的入仓记录挨个累减其他数据
dragondean@qq.com's avatar
dragondean@qq.com committed
669
          if(splitItem.orderItemId == this.shopForm.orderItemId){
670 671 672 673 674
            // 每个品名都要累减收费数据
            data.chargeVolume = data.chargeVolume.minus(new Decimal(splitItem.chargeVolume || 0))
            data.chargeWeight = data.chargeWeight.minus(new Decimal(splitItem.chargeWeight || 0))
            data.worth = data.worth.minus(new Decimal(splitItem.worth || 0))

dragondean@qq.com's avatar
dragondean@qq.com committed
675 676 677 678 679 680 681
            data.num = data.num.minus(new Decimal(splitItem.num || 0))
            data.volume = data.volume.minus(new Decimal(splitItem.volume || 0))
            data.weight = data.weight.minus(new Decimal(splitItem.weight || 0))
            data.quantity = data.quantity.minus(new Decimal(splitItem.quantity || 0))
          }
        })
      })
682 683
      return data
    },
dragondean@qq.com's avatar
dragondean@qq.com committed
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
    // 放入数据
    putin(){
      let data = {
        num: new Decimal(0),
        volume: new Decimal(0),
        weight: new Decimal(0),
        quantity: new Decimal(0)
      }
      this.shopForm.specsRecordVOList && this.shopForm.specsRecordVOList.forEach(item => {
        data.num = data.num.plus(new Decimal(item.num || 0))
        data.volume = data.volume.plus(new Decimal(item.volume || 0))
        data.weight = data.weight.plus(new Decimal(item.weight || 0))
        data.quantity = data.quantity.plus(new Decimal(item.quantity || 0))
      })
      return {
        num: data.num.toNumber(),
        volume: data.volume.toNumber(),
        weight: data.weight.toNumber(),
        quantity: data.quantity.toNumber()
      }
704
    },
705
    // 当前仓库ID,选择储位的时候需要用到
706 707 708
    currentWarehouseId(){
      return this.orderData.adjustToDestWarehouseId || this.orderData.logisticsInfoDto.startWarehouseId
    },
709
    // 当前选择的入仓记录
710
    /*currentWarehouseItem(){
711
      return this.getOrderItemWarehouseIn(this.shopForm.orderItemId).find(item => item.id === this.selectedWarehouseInId)
712
    },*/
713 714 715 716 717 718 719
    // 根据orderItemId获取入仓记录
    getOrderItemWarehouseIn() {
      return orderItemId => {
        const list = this.warehouseInList.find(item => item.orderItemId == orderItemId)?.orderWarehouseInBackItemDoList || []
        return list.map(item => {
          let [boxGauge1, boxGauge2, boxGauge3] = item.boxGauge.split('*')
          let labelArr = [
720
            this.$t('{num}箱', {num: item.cartonsNum}),
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
            this.$l(this.getDictDatas(this.DICT_TYPE.WAREHOUSING_SPECIFICATION_TYPE).find(dict => dict.value == item.specificationType), 'label'),
            this.$t('长{boxGauge1}cm', {boxGauge1}),
            this.$t('宽{boxGauge2}cm', {boxGauge2}),
            this.$t('高{boxGauge3}cm', {boxGauge3}),
            this.$t('方数{volume}m³', {volume: item.volume}),
            this.$t('重量{weight}kg', {weight: item.weight})
          ]
          if (item.quantityAll) {
            labelArr.push(this.$t('数量{n}', {n: item.quantityAll}))
          }
          if (item.expressNo) {
            labelArr.push(this.$t('快递{expressNo}', {expressNo: item.expressNo}))
          }
          if (item.orderLocationBackVOList && item.orderLocationBackVOList.length) {
            labelArr.push(this.$t('储位{location}', {
              location: item.orderLocationBackVOList.map(v => v.code || v.areaName + (v.locationName || '')).join(',')
            }))
          }
          item.boxGauge1 = boxGauge1
          item.boxGauge2 = boxGauge2
          item.boxGauge3 = boxGauge3
          item.text = labelArr.join(',')
          return item
        })
      }
746 747 748 749 750 751
    },
    // 根据入仓记录ID筛选出他的全部拆出记录
    getWarehouseInspecsRecordVOList(){
      return warehouseInId => {
        let specsRecordVOList = []
        // 这里是全部已放入的
dragondean@qq.com's avatar
dragondean@qq.com committed
752
        this.splitData.forEach((split, splitIndex) => {
753
          split.orderSplitItemBackVOList.forEach(splitItem => {
dragondean@qq.com's avatar
dragondean@qq.com committed
754 755 756 757
            // 当前正在拆的品名不包含,因为后面shopForm.specsRecordVOList会包含
            if(splitIndex == this.splitIndex && splitItem.orderItemId == this.shopForm.orderItemId){
              return
            }
758
            splitItem.specsRecordVOList && splitItem.specsRecordVOList.forEach(specs => {
759 760 761 762 763 764 765 766 767 768 769 770 771
              if(specs.warehouseInId === warehouseInId){
                specsRecordVOList.push(specs)
              }
            })
          })
        })
        // 这里是全部正在操作放入,但是还没确定提交的
        this.shopForm.specsRecordVOList.forEach(item => {
          if(item.warehouseInId == warehouseInId)specsRecordVOList.push(item)
        })
        return specsRecordVOList
      }
    },
772 773
    // 根据入仓ID获取拆出数据
    getWarehouseInSplitData(){
774 775 776 777 778 779 780
      return (warehouseInId, field) => {
        let total = new Decimal(0)
        this.getWarehouseInspecsRecordVOList(warehouseInId).forEach(item => {
          total = total.plus(new Decimal(item[field] || 0))
        })
        return total.toNumber()
      }
781 782 783 784
    },
    // 获取入仓记录的剩余数据
    getWarehouseLeftData(){
      return (warehouseRecord, field) => {
dragondean@qq.com's avatar
dragondean@qq.com committed
785 786 787 788
        let warehouseField = field
        if(field == 'num') warehouseField = 'cartonsNum'
        if(field == 'quantity') warehouseField = 'quantityAll'
        let total = new Decimal(warehouseRecord[ warehouseField ] || 0)
789 790 791 792 793
        this.getWarehouseInspecsRecordVOList(warehouseRecord.id).forEach(item => {
          total = total.minus(new Decimal(item[field] || 0))
        })
        return total.toNumber()
      }
794 795 796
    }
  },
  methods: {
797 798 799 800 801 802 803
    /*检查并提交字段(体积,重量)修改*/
    updateField(row, field){
      let val = parseFloat(row[field])
      if(!val || val < 0){
        this.$message.error(this.$t('数据无效'))
        return this.getList()
      }
dragondean@qq.com's avatar
dragondean@qq.com committed
804
      splitItemUpdate(row).then(() => {
805
        this.$message.success(this.$t('修改成功'))
806
      }).finally(() => {
807 808 809
        this.getList()
      })
    },
我在何方's avatar
我在何方 committed
810 811 812 813 814 815
    checkCode(data){
      if(data.indexOf('+')==-1){
      	return '+'+data
      }
      return data
    },
我在何方's avatar
我在何方 committed
816 817 818 819 820 821 822 823 824 825
    changeTransport(e){
      this.$set(this.form,'transportId',e)
      console.log(this.form.transportId)
      this.$forceUpdate()
    },
    changeDeatWarehouseId(e){
      this.$forceUpdate()
      this.$set(this.form,'destWarehouseId',e)
      console.log(this.form.destWarehouseId)
    },
我在何方's avatar
我在何方 committed
826 827
    getOrder(){
      this.loading = true;
828
      return getOrder(this.queryParams.orderId).then(response => {
我在何方's avatar
我在何方 committed
829
        this.orderData = response.data
我在何方's avatar
我在何方 committed
830 831 832 833 834
        this.query.destWarehouseId = response.data.logisticsInfoDto.startWarehouseId
        this.loading = false

      });
    },
835 836 837 838
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 执行查询
dragondean@qq.com's avatar
dragondean@qq.com committed
839
      return getSplitList(this.queryParams).then(response => {
我在何方's avatar
我在何方 committed
840

我在何方's avatar
我在何方 committed
841
        this.splitData = response.data.orderSplitBackVOList
我在何方's avatar
我在何方 committed
842
        this.orderApprovalBackVO = response.data
843 844 845 846
        this.loading = false;
      });
    },
    getChannel(){
我在何方's avatar
我在何方 committed
847
      getChannelList().then(res=>this.channelData = res.data)
848 849 850
    },
    changeDest(){
      this.query.warehouseIds = this.form.destWarehouseId
我在何方's avatar
我在何方 committed
851 852 853 854 855 856 857 858 859
    },
    arraySpanMethod({ row, column, rowIndex, columnIndex }) {
      if (rowIndex==this.orderData.orderItemVOList.length) {
        if (columnIndex === 1) {
          return [2, 3];
        } else if (columnIndex > 1) {
          return [0, 0];
        }
      }
860 861 862
    },
    getSummaries(){
      const sums = [];
我在何方's avatar
我在何方 committed
863

我在何方's avatar
我在何方 committed
864
      sums[0] = this.$t('小计')
我在何方's avatar
我在何方 committed
865
      if(!this.orderData || !this.orderData.orderItemVOList ||this.orderData.length==0){
866 867 868 869 870 871 872 873
        return sums
      }
      var orderSum = 0
      var orderV = 0
      var orderW = 0
      var leviteSum = 0
      var leviteV = 0
      var leviteW = 0
我在何方's avatar
我在何方 committed
874 875
      this.orderData.orderItemVOList.forEach((column, index) => {
          orderSum += column.num
876 877
          orderV += column.volume
          orderW += column.weight
我在何方's avatar
我在何方 committed
878 879 880
          leviteSum += column.warehouseInInfoVO?column.warehouseInInfoVO.cartonsNum:0
          leviteV += column.warehouseInInfoVO?column.warehouseInInfoVO.volume:0
          leviteW += column.warehouseInInfoVO?column.warehouseInInfoVO.weight:0
881
      });
我在何方's avatar
我在何方 committed
882
      sums[1] = this.$t('下单统计')+' '+ orderSum+' '+this.$t('')+' '+ orderV.toFixed(2) +'' + orderW + ' kg ' + ' '+this.$t('入仓统计:')+ leviteSum+' '+this.$t('')+' '+ leviteV.toFixed(2) +'' + leviteW + ' kg'
我在何方's avatar
我在何方 committed
883

884 885
      return sums;
    },
我在何方's avatar
我在何方 committed
886

887 888
    importCityName(id){
        var arr = this.tradeCityList.filter(item => item.id == id)
我在何方's avatar
我在何方 committed
889
        return arr.length>0?arr[0].titleZh:this.$t('')
890 891
    },
    submitForm(){
我在何方's avatar
我在何方 committed
892
      if(this.splitData.length==0){
我在何方's avatar
我在何方 committed
893
         this.$modal.msgError(this.$t("请先新建拆单"))
我在何方's avatar
我在何方 committed
894 895
         return
      }
896

我在何方's avatar
我在何方 committed
897 898 899 900 901
      var params = {
        orderId:this.queryParams.orderId,
        copyUserId:this.selectedUsers
      }
      splitApply(params).then(res=>{
我在何方's avatar
我在何方 committed
902
        this.$modal.msgSuccess(this.$t("申请成功"));
我在何方's avatar
我在何方 committed
903
        this.$store.dispatch('tagsView/delCurrentView')
我在何方's avatar
我在何方 committed
904
      })
905 906
    },
    addShop(index){
dragondean@qq.com's avatar
dragondean@qq.com committed
907
      this.splitIndex = index
908
      this.shopOpen = true
909 910
      // 重置表单数据
      this.shopForm = {specsRecordVOList:[]}
911 912
    },
    addSplit(){
我在何方's avatar
我在何方 committed
913 914 915 916 917 918 919 920
      this.form.transportId = this.orderData.transportId
      this.form.destWarehouseId = this.orderData.destWarehouseId
      if(this.orderData.logisticsInfoDto&&this.orderData.logisticsInfoDto.destTitleZh){
        this.form.destWarehouseId = this.importCityList.find(item=>item.titleZh==this.orderData.logisticsInfoDto.destTitleZh).id
        if(this.orderData.logisticsInfoDto&&this.orderData.logisticsInfoDto.channelId){
          this.form.channelId = this.orderData.logisticsInfoDto.channelId
          }
      }
921 922
      this.open = true
    },
923
    // 查询数量是否必填
924 925
    numcheck(){
      quantityRequired(this.orderData.lineId).then(res=>{
926 927 928
        this.quantityshow = res.data
      })
    },
929
    // 输入方数箱数后,按照平均值计算数量和体积重量数据
930
    numChange(){
931 932 933 934 935 936 937 938
      /*var sum =  parseInt(this.quantitySum/this.shopForm.num)
      this.$set(this.shopForm,'quantity',sum)*/
      let rate = this.shopForm.num/this.mainOrderItem.num
      this.$set(this.shopForm, 'quantity',      Math.ceil(this.mainOrderItem.quantity * rate))
      this.$set(this.shopForm, 'volume',        (this.mainOrderItem.volume * rate).toFixed(2))
      this.$set(this.shopForm, 'chargeVolume',  (this.mainOrderItem.chargeVolume * rate).toFixed(2))
      this.$set(this.shopForm, 'weight',        (this.mainOrderItem.weight * rate).toFixed(2))
      this.$set(this.shopForm, 'chargeWeight',  (this.mainOrderItem.chargeWeight * rate).toFixed(2))
dragondean@qq.com's avatar
dragondean@qq.com committed
939
      this.$set(this.shopForm, 'worth',  (this.mainOrderItem.worth * rate).toFixed(2))
940
    },
dragondean@qq.com's avatar
dragondean@qq.com committed
941
    /*changeProdTitleEn(){
942
        var list = []
我在何方's avatar
我在何方 committed
943
        list = this.splitData[0].orderSplitItemBackVOList.filter(item=>item.prodTitleEn == this.shopForm.prodTitleEn)
我在何方's avatar
我在何方 committed
944
        this.shopForm.sum = list[0].num
945
        this.quantitySum = list[0].quantity
946
        this.shopForm.prodTitleZh = list[0].prodTitleZh
dragondean@qq.com's avatar
dragondean@qq.com committed
947
    },*/
948
    haddleAdd(){
我在何方's avatar
我在何方 committed
949 950
      let that = this
      if(!that.form.transportId){
我在何方's avatar
我在何方 committed
951
        that.$message.error(this.$t("请选择运输方式"));
我在何方's avatar
我在何方 committed
952
        return
953
      }
我在何方's avatar
我在何方 committed
954
      if(!that.form.destWarehouseId){
我在何方's avatar
我在何方 committed
955
        that.$message.error(this.$t("请选择目的仓库"));
我在何方's avatar
我在何方 committed
956
        return
我在何方's avatar
我在何方 committed
957 958 959 960 961 962 963 964
      }
      // if(!this.form.channelId){
      //   this.$modal.msgError("请选择出货渠道");
      // }
      var params = {
          dstWarehouseId: that.form.destWarehouseId,
          parentOrderId: that.orderData.orderId,
          parentOrderNo: that.orderData.orderNo,
我在何方's avatar
我在何方 committed
965 966
          transportId: that.form.transportId,
          channelId:that.form.channelId
我在何方's avatar
我在何方 committed
967 968 969 970 971
      }
      createSplit(params).then(res=>{
        that.getList()
      })
      that.open = false
972
    },
973
    /*cancel(){
974 975
      this.open = false
      this.form = {}
976
    },*/
977 978 979 980 981
    shopAdd(){
      this.$refs["shopForm"].validate(valid => {
        if (!valid) {
          return;
        }
dragondean@qq.com's avatar
dragondean@qq.com committed
982 983 984 985 986 987 988
        if(!this.shopForm.specsRecordVOList.length){
          return this.$message.error(this.$t("请放入品名"));
        }
        // 放入数据不能大于可拆数据
        if(this.putin.num > this.leftData.num){
          return this.$message.error(this.$t("放入箱数不能大于可拆箱数"));
        }
dragondean@qq.com's avatar
dragondean@qq.com committed
989 990 991
        this.shopForm.specsRecordVOList.forEach(item => {
          item.boxGauge = `${item.boxGauge1}*${item.boxGauge2}*${item.boxGauge3}`
        })
dragondean@qq.com's avatar
dragondean@qq.com committed
992 993 994
        var params = {
          num:this.putin.num,
          orderItemId:this.shopForm.orderItemId,
dragondean@qq.com's avatar
dragondean@qq.com committed
995
          orderSplitId:this.splitData[this.splitIndex].id,
dragondean@qq.com's avatar
dragondean@qq.com committed
996 997
          remark:this.shopForm.remark,
          volume: this.putin.volume,
998
          chargeVolume: this.shopForm.chargeVolume,
dragondean@qq.com's avatar
dragondean@qq.com committed
999
          weight: this.putin.weight,
1000
          quantity: this.putin.quantity,
1001
          chargeWeight: this.shopForm.chargeWeight,
dragondean@qq.com's avatar
dragondean@qq.com committed
1002
          worth: this.shopForm.worth || 0,
dragondean@qq.com's avatar
dragondean@qq.com committed
1003 1004
          specsRecordVOList:this.shopForm.specsRecordVOList
        }
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021

        // 体积重量不能为0
        const fields = {
          'volume': this.$t('体积'),
          'weight': this.$t('重量'),
          'chargeVolume': this.$t('收费体积'),
          'chargeWeight': this.$t('收费重量'),
        }
        let errFields = []
        Object.keys(fields).forEach(field => {
          if(params[field] < 0.01){
            errFields.push(fields[field])
          }
        })
        if(errFields.length){
          return this.$message.error(this.$t("{field}最少为0.01", {field: errFields.join(",")}))
        }
dragondean@qq.com's avatar
dragondean@qq.com committed
1022
        /*if(this.quantityshow){
dragondean@qq.com's avatar
dragondean@qq.com committed
1023
          params.quantity = this.shopForm.quantity
dragondean@qq.com's avatar
dragondean@qq.com committed
1024 1025
        }*/

dragondean@qq.com's avatar
dragondean@qq.com committed
1026 1027 1028 1029 1030 1031
        createSplitItem(params).then(async res=>{
          this.$message.success(this.$t("放入成功"));
          await this.getList()
          this.shopForm = {}
          this.shopOpen = false
        })
1032 1033
      })
    },
我在何方's avatar
我在何方 committed
1034 1035
    removeShop(id){
      let that = this
我在何方's avatar
我在何方 committed
1036
      that.$confirm(that.$t('是否移除货物吗?')).then(function () {
我在何方's avatar
我在何方 committed
1037
        deleteSplitItem(id).then(res=>{
我在何方's avatar
我在何方 committed
1038
          that.$message.success(that.$t("移除成功"));
我在何方's avatar
我在何方 committed
1039 1040 1041 1042 1043 1044
           that.getList()
        })
      })
    },
    cancelSplit(){
      let that = this
我在何方's avatar
我在何方 committed
1045
      if(!that.reason){
我在何方's avatar
我在何方 committed
1046
        that.$message.error(that.$t("请输入取消原因"));
我在何方's avatar
我在何方 committed
1047 1048 1049
        return
      }
        cancelApply({orderId:that.queryParams.orderId,reason:that.reason}).then(res=>{
我在何方's avatar
我在何方 committed
1050
          that.$message.success(that.$t("取消成功"));
我在何方's avatar
我在何方 committed
1051
          that.$store.dispatch('tagsView/delCurrentView')
我在何方's avatar
我在何方 committed
1052
        })
1053 1054 1055 1056 1057 1058
    },
    shopCancel(){
      this.shopOpen = false
      this.shopForm = {}
    },
    /** 删除按钮操作 */
我在何方's avatar
我在何方 committed
1059 1060
    deleteSplit(id) {
      let that = this
我在何方's avatar
我在何方 committed
1061
      that.$confirm(that.$t('是否确认删除新拆的订单吗?')).then(function () {
我在何方's avatar
我在何方 committed
1062
        deleteSplit(id).then(res=>{
我在何方's avatar
我在何方 committed
1063
          that.$message.success(that.$t("删除成功"));
我在何方's avatar
我在何方 committed
1064 1065 1066
           that.getList()
        })
      })
1067
    },
dragondean@qq.com's avatar
dragondean@qq.com committed
1068 1069 1070 1071
    // 删除一行,可选参数index表上行号,参数不是数字则删除最后一行
    deleteRow(index){
      const spliceIndex = typeof index !== 'number' ? this.shopForm.specsRecordVOList.length - 1 : index
      this.shopForm.specsRecordVOList.splice(spliceIndex, 1)
1072
      this.calcDefaultData()
dragondean@qq.com's avatar
dragondean@qq.com committed
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
    },
    // 计算体积
    calcVolume(row){
      let volume = Decimal(row.boxGauge1 || 0)
          .times(Decimal(row.boxGauge2 || 0))
          .times(Decimal(row.boxGauge3 || 0)).div(1000000)
      // 如果是箱的单位要乘以箱数
      if(row.specificationType === 1) {
        row.volume = volume.times(Decimal(row.num || 0))
      }

      // 最低0.01
      volume = Math.max(0.01, volume.toNumber().toFixed(2))
      this.$set(row, 'volume', volume)
      this.$set(row, 'chargeVolume', volume)
1088 1089 1090
    },
    // 显示入库记录
    showWarehouse(row){
dragondean@qq.com's avatar
dragondean@qq.com committed
1091 1092 1093
      if(!row.specsRecordVOList){
        return this.$message.info(this.$t('暂无入仓记录'))
      }
1094
      this.currentWarehouseRecord = row.specsRecordVOList
dragondean@qq.com's avatar
dragondean@qq.com committed
1095 1096 1097 1098 1099 1100
    },
    // 获取储位名称
    getLocationName(locationArr){
      if(!locationArr || !locationArr.length) return ''
      let arr = []
      locationArr.forEach(item => {
dragondean@qq.com's avatar
dragondean@qq.com committed
1101
        arr.push(`${item.areaName || ''}${item.locationName || ''}`)
dragondean@qq.com's avatar
dragondean@qq.com committed
1102 1103 1104 1105 1106 1107
      })
      return Array.from(new Set(arr)).join(",")
    },
    // 根据入仓记录打开放入弹层
    putInRecord(row){
      this.currentPutIn = row
1108
      // 此条入仓记录已拆出的入仓记录,这样在放入的时候可以确保不超过此入仓记录的数量
1109
      let specsRecordVOList = this.getWarehouseInspecsRecordVOList(row.id)
1110
      this.currentPutIn.specsRecordVOList = specsRecordVOList
dragondean@qq.com's avatar
dragondean@qq.com committed
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
    },
    // 放入回调
    handlePutin(list){
      if(!list.length){
        return this.$message.error(this.$t("请至少放入一条数据"))
      }
      list.forEach(item => {
        this.shopForm.specsRecordVOList.push({...item})
      })
      this.currentPutIn = null
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
      this.calcDefaultData()
    },
    // 清空放入记录
    clearAll(){
      this.$confirm(this.$t("确定要清空放入数据么?")).then(res => {
        this.shopForm.specsRecordVOList = []
        this.calcDefaultData()
      })
    },
    // 计算放入的默认值
    calcDefaultData(){
1132 1133
      const orderItem = this.orderData.orderItemVOList.find(item => item.orderItemId == this.shopForm.orderItemId)
      const rate = this.putin.num / orderItem.warehouseInInfoVO.cartonsNum
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
      /*
      * 1 普货 2 重货 3 泡货
      * 普货 收费数据=入仓数据
      * 泡货 收费方数=入仓方数 收费重量 = 品名收费重量*比例
      * 重货 收费方数=品名收费方数*比例 收费重量 = 入仓重量
      * */
      const chargeVolume = orderItem.itemType === 2 ? (orderItem.chargeVolume*rate).toFixed(2) : this.putin.volume
      const chargeWeight = orderItem.itemType === 3 ? (orderItem.chargeWeight*rate).toFixed(2) : this.putin.weight
      this.$set(this.shopForm, 'chargeVolume', chargeVolume)
      this.$set(this.shopForm, 'chargeWeight', chargeWeight)
dragondean@qq.com's avatar
dragondean@qq.com committed
1144
      this.$set(this.shopForm, 'worth', (orderItem.worth*rate).toFixed(2))
1145
    },
dragondean@qq.com's avatar
dragondean@qq.com committed
1146 1147
    // 重置
    reset(){
1148
      return deleteAllSplit(this.queryParams.orderId).then(res => {
dragondean@qq.com's avatar
dragondean@qq.com committed
1149 1150
        this.getList()
      })
1151 1152 1153 1154 1155
    },
    // 取消
    async cancel(){
      await this.reset()
      this.$store.dispatch('tagsView/delCurrentView')
dragondean@qq.com's avatar
dragondean@qq.com committed
1156
    }
1157 1158 1159
  }
}
</script>
我在何方's avatar
我在何方 committed
1160
<style scoped>
1161 1162 1163
.page-title{
  margin: 0;
}
1164 1165 1166 1167 1168
  .card-title{
      font-size: 18px;
      font-weight: bold;
       margin-top: 10px;
  }
我在何方's avatar
我在何方 committed
1169 1170 1171
  .card-info{
    font-size: 16px;
  }
1172 1173 1174 1175
  .card{
    margin-top: 20px;
  }
  .btn-header{
我在何方's avatar
我在何方 committed
1176
    width: 90%;
1177 1178 1179 1180 1181 1182 1183 1184 1185
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
  }
  .red{
    color:#ff3430;
    font-size: 15px;
  }
我在何方's avatar
我在何方 committed
1186 1187 1188
  .footer_btn{
    padding-bottom: 60px;
  }
我在何方's avatar
我在何方 committed
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
  .cancel_notice{
    font-size: 16px;
    font-weight: 600;
  }
  .cancel_content{
    display: flex;
    align-items: center;
    padding-top: 20px;
  }
  .cancel_content span{
    width: 100px;
  }
dragondean@qq.com's avatar
dragondean@qq.com committed
1201 1202 1203 1204

  ::v-deep .el-form-item--mini.is-error{
    margin-bottom: 18px;
  }
1205
</style>