creatCollection.vue 60.3 KB
Newer Older
1 2
<template>
  <div class="app-container">
3
    <el-form
吴滔's avatar
吴滔 committed
4 5 6 7
        ref="form"
        :model="form"
        label-width="120px"
        label-position="left"
我在何方's avatar
我在何方 committed
8
        :inline="true"
吴滔's avatar
吴滔 committed
9
      >
10
      <el-card>
吴滔's avatar
吴滔 committed
11 12
        <div v-if="id" slot="header" class="card-title">{{ $t('修改收款单') }}</div>
        <div v-else slot="header" class="card-title">{{ $t('新增收款单') }}</div>
我在何方's avatar
我在何方 committed
13
        <!-- <el-descriptions :column="3" border>-->
我在何方's avatar
我在何方 committed
14
          <!-- <el-descriptions-item > -->
吴滔's avatar
吴滔 committed
15
            <el-form-item
我在何方's avatar
我在何方 committed
16
              style="margin-bottom: 0;margin-top: 20px;"
吴滔's avatar
吴滔 committed
17
              prop="customerId"
我在何方's avatar
我在何方 committed
18
              :span="4"
吴滔's avatar
吴滔 committed
19
            >
我在何方's avatar
我在何方 committed
20
            <span style="margin-right:20px"><span style="color: #ff4949;">*</span>{{$t('客户')}}</span>
吴滔's avatar
吴滔 committed
21 22
              <customer-selector
                v-model="form.customerId"
23
                @change="customerChange"
吴滔's avatar
吴滔 committed
24 25
              />
            </el-form-item>
我在何方's avatar
我在何方 committed
26 27
  <!--        </el-descriptions-item>
          <el-descriptions-item > -->
吴滔's avatar
吴滔 committed
28
            <el-form-item
我在何方's avatar
我在何方 committed
29
              style="margin-bottom: 0;margin-top: 20px;"
吴滔's avatar
吴滔 committed
30
              prop="departmentId"
我在何方's avatar
我在何方 committed
31
              :span="4"
吴滔's avatar
吴滔 committed
32
            >
我在何方's avatar
我在何方 committed
33
            <span style="margin-right:20px"><span style="color: #ff4949;">*</span>{{$t('部门')}}:</span>
吴滔's avatar
吴滔 committed
34 35 36
              <el-select
                v-model="form.departmentId"
                style="width: 300px"
吴滔's avatar
吴滔 committed
37
                :placeholder="$t('请选择部门')"
吴滔's avatar
吴滔 committed
38 39 40 41 42 43 44 45 46 47
              >
                <el-option
                  v-for="item in deptData"
                  :key="item.id"
                  :label="item.name"
                  :value="item.id"
                />
              </el-select>
            </el-form-item>
            <el-form-item
我在何方's avatar
我在何方 committed
48
              style="margin-bottom: 0;margin-top: 20px;"
吴滔's avatar
吴滔 committed
49
              prop="salesmanId"
我在何方's avatar
我在何方 committed
50
              :span="4"
吴滔's avatar
吴滔 committed
51
            >
我在何方's avatar
我在何方 committed
52
            <span style="margin-right:20px"><span style="color: #ff4949;">*</span>{{$t('业务员')}}:</span>
我在何方's avatar
我在何方 committed
53
              <el-select v-model="form.salesmanId" filterable :placeholder="$t('请选择业务员')" @change="v => form.salesmanName = creatorData.find(t => t.id === v).nickname">
吴滔's avatar
吴滔 committed
54 55 56 57 58 59 60 61
                <el-option
                  v-for="item in creatorData"
                  :key="item.id"
                  :label="item.nickname"
                  :value="item.id"
                />
              </el-select>
            </el-form-item>
我在何方's avatar
我在何方 committed
62 63 64 65 66
          <!-- </el-descriptions-item> -->
          <!-- <el-descriptions-item > -->
<!--            <el-form-item
              :label="$t('手续费(RMB)')"
              style="margin-bottom: 0;margin-top: 20px;"
吴滔's avatar
吴滔 committed
67
              prop="feeRate"
吴滔's avatar
吴滔 committed
68
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('手续费不能为空') }"
吴滔's avatar
吴滔 committed
69 70 71
            >
              <el-input
                v-model="form.feeRate"
吴滔's avatar
吴滔 committed
72
                :placeholder="$t('请输入手续费')"
吴滔's avatar
吴滔 committed
73
              ></el-input>
我在何方's avatar
我在何方 committed
74 75 76
            </el-form-item> -->
<!--          </el-descriptions-item>
          <el-descriptions-item > -->
吴滔's avatar
吴滔 committed
77
            <el-form-item
我在何方's avatar
我在何方 committed
78
             :label="$t('备注')+':'"
我在何方's avatar
我在何方 committed
79
              style="margin-bottom: 0;margin-top: 20px;"
我在何方's avatar
我在何方 committed
80
              label-width="55px"
吴滔's avatar
吴滔 committed
81 82
              prop="remark"
            >
我在何方's avatar
我在何方 committed
83
              <el-input style="display:inline-block;" v-model="form.remark" :placeholder="$t('备注')"></el-input>
吴滔's avatar
吴滔 committed
84
            </el-form-item>
我在何方's avatar
我在何方 committed
85 86
          <!-- </el-descriptions-item> -->
        <!-- </el-descriptions> -->
87
      </el-card>
88
      <el-card class="card amountCard">
我在何方's avatar
我在何方 committed
89
        <div slot="header" class="card-title">{{ $t('应收明细') }}</div>
90 91 92 93 94 95 96
        <el-col :span="1.5">
          <el-button
            type="primary"
            plain
            icon="el-icon-plus"
            size="mini"
            @click="handleAdd"
我在何方's avatar
我在何方 committed
97
            v-hasPermi="['ecw:voucher:create:add']"
98
            style="padding: 10px; margin-bottom: 10px"
吴滔's avatar
吴滔 committed
99
            >{{ $t('添加未收客户款项') }}</el-button
100 101
          >
        </el-col>
我在何方's avatar
我在何方 committed
102
        <el-table v-loading="loadings" :data="list" border :key="isUpdate">
吴滔's avatar
吴滔 committed
103 104 105
          <el-table-column :label="$t('订单号')" align="center" prop="orderNo" />
          <el-table-column :label="$t('唛头')" align="center" prop="marks" />
          <el-table-column :label="$t('品名')" align="center" prop="title">
106
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
107
             {{ scope.row.titleZh?(scope.row.titleZh + "(" + scope.row.titleEn + ")"): ''}}
108 109
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
110
          <el-table-column :label="$t('箱数')" align="center" prop="num" />
111 112 113 114 115
            <el-table-column :label="$t('体积/重量')" align="center" prop="weight">
              <template slot-scope="scope">
                 {{ scope.row.volume}}/{{ scope.row.weight}}
                </template>
              </el-table-column>
吴滔's avatar
吴滔 committed
116
          <el-table-column :label="$t('收入类型')" align="center" prop="feeType">
117 118 119 120 121 122 123
            <template slot-scope="scope">
              <dict-tag
                :type="DICT_TYPE.FEE_TYPE"
                :value="scope.row.feeType"
              ></dict-tag>
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
124
          <el-table-column :label="$t('单价金额')" align="center" prop="unitPrice">
125
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
126 127
              <span>{{ scope.row.unitPrice }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
128 129
            </template>
          </el-table-column>
130
          <el-table-column :label="$t('税率%')" align="center" prop="totalAmount">
131
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
132
                <el-input type="text" v-model="scope.row.taxPoint" @input="changeTaxRate(scope.row,scope.$index)"></el-input>
133 134 135
            </template>
          </el-table-column>
          <el-table-column :label="$t('不含税金额')" align="center" prop="totalAmount">
136
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
137
              <span>{{ scope.row.totalAmount }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
138 139
            </template>
          </el-table-column>
140
          <el-table-column :label="$t('含税金额')" align="center" prop="taxAmount">
141
            <template slot-scope="scope">
142
              <span>{{ scope.row.taxAmount }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
我在何方's avatar
我在何方 committed
143

我在何方's avatar
我在何方 committed
144
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
145
            </template>
146
             </el-table-column>
吴滔's avatar
吴滔 committed
147
          <el-table-column :label="$t('优惠金额')" align="center">
吴滔's avatar
吴滔 committed
148
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
149
             <span> {{ scope.row.discountTotal ? `${scope.row.discountTotal}`:0}}</span>
我在何方's avatar
我在何方 committed
150 151
              {{getCurrencyLabel(scope.row.currencyId)}}
			  <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
吴滔's avatar
吴滔 committed
152
              <span v-if="scope.row.discountTotal">{{scope.row.discountRemark?('('+scope.row.discountRemark+')'): '' }}</span>
吴滔's avatar
吴滔 committed
153 154
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
155
          <el-table-column :label="$t('操作')" align="center">
吴滔's avatar
吴滔 committed
156
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
157 158
              <el-button v-if="scope.row.type !== 'total'" type="text" v-hasPermi="['ecw:voucher:create:editdiscount']" @click="addDiscount(scope.row, scope.$index)">{{ scope.row.discountTotal ? $t('修改优惠') : $t('新增优惠') }}</el-button>
              <el-button v-if="scope.row.type !== 'total'" type="text" v-hasPermi="['ecw:voucher:create:deldiscount']" @click="deleteListRow(scope.$index)">{{ $t('删除') }}</el-button>
吴滔's avatar
吴滔 committed
159 160
            </template>
          </el-table-column>
161
        </el-table>
我在何方's avatar
我在何方 committed
162 163
<!--        <el-descriptions :column="2" border class="card">
          <el-descriptions-item > -->
吴滔's avatar
吴滔 committed
164
            <el-form-item
我在何方's avatar
我在何方 committed
165
              style="margin-bottom: 0;margin-top: 20px;"
166
              prop="openInvoice"
吴滔's avatar
吴滔 committed
167
            >
我在何方's avatar
我在何方 committed
168
            <span style="margin-right:20px"><span style="color: #ff4949;">*</span>{{$t('是否需要开票')}}:</span>
吴滔's avatar
吴滔 committed
169
              <el-select
170
                v-model="form.openInvoice"
吴滔's avatar
吴滔 committed
171
                :placeholder="$t('请选择是否需要开票')"
吴滔's avatar
吴滔 committed
172
              >
吴滔's avatar
吴滔 committed
173 174
                <el-option :value="1" :label="$t('是')"></el-option>
                <el-option :value="0" :label="$t('否')"></el-option>
吴滔's avatar
吴滔 committed
175 176
              </el-select>
            </el-form-item>
我在何方's avatar
我在何方 committed
177 178 179 180
            <el-form-item
              :label="$t('核销基准币种')+':'"
              style="margin-bottom: 0;margin-top: 20px;"
            >
我在何方's avatar
我在何方 committed
181 182
			{{getCurrencyLabel(showCurrencyId)}}
             <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="showCurrencyId" /> -->
我在何方's avatar
我在何方 committed
183 184
            </el-form-item>
<!--          </el-descriptions-item>
吴滔's avatar
吴滔 committed
185
          <el-descriptions-item :label="$t('核销基准币种')">
我在何方's avatar
我在何方 committed
186

187
          </el-descriptions-item>
我在何方's avatar
我在何方 committed
188
        </el-descriptions> -->
189
      </el-card>
190

191
      <el-card v-if="showInvoice" class="card">
吴滔's avatar
吴滔 committed
192
        <div slot="header" class="card-title">{{ $t('开票资料') }}</div>
193
        <el-descriptions :column="3" border>
吴滔's avatar
吴滔 committed
194
          <el-descriptions-item :label="$t('发票抬头')">
吴滔's avatar
吴滔 committed
195 196 197 198
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
199
              prop="invoice"
吴滔's avatar
吴滔 committed
200
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入发票抬头') }"
吴滔's avatar
吴滔 committed
201
            >
202 203 204
              <el-input v-model="form.invoice"></el-input>
            </el-form-item>
          </el-descriptions-item>
吴滔's avatar
吴滔 committed
205
          <el-descriptions-item :label="$t('纳税人识别号')">
206 207 208 209 210
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="taxpayer"
吴滔's avatar
吴滔 committed
211
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入纳税人识别号') }"
212 213 214 215
            >
              <el-input v-model="form.taxpayer"></el-input>
            </el-form-item>
          </el-descriptions-item>
吴滔's avatar
吴滔 committed
216
          <el-descriptions-item :label="$t('开户行')">
217 218 219 220 221
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="accountBank"
吴滔's avatar
吴滔 committed
222
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入开户行') }"
223 224 225 226
            >
              <el-input v-model="form.accountBank"></el-input>
            </el-form-item>
          </el-descriptions-item>
吴滔's avatar
吴滔 committed
227
          <el-descriptions-item :label="$t('账号')">
228 229 230 231 232
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="accountName"
吴滔's avatar
吴滔 committed
233
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入账号') }"
234 235 236 237
            >
              <el-input v-model="form.accountName"></el-input>
            </el-form-item>
          </el-descriptions-item>
吴滔's avatar
吴滔 committed
238
          <el-descriptions-item :label="$t('项目')">
239 240 241 242 243
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="projectName"
吴滔's avatar
吴滔 committed
244
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入项目') }"
245 246 247 248
            >
              <el-input v-model="form.projectName"></el-input>
            </el-form-item>
          </el-descriptions-item>
吴滔's avatar
吴滔 committed
249
          <el-descriptions-item :label="$t('税率%')">
250 251 252 253 254
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="taxRate"
吴滔's avatar
吴滔 committed
255
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入税率') }"
256 257 258 259
            >
              <el-input v-model="form.taxRate"></el-input>
            </el-form-item>
          </el-descriptions-item>
吴滔's avatar
吴滔 committed
260
          <el-descriptions-item :label="$t('开票地址/电话')">
261 262 263 264 265
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="addressPhone"
吴滔's avatar
吴滔 committed
266
              :rules="{ required: true, trigger: ['blur', 'change'], message: $t('请输入开票地址/电话') }"
267 268
            >
              <el-input v-model="form.addressPhone"></el-input>
吴滔's avatar
吴滔 committed
269 270 271
            </el-form-item>
          </el-descriptions-item>
        </el-descriptions>
272
      </el-card>
273
      <el-card class="card">
我在何方's avatar
我在何方 committed
274
        <div slot="header" class="card-title">{{ $t('收款信息') }}</div>
275
        <el-table :data="form.receiptAccountList" border :key="form.receiptAccountList.length">
吴滔's avatar
吴滔 committed
276
          <el-table-column :label="$t('应收币种')" align="center">
277
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
278
              {{getCurrencyLabel(scope.row.currencyId)}}
279 280
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
281
          <el-table-column :label="$t('应收金额')" align="center" prop="receivableAmount">
吴滔's avatar
吴滔 committed
282
            <template slot-scope="scope" v-if="scope.row.type !== 'total'">
283
              {{ `${NP.minus(scope.row.receivableAmount, scope.row.discountTotal || 0)}${scope.row.discountTotal > 0 ? `(${scope.row.receivableAmount} - ${scope.row.discountTotal})` : ''}` }}
吴滔's avatar
吴滔 committed
284 285
            </template>
          </el-table-column>
我在何方's avatar
我在何方 committed
286
          <el-table-column align="center">
287
            <template #header>
我在何方's avatar
我在何方 committed
288
              {{ $t('核销基准币种')+''+getCurrencyLabel(showCurrencyId)+''+ $t('汇率') }}
289 290 291 292 293 294 295 296 297 298 299
            </template>
            <template slot-scope="scope">
              <template v-if="scope.row.type !== 'total'">
                <span v-if="showCurrencyId === scope.row.currencyId">{{ scope.row.writeOffRate }}</span>
                <el-form-item
                  v-else
                  label=""
                  label-width="0"
                  style="margin-bottom: 0"
                  :prop="`receiptAccountList.${scope.$index}.writeOffRate`"
                >
吴滔's avatar
吴滔 committed
300
                  <el-input v-model="scope.row.writeOffRate" @input="() => writeOffRateChange(scope.row, scope.$index)"></el-input>
301 302 303
                </el-form-item>
              </template>
              <template v-else>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
304
                {{ $t('应核销总金额')+''+getCurrencyLabel(showCurrencyId)+''}}
305 306 307 308 309
              </template>
            </template>
          </el-table-column>
          <el-table-column align="center" prop="writeOffAmount">
            <template #header>
我在何方's avatar
我在何方 committed
310
              {{ $t('核销基准金额')+''+getCurrencyLabel(showCurrencyId)+''}}
311 312
            </template>
          </el-table-column>
我在何方's avatar
我在何方 committed
313
          <el-table-column :label="$t('期望收款账户')" align="center">
314 315 316 317 318 319 320 321 322 323
            <template slot-scope="scope">
              <el-form-item
                v-if="scope.row.type !== 'total'"
                label=""
                label-width="0"
                style="margin-bottom: 0"
                :prop="`receiptAccountList.${scope.$index}.platformAccountId`"
              >
                <el-select
                  v-model="scope.row.platformAccountId"
吴滔's avatar
吴滔 committed
324
                  :placeholder="$t('请选择收款账户')"
325
                  @change="(platformAccountId)=>changePlatformAccountId(platformAccountId,scope.$index)"
326 327 328 329 330 331 332 333 334 335 336
                >
                  <el-option
                    v-for="item in bankData"
                    :key="item.id"
                    :label="item.baAccountName + '(' + item.baAccountNum + ')'"
                    :value="item.id"
                  />
                </el-select>
              </el-form-item>
            </template>
          </el-table-column>
我在何方's avatar
我在何方 committed
337
          <el-table-column :label="$t('期望收款币种')" align="center">
338 339 340 341 342 343 344 345
            <template slot-scope="scope">
              <el-form-item
                v-if="scope.row.type !== 'total'"
                label=""
                label-width="0"
                style="margin-bottom: 0"
                :prop="`receiptAccountList.${scope.$index}.collectionCurrencyId`"
              >
我在何方's avatar
我在何方 committed
346 347 348 349 350 351 352 353
              <el-select
                v-model="scope.row.collectionCurrencyId"
                :placeholder="$t('请选择')"
                @change="val => currencyIdChange(val, scope.row, scope.$index)"
              >
                <el-option
                  v-for="item in currencyList"
                  :key="item.id"
我在何方's avatar
我在何方 committed
354
                  :label="$i18n.locale=='zh_CN'?item.titleZh:item.titleEn"
我在何方's avatar
我在何方 committed
355 356 357
                  :value="item.id"
                />
              </el-select>
358 359 360
              </el-form-item>
            </template>
          </el-table-column>
我在何方's avatar
我在何方 committed
361
          <el-table-column :label="$t('期望收款汇率')" align="center">
362 363 364 365 366 367 368 369 370 371
            <template slot-scope="scope">
              <el-form-item
                v-if="scope.row.type !== 'total'"
                label=""
                label-width="0"
                style="margin-bottom: 0"
                :prop="`receiptAccountList.${scope.$index}.collectionRate`"
              >
                <el-input v-model="scope.row.collectionRate" @input="() => rateChange(scope.row, scope.$index)"></el-input>
              </el-form-item>
我在何方's avatar
我在何方 committed
372
              <span v-else>{{ $t('期望收费金额') }}</span>
373 374
            </template>
          </el-table-column>
我在何方's avatar
我在何方 committed
375
          <el-table-column :label="$t('期望收款金额')" align="center" prop="collectionAmount">
376
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
377
              <span v-if="scope.row.type !== 'total'">{{ scope.row.collectionAmount }}</span>
378
              <div v-else>
379
                <div v-for="itemAmount in scope.row.collectionAmount">{{$i18n.locale=='zh_CN'?(itemAmount?itemAmount.currencyNameZh:''):(itemAmount?itemAmount.currencyNameEn:'')}}: {{ itemAmount.amount||''}}</div>
我在何方's avatar
我在何方 committed
380
<!--                <div v-if="scope.row.collectionAmount[1]">{{ $t('人民币') }}: {{ scope.row.collectionAmount[1].toFixed(6) }}</div>
吴滔's avatar
吴滔 committed
381
                <div v-if="scope.row.collectionAmount[2]">{{ $t('奈拉') }}: {{ scope.row.collectionAmount[2].toFixed(6) }}</div>
我在何方's avatar
我在何方 committed
382
                <div v-if="scope.row.collectionAmount[3]">{{ $t('西非法郎') }}: {{ scope.row.collectionAmount[3].toFixed(6) }}</div> -->
383 384 385 386 387 388
              </div>
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
            </template>
          </el-table-column>
        </el-table>
        <el-descriptions :column="2" border class="card">
吴滔's avatar
吴滔 committed
389
          <el-descriptions-item :label="$t('账单汇率有效期')">
390 391 392 393 394 395 396 397 398
            <el-form-item
              label=""
              label-width="0"
              style="margin-bottom: 0"
              prop="rateValidateDate"
            >
              <el-date-picker
                v-model="form.rateValidateDate"
                type="datetime"
吴滔's avatar
吴滔 committed
399
                value-format="yyyy-MM-dd HH:mm:ss"
吴滔's avatar
吴滔 committed
400
                :placeholder="$t('选择日期时间')">
401 402 403 404 405
              </el-date-picker>
            </el-form-item>
          </el-descriptions-item>
        </el-descriptions>
      </el-card>
406
    </el-form>
407
<!--    <div slot="footer" style="margin: 20px 0">
408
      <el-button v-if="id==0||form.state==0" type="primary" :loading="saveBtnLoading" @click="submitForm(1)">{{ $t('保存草稿') }}</el-button>
吴滔's avatar
吴滔 committed
409
      <el-button v-else type="primary" :loading="saveBtnLoading" @click="$store.dispatch('tagsView/delCurrentView')">{{ $t('返回') }}</el-button>
410
      <el-button type="primary" :loading="saveBtnLoading" @click="submitForm(0)">{{ id&&form.state!=0 ? $t('修改') : $t('新增收款单') }}</el-button>
411 412
    </div> -->
    <div slot="header" class="bpm-title">{{ $t('审核流程') }}</div>
我在何方's avatar
我在何方 committed
413
    <work-flow  xmlkey="merge_order" v-model="form.copyUserList"></work-flow>
414 415

    <div slot="footer" style="margin: 20px 0">
我在何方's avatar
我在何方 committed
416 417 418
      <el-button type="primary" @click="submitForm(0)" v-hasPermi="['ecw:voucher:create:sumbit']">{{$t('提交申请')}}</el-button>
      <el-button v-if="id==0||form.state==0" type="primary" :loading="saveBtnLoading" v-hasPermi="['ecw:voucher:create:save']" @click="submitForm(1)">{{ $t('保存草稿') }}</el-button>
      <el-button v-if="orderData.inWarehouseState==207" type="primary" v-hasPermi="['ecw:voucher:create:see']" @click="$router.push(`/bpm/process-instance/detail?id=`+orderApprovalBackVO.applyingFormId)">{{$t('审核中')}}</el-button>
我在何方's avatar
我在何方 committed
419
      <!-- <el-button v-if="orderData.inWarehouseState==207" plain type="primary" @click="dialogVisible = true">{{$t('取消审核')}}</el-button> -->
420 421
      <el-button plain type="primary" @click="$store.dispatch('tagsView/delCurrentView')">{{$t('返回')}}</el-button>
      <!-- <el-button type="primary" :loading="saveBtnLoading" @click="submitForm(0)">{{ id&&form.state!=0 ? $t('修改') : $t('新增收款单') }}</el-button> -->
422
    </div>
吴滔's avatar
吴滔 committed
423 424
    <el-dialog
      :visible.sync="open"
吴滔's avatar
吴滔 committed
425
      :title="$t('添加未收客户款项')"
吴滔's avatar
吴滔 committed
426 427
      width="80%"
      append-to-body
428
      @open="getList"
吴滔's avatar
吴滔 committed
429 430
    >
      <div>
Marcus's avatar
Marcus committed
431
        <!-- <div slot="header" class="card-title">{{ $t('添加未收客户款项') }}</div> -->
吴滔's avatar
吴滔 committed
432 433
        <!-- 搜索工作栏 -->
        <el-form
434
          v-if="open"
吴滔's avatar
吴滔 committed
435 436 437 438 439 440 441
          :model="queryParams"
          ref="queryForm"
          size="small"
          :inline="true"
          label-width="80px"
        >
          <el-row>
我在何方's avatar
我在何方 committed
442
            <el-form-item :label="$t('始发仓')">
吴滔's avatar
吴滔 committed
443 444
              <el-select
                v-model="queryParams.departureId"
吴滔's avatar
吴滔 committed
445
                :placeholder="$t('请选择始发地')"
吴滔's avatar
吴滔 committed
446 447 448 449 450 451 452 453 454
              >
                <el-option
                  v-for="item in expoerCityList"
                  :label="item.titleZh"
                  :value="item.id"
                  :key="item.id"
                ></el-option>
              </el-select>
            </el-form-item>
我在何方's avatar
我在何方 committed
455
            <el-form-item :label="$t('目的仓')">
吴滔's avatar
吴滔 committed
456 457
              <el-select
                v-model="queryParams.objectiveId"
吴滔's avatar
吴滔 committed
458
                :placeholder="$t('请选择始发地')"
吴滔's avatar
吴滔 committed
459 460 461 462 463 464 465 466 467
              >
                <el-option
                  v-for="item in importCityList"
                  :label="item.titleZh"
                  :value="item.id"
                  :key="item.id"
                ></el-option>
              </el-select>
            </el-form-item>
吴滔's avatar
吴滔 committed
468
            <el-form-item :label="$t('运输方式')">
吴滔's avatar
吴滔 committed
469 470 471 472 473 474
              <dict-selector
                :type="DICT_TYPE.ECW_TRANSPORT_TYPE"
                v-model="queryParams.transportId"
                formatter="number"
              />
            </el-form-item>
吴滔's avatar
吴滔 committed
475
            <el-form-item :label="$t('出货渠道')">
吴滔's avatar
吴滔 committed
476 477
              <el-select
                v-model="queryParams.channelId"
吴滔's avatar
吴滔 committed
478
                :placeholder="$t('请选择出货渠道')"
吴滔's avatar
吴滔 committed
479 480 481 482 483 484 485 486 487 488 489
              >
                <el-option
                  v-for="item in channelList"
                  :label="item.nameZh"
                  :value="item.channelId"
                  :key="item.channelId"
                ></el-option>
              </el-select>
            </el-form-item>
          </el-row>
          <el-row>
吴滔's avatar
吴滔 committed
490
            <el-form-item :label="$t('报关方式')">
吴滔's avatar
吴滔 committed
491 492 493 494 495
              <dict-selector
                :type="DICT_TYPE.ECW_CUSTOMS_TYPE"
                v-model="queryParams.customsType"
              />
            </el-form-item>
吴滔's avatar
吴滔 committed
496
            <el-form-item :label="$t('控货')">
吴滔's avatar
吴滔 committed
497 498 499 500 501
              <dict-selector
                :type="DICT_TYPE.INFRA_BOOLEAN_STRING"
                v-model="queryParams.control"
              />
            </el-form-item>
吴滔's avatar
吴滔 committed
502
            <el-form-item :label="$t('客户名称')">
吴滔's avatar
吴滔 committed
503 504 505 506 507 508
              <customer-selector
                v-model="queryParams.consignorId"
                @change="consignor = $event"
              />
            </el-form-item>
          </el-row>
吴滔's avatar
吴滔 committed
509
          <el-form-item :label="$t('订单编号')" prop="orderNo">
吴滔's avatar
吴滔 committed
510 511
            <el-input
              v-model="queryParams.orderNo"
吴滔's avatar
吴滔 committed
512
              :placeholder="$t('请输入订单编号')"
吴滔's avatar
吴滔 committed
513 514 515 516
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
517

吴滔's avatar
吴滔 committed
518
          <el-form-item :label="$t('自编号')" prop="selfNo">
吴滔's avatar
吴滔 committed
519
            <el-input
吴滔's avatar
吴滔 committed
520
              v-model="queryParams.selfNo"
吴滔's avatar
吴滔 committed
521
              :placeholder="$t('请输入自编号')"
吴滔's avatar
吴滔 committed
522 523 524 525
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
526

吴滔's avatar
吴滔 committed
527 528
          <el-form-item>
            <el-button type="primary" icon="el-icon-search" @click="handleQuery"
吴滔's avatar
吴滔 committed
529
              >{{$t('查询')}}</el-button
吴滔's avatar
吴滔 committed
530 531 532 533
            >
          </el-form-item>
        </el-form>
        <el-table
534
          ref="multipleTable"
吴滔's avatar
吴滔 committed
535 536 537 538
          v-loading="loading1"
          :data="orderData"
          border
          @selection-change="handleSelectionChange"
539 540
          row-key="id"
          height="calc(100vh - 480px)"
吴滔's avatar
吴滔 committed
541
        >
吴滔's avatar
吴滔 committed
542
          <el-table-column type="selection" width="55" :reserve-selection="true"> </el-table-column>
吴滔's avatar
吴滔 committed
543 544 545
          <el-table-column :label="$t('订单号')" align="center" prop="orderNo" />
          <el-table-column :label="$t('唛头')" align="center" prop="marks" />
          <el-table-column :label="$t('品名')" align="center" prop="title">
吴滔's avatar
吴滔 committed
546
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
547
              {{ scope.row.titleZh?(scope.row.titleZh + "(" + scope.row.titleEn + ")"): ''}}
吴滔's avatar
吴滔 committed
548 549
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
550
          <el-table-column :label="$t('箱数')" align="center" prop="num" />
551 552 553 554 555
          <el-table-column :label="$t('体积/重量')" align="center" prop="weight">
            <template slot-scope="scope">
               {{ scope.row.volume}}/{{ scope.row.weight}}
              </template>
            </el-table-column>
吴滔's avatar
吴滔 committed
556 557 558
          <el-table-column :label="$t('发货人')" align="center" prop="consignorName" />
          <el-table-column :label="$t('收货人')" align="center" prop="consigneeName" />
          <el-table-column :label="$t('订单状态')" align="center" prop="status">
吴滔's avatar
吴滔 committed
559 560 561 562 563 564 565
            <template slot-scope="scope">
              <dict-tag
                :type="DICT_TYPE.ORDER_STATUS"
                :value="scope.row.status"
              />
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
566
          <el-table-column :label="$t('收入类型')" align="center" prop="feeType">
吴滔's avatar
吴滔 committed
567 568 569 570 571 572 573
            <template slot-scope="scope">
              <dict-tag
                :type="DICT_TYPE.FEE_TYPE"
                :value="scope.row.feeType"
              ></dict-tag>
            </template>
          </el-table-column>
Marcus's avatar
Marcus committed
574
          <!-- <el-table-column :label="$t('单价美元')" align="center" prop="unitPrice" /> -->
吴滔's avatar
吴滔 committed
575
          <el-table-column :label="$t('单价')" align="center" prop="unitPrice">
576
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
577 578
              <span>{{ scope.row.unitPrice }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
579 580
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
581
          <el-table-column :label="$t('总金额')" align="center" prop="totalAmount">
582
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
583 584
              <span>{{ scope.row.totalAmount }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
585 586
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
587 588 589 590 591 592 593 594 595 596
        </el-table>
        <pagination
          v-show="total > 0"
          :total="total"
          :page.sync="queryParams.page"
          :limit.sync="queryParams.rows"
          @pagination="getList"
        />
        <!-- </el-card> -->
        <div slot="footer" class="dialog-footer">
吴滔's avatar
吴滔 committed
597 598
          <el-button type="primary" @click="saveSelectList">{{ $t('确认添加') }}</el-button>
          <el-button @click="hiddenDialog">{{ $t('取消') }}</el-button>
吴滔's avatar
吴滔 committed
599 600 601
        </div>
      </div>
    </el-dialog>
吴滔's avatar
吴滔 committed
602
    <el-dialog v-if="discountVisible" :visible.sync="discountVisible" :title="$t('优惠信息确认')" width="60%" append-to-body>
吴滔's avatar
吴滔 committed
603
      <el-form label-width="120px">
吴滔's avatar
吴滔 committed
604
        <el-form-item v-if="form.receiptNo" :label="$t('收款单号')">
吴滔's avatar
吴滔 committed
605 606 607
          {{ form.receiptNo }}
        </el-form-item>
        <el-table :data="[selectListRow]" border style="margin-bottom: 22px">
吴滔's avatar
吴滔 committed
608 609 610
          <el-table-column :label="$t('订单号')" align="center" prop="orderNo" />
          <el-table-column :label="$t('唛头')" align="center" prop="marks" />
          <el-table-column :label="$t('品名')" align="center" prop="title">
吴滔's avatar
吴滔 committed
611
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
612
              {{ scope.row.titleZh?(scope.row.titleZh + "(" + scope.row.titleEn + ")"): ''}}
吴滔's avatar
吴滔 committed
613 614
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
615
          <el-table-column :label="$t('箱数')" align="center" prop="num" />
616 617 618 619 620
          <el-table-column :label="$t('体积/重量')" align="center" prop="weight">
            <template slot-scope="scope">
               {{ scope.row.volume}}/{{ scope.row.weight}}
              </template>
            </el-table-column>
吴滔's avatar
吴滔 committed
621
          <el-table-column :label="$t('收入类型')" align="center" prop="feeType">
吴滔's avatar
吴滔 committed
622 623 624 625 626 627 628
            <template slot-scope="scope">
              <dict-tag
                :type="DICT_TYPE.FEE_TYPE"
                :value="scope.row.feeType"
              ></dict-tag>
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
629
          <el-table-column :label="$t('单价金额')" align="center" prop="unitPrice">
吴滔's avatar
吴滔 committed
630
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
631 632
              <span>{{ scope.row.unitPrice }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
吴滔's avatar
吴滔 committed
633 634
            </template>
          </el-table-column>
吴滔's avatar
吴滔 committed
635
          <el-table-column :label="$t('总金额')" align="center" prop="totalAmount">
吴滔's avatar
吴滔 committed
636
            <template slot-scope="scope">
我在何方's avatar
我在何方 committed
637
              <span>{{ scope.row.taxAmount }}{{getCurrencyLabel(scope.row.currencyId)}}</span>
我在何方's avatar
我在何方 committed
638
              <!-- <dict-tag :type="DICT_TYPE.BOX_SHIPPING_PRICE_UNIT" :value="scope.row.currencyId" /> -->
吴滔's avatar
吴滔 committed
639 640 641
            </template>
          </el-table-column>
        </el-table>
吴滔's avatar
吴滔 committed
642
        <el-form-item :label="$t('总金额')">
我在何方's avatar
我在何方 committed
643
          {{ selectListRow.taxAmount }}{{getCurrencyLabel(selectListRow.currencyId)}}
吴滔's avatar
吴滔 committed
644
        </el-form-item>
吴滔's avatar
吴滔 committed
645
        <el-form-item :label="$t('优惠金额')">
我在何方's avatar
我在何方 committed
646
          <el-input v-model="discountForm.discountTotal" type="number" min="0" :max="selectListRow.totalAmount" @input="checkDiscount" style="width: 300px" ></el-input>
我在何方's avatar
我在何方 committed
647 648
          &nbsp;&nbsp;{{getCurrencyLabel(selectListRow.currencyId)}}

吴滔's avatar
吴滔 committed
649
        </el-form-item>
吴滔's avatar
吴滔 committed
650
        <el-form-item :label="$t('优惠原因')">
吴滔's avatar
吴滔 committed
651 652
          <el-input v-model="discountForm.discountRemark" type="textarea" style="width: 300px"></el-input>
        </el-form-item>
吴滔's avatar
吴滔 committed
653
        <el-form-item :label="$t('优惠后')">
我在何方's avatar
我在何方 committed
654
          {{ (selectListRow.taxAmount - (discountForm.discountTotal || 0)).toFixed(2)}}
我在何方's avatar
我在何方 committed
655
		  {{getCurrencyLabel(selectListRow.currencyId)}}
吴滔's avatar
吴滔 committed
656
        </el-form-item>
吴滔's avatar
吴滔 committed
657
        <el-form-item v-if="opnotice" :label="$t('操作人')">
吴滔's avatar
吴滔 committed
658 659
          {{ discountForm.author }}
        </el-form-item>
吴滔's avatar
吴滔 committed
660
        <el-form-item v-if="opnotice" :label="$t('操作时间')">
吴滔's avatar
吴滔 committed
661 662 663 664
          {{ discountForm.time }}
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
吴滔's avatar
吴滔 committed
665 666
        <el-button type="primary" @click="saveDiscount">{{$t('提交')  }}</el-button>
        <el-button @click="cancelDiscount">{{ $t('取消') }}</el-button>
吴滔's avatar
吴滔 committed
667 668
      </div>
    </el-dialog>
669 670 671 672
  </div>
</template>

<script>
673
import { listSimpleUsers } from "@/api/system/user";
吴滔's avatar
吴滔 committed
674 675 676 677 678 679 680
import { DICT_TYPE } from "@/utils/dict";
import { getToken } from "@/utils/auth";
import CustomerSelector from "@/components/CustomerSelector";
import { getBankAccountPage } from "@/api/ecw/bankAccount";
import { listSimpleDepts } from "@/api/system/dept";
import { getChannelList } from "@/api/ecw/channel";
import { getTradeCityList } from "@/api/ecw/region";
681
import { createReceipt,getFirstReceivableListByOrderId, getReceivableList, getReceivableInfoByIds, getReceiptInfoByIds, getReceiptAccountList, getInvoicingItem, updateReceipt, updateReceivableDiscountById, getReceivableDiscountLogById } from "@/api/ecw/financial";
682 683
import {getCustomer} from '@/api/ecw/customer'
import NP from 'number-precision'
684
import {getOrder} from '@/api/ecw/order'
685 686
import { getCurrencyPage } from "@/api/ecw/currency";
import ret from "bluebird/js/release/util";
吴滔's avatar
吴滔 committed
687 688
import dayjs from "dayjs";
import { getUserProfile } from "@/api/system/user";
我在何方's avatar
我在何方 committed
689
import {getWarehouseList} from '@/api/ecw/warehouse'
690
import WorkFlow from '@/components/WorkFlow/'
691

吴滔's avatar
吴滔 committed
692 693 694
export default {
  name: "CreatCollection",
  components: {
695
    CustomerSelector,WorkFlow
吴滔's avatar
吴滔 committed
696 697 698
  },
  data() {
    return {
吴滔's avatar
吴滔 committed
699
      NP,
吴滔's avatar
吴滔 committed
700 701 702
      loadings: false,
      loading1: false,
      uploadFileUrl: process.env.VUE_APP_BASE_API + "/app-api/file/upload", // 上传的图片服务器地址
703
      form: {
吴滔's avatar
吴滔 committed
704
        receiptAccountList: []
705
      },
吴滔's avatar
吴滔 committed
706 707
      creatorData: [],
      list: [],
708
      // fileList: [],
吴滔's avatar
吴滔 committed
709
      orderData: [],
我在何方's avatar
我在何方 committed
710
      opnotice:false,
吴滔's avatar
吴滔 committed
711
      dialogTableKey: 0,
712
      total: 0,
吴滔's avatar
吴滔 committed
713 714
      headers: {
        Authorization: "Bearer " + getToken(),
715
      },
吴滔's avatar
吴滔 committed
716 717 718 719 720 721
      loading: "",
      open: false,
      bankData: [],
      params: {
        page: 1,
        rows: 20,
722
      },
吴滔's avatar
吴滔 committed
723 724 725 726 727 728 729
      deptData: [],
      deptArr: [],
      oadings: false,
      channelList: [],
      queryParams: {
        page: 1,
        rows: 20,
730
      },
吴滔's avatar
吴滔 committed
731 732
      multipleSelection: [],
      tradeCityList: [],
733 734
      id: 0,
      receiptId: 0,
735
      currencyList: [],
吴滔's avatar
吴滔 committed
736 737 738 739
      saveBtnLoading: false,
      discountVisible: false,
      discountForm: {},
      selectListRow: {},
吴滔's avatar
吴滔 committed
740
      selectListIndex: 0,
我在何方's avatar
我在何方 committed
741
      flag: false,
742 743
      warehouseList:[],
      selectedUsers:[],
我在何方's avatar
我在何方 committed
744 745
      dialogVisible:false,
      isUpdate:false
吴滔's avatar
吴滔 committed
746 747
    };
  },
748
  async created() {
吴滔's avatar
吴滔 committed
749 750 751
    getUserProfile().then(res => {
      this.discountForm.author = res.data.username
    })
752 753
    // 获取汇率
    await getCurrencyPage(this.params).then(res => this.currencyList = res.data.list)
我在何方's avatar
我在何方 committed
754
    getWarehouseList().then(res => this.warehouseList = res.data)
吴滔's avatar
吴滔 committed
755
    let that = this;
756 757 758
    if (that.$route.query.orderId) {
      await getFirstReceivableListByOrderId({id:that.$route.query.orderId}).then(response => {
        this.list = [...response.data]
759
        this.list.map(v=>{
我在何方's avatar
我在何方 committed
760
          if(!v.taxPoint){
761 762 763
            v.taxAmount = v.totalAmount
          }
        })
764
        this.calculation()
765 766 767 768 769 770
        getOrder(that.$route.query.orderId).then(response => {
          // console.log(response.data)
          if(response.data.customerId) this.$set(this.form,'customerId',response.data.customerId)
        })
    })
    }
吴滔's avatar
吴滔 committed
771
    if (that.$route.query.id) {
吴滔's avatar
吴滔 committed
772
      this.flag = true
吴滔's avatar
吴滔 committed
773
      this.id = this.$route.query.id;
我在何方's avatar
我在何方 committed
774
      console.log(this.id)
775
      getReceiptInfoByIds({ id: this.id }).then(res => {
我在何方's avatar
我在何方 committed
776
        if(res.data.rateValidateDate) res.data.rateValidateDate = dayjs(res.data.rateValidateDate).format('YYYY-MM-DD HH:mm:ss')
777 778
        this.form = Object.assign({}, this.form, res.data)
      })
吴滔's avatar
吴滔 committed
779
      await getInvoicingItem({ id: this.id }).then(res => {
780
        this.list = [...res.data]
781
        this.list.map(v=>{
我在何方's avatar
我在何方 committed
782
          if(!v.taxPoint){
783 784 785
            v.taxAmount = v.totalAmount
          }
        })
786 787
      })
      getReceiptAccountList({ id: this.id }).then(res => {
788 789 790 791 792
        if (res.data.length > 0) {
          // totalAmount
          res.data = [...res.data, {
            type: 'total',
            writeOffAmount: res.data.reduce((total, currentValue) => NP.plus(total, currentValue.writeOffAmount || 0), 0),
我在何方's avatar
我在何方 committed
793
            collectionAmount: []
794 795
          }]
        }
796
        this.$set(this.form, 'receiptAccountList', [...res.data])
797
        this.$nextTick(() => {
我在何方's avatar
我在何方 committed
798 799 800 801
          // const dollarList = this.list.filter(v => v.currencyId === 1)
          // const discountDollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
          // const d = this.form.receiptAccountList.find(v => v.currencyId == 1)
          // d && (d.discountTotal = discountDollar)
吴滔's avatar
吴滔 committed
802

我在何方's avatar
我在何方 committed
803 804 805 806
          // const rmbList = this.list.filter(v => v.currencyId === 2)
          // const discountRmb = rmbList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
          // const r = this.form.receiptAccountList.find(v => v.currencyId == 2)
          // r && (r.discountTotal = discountRmb)
吴滔's avatar
吴滔 committed
807

我在何方's avatar
我在何方 committed
808 809 810 811
          // const nairaList = this.list.filter(v => v.currencyId === 3)
          // const discountNaira = nairaList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
          // const n = this.form.receiptAccountList.find(v => v.currencyId == 3)
          // n && (n.discountTotal = discountNaira)
吴滔's avatar
吴滔 committed
812

813 814
          this.form.receiptAccountList.forEach((item, index) => {
            this.rateChange(item, index)
815

816
          });
817
          this.calculation()
818
        })
819 820 821 822 823 824
      })
    }
    if (that.$route.query.receiptId && that.$route.query.receiptId !== '0') {
      this.receiptId = this.$route.query.receiptId;
      getReceivableInfoByIds({ id: this.receiptId }).then(res => {
        this.list = [{...res.data}]
825
        this.list.map(v=>{
我在何方's avatar
我在何方 committed
826
          if(!v.taxPoint){
827 828 829
            v.taxAmount = v.totalAmount
          }
        })
830
        this.calculation()
我在何方's avatar
我在何方 committed
831 832 833

          getOrder(res.data.orderId).then(response => {
            // console.log(response.data)
834
            if(response.data.customerId) this.$set(this.form,'customerId',response.data.customerId)
我在何方's avatar
我在何方 committed
835
          })
836
      })
吴滔's avatar
吴滔 committed
837
    }
838 839

    // this.getList();
吴滔's avatar
吴滔 committed
840 841 842 843 844 845
    // if(that.$route.query.consignorId){
    //   this.queryParams.consignorId = this.$route.query.consignorId
    // }
    // if(that.$route.query.writeOffName){
    //   this.form.writeOffName = this.$route.query.writeOffName
    // }
846
    listSimpleUsers().then((res) => (that.creatorData = res.data));
吴滔's avatar
吴滔 committed
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
    getChannelList().then((res) => (that.channelList = res.data));
    getTradeCityList().then((res) => (that.tradeCityList = res.data));
    getBankAccountPage(that.params).then(
      (res) => (that.bankData = res.data.list)
    );
    listSimpleDepts().then((res) => {
      res.data.forEach((item) => {
        if (item.parentId == 0) {
          that.deptArr.push(item);
        } else {
          that.deptData.push(item);
        }
      });

      that.deptData.forEach((value) => {
        var dept = that.deptArr.filter((itt) => itt.id == value.parentId);
        if (dept.length > 0) {
          value.name = dept[0].name + " | " + value.name;
        }
      });
    });
  },
  computed: {
    expoerCityList() {
我在何方's avatar
我在何方 committed
871 872
      // return this.tradeCityList.filter((item) => item.type == 2);
      return this.warehouseList.filter(item => item.tradeType == 2 || item.tradeType == 3)
吴滔's avatar
吴滔 committed
873 874
    },
    importCityList() {
我在何方's avatar
我在何方 committed
875 876
      // return this.tradeCityList.filter((item) => item.type == 1);
      return this.warehouseList.filter(item => item.tradeType == 1 || item.tradeType == 3)
吴滔's avatar
吴滔 committed
877
    },
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
    showCurrencyId() {
      let fieldList = [];
      let groupList=[];
      this.list.map((element)=>{
          if(fieldList.indexOf(element['currencyId'])===-1){
              fieldList.push(element['currencyId'])
          }
      })
      for(let i=0;i<fieldList.length;i++){
          let arr = this.list.filter((element)=>{
              return element['currencyId']===fieldList[i];
          })
          groupList.push({
              currencyId:arr[0].currencyId,
              list:arr
          })
      }
      if (groupList.length === 1) return groupList[0].currencyId
      else return 1
    },
    showInvoice() {
      return this.form.openInvoice == 1
    }
吴滔's avatar
吴滔 committed
901 902
  },
  methods: {
我在何方's avatar
我在何方 committed
903 904
	  getCurrencyLabel(id){
	    var label = this.currencyList.filter(item=>item.id == id)
我在何方's avatar
我在何方 committed
905
	    if(label.length>0) return this.$i18n.locale=='zh_CN'?label[0].titleZh:label[0].titleEn
我在何方's avatar
我在何方 committed
906 907
	    return ''
	  },
我在何方's avatar
我在何方 committed
908 909 910 911 912
    checkDiscount(e){
      if(e>this.selectListRow.totalAmount){
        this.discountForm.discountTotal = this.selectListRow.totalAmount
      }
    },
913 914 915 916
    currencyIdChange(val, row, index) {
      row.collectionCurrencyId = val
      if (val == row.currencyId) row.collectionRate = 1
      else {
我在何方's avatar
我在何方 committed
917 918 919 920 921 922
        // if (row.currencyId == 1 && val == 3) row.collectionRate = this.UStoRMB()
        // if (row.currencyId == 1 && val == 2) row.collectionRate = this.UStoNAN()
        // if (row.currencyId == 3 && val == 1) row.collectionRate = this.RMBtoUS()
        // if (row.currencyId == 3 && val == 2) row.collectionRate = this.RMBtoNAN()
        // if (row.currencyId == 2 && val == 1) row.collectionRate = this.NANtoUS()
        // if (row.currencyId == 2 && val == 3) row.collectionRate = this.NANtoRMB()
923
         row.collectionRate = NP.times(this.currencyList.find(v => v.id === row.currencyId).huilv/100, this.currencyList.find(v => v.id === val).exchangeToFc/100).toFixed(6)
924
      }
我在何方's avatar
我在何方 committed
925

926 927
      this.rateChange(row, index)
    },
吴滔's avatar
吴滔 committed
928
    writeOffRateChange(row, index) {
929
      row.writeOffAmount = NP.times(row.writeOffRate || 0, NP.minus(row.receivableAmount, row.discountTotal)).toFixed(2)
吴滔's avatar
吴滔 committed
930 931 932 933

      const writeOffAmountTotal = this.form.receiptAccountList.filter(v => v.type !== 'total').reduce((total, currentValue) => NP.plus(total, currentValue.writeOffAmount || 0), 0)
      this.form.receiptAccountList[this.form.receiptAccountList.length -1].writeOffAmount = writeOffAmountTotal
    },
934
    rateChange(row, index) {
我在何方's avatar
我在何方 committed
935
      console.log(row)
936
      row.receivableAmount && (row.collectionAmount = NP.times(row.collectionRate || 0, NP.minus(row.receivableAmount, row.discountTotal||0)).toFixed(2))
937 938 939 940
      this.form.receiptAccountList[index] = {...row}

      setTimeout(() => {
        // 收款总计
我在何方's avatar
我在何方 committed
941 942 943 944
        var amountList =[]
        this.currencyList.forEach((item,index)=>{
          var dollarList = this.form.receiptAccountList.filter(v => v.collectionCurrencyId == item.id)
          if(dollarList.length>0){
945
            var dollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.collectionAmount), 0).toFixed(2)
我在何方's avatar
我在何方 committed
946
            amountList.push({currencyId:item.id,currencyNameEn:item.titleEn,currencyNameZh:item.titleZh,amount:dollar})
我在何方's avatar
我在何方 committed
947 948 949 950
          }
        })
        // const dollarList = this.form.receiptAccountList.filter(v => v.collectionCurrencyId == 1)
        // const dollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.collectionAmount), 0)
951

我在何方's avatar
我在何方 committed
952 953
        // const rmbList = this.form.receiptAccountList.filter(v => v.collectionCurrencyId == 3)
        // const rmb = rmbList.reduce((total, currentValue) => NP.plus(total, currentValue.collectionAmount), 0)
954

我在何方's avatar
我在何方 committed
955 956 957 958 959
        // const nairaList = this.form.receiptAccountList.filter(v => v.collectionCurrencyId == 2)
        // const naira = nairaList.reduce((total, currentValue) => NP.plus(total, currentValue.collectionAmount), 0)
        // const faList = this.form.receiptAccountList.filter(v => v.collectionCurrencyId == 6)
        // const fa = faList.reduce((total, currentValue) => NP.plus(total, currentValue.collectionAmount), 0)
        this.form.receiptAccountList[this.form.receiptAccountList.length -1].collectionAmount = amountList
960 961 962
        this.$set(this.form, 'receiptAccountList', [...this.form.receiptAccountList])
      }, 100)
    },
963 964
    //明细改变税率
    changeTaxRate(row,index){
965
      var pointArr = []
我在何方's avatar
我在何方 committed
966
      var regs=/^[0-9]+\d*(\.\d*)?$|^0?\.\d*[0-9]\d*$/;
967
      if(row.taxPoint&&!regs.test(row.taxPoint)){
968
        row.taxPoint = ''
969
        this.$modal.msgError(this.$t('输入税率格式不对'));
970 971 972 973 974 975
      }else{
         pointArr = row.taxPoint.split('.')
         if(pointArr.length>1&&pointArr[1]){
           row.taxPoint =Math.round(row.taxPoint*100)/100
         }

976
      }
我在何方's avatar
我在何方 committed
977 978 979 980 981 982 983
      if(row.taxPoint){
        var amout = NP.times(NP.divide(row.taxPoint,100), row.totalAmount)
        row.taxAmount = NP.plus(row.totalAmount,amout)
      }else{
        row.taxAmount = row.totalAmount
      }

984
      this.list[index] = {...row}
我在何方's avatar
我在何方 committed
985 986
      let dataArrTemp = JSON.stringify(this.list);
      this.list= JSON.parse(dataArrTemp);
987 988 989 990 991 992
      if(pointArr.length>1&&!pointArr[1]){
        return
      }else{
        this.calculation()
      }

993
    },
994
    calculation() {
995 996
      const copyList = this.form.receiptAccountList
      this.form.receiptAccountList = []
我在何方's avatar
我在何方 committed
997 998 999 1000
      this.currencyList.forEach((item,index)=>{
        var dollarList = this.list.filter(v => v.currencyId === item.id)
        if(dollarList.length>0){
          let dollar,discountDollar
我在何方's avatar
我在何方 committed
1001
            dollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.taxAmount || 0), 0)
我在何方's avatar
我在何方 committed
1002 1003
            discountDollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
            var t = copyList.find(v => v.currencyId == item.id)
1004
            console.log(discountDollar)
我在何方's avatar
我在何方 committed
1005 1006 1007 1008 1009
            this.form.receiptAccountList.push(
              {
                discountTotal: discountDollar,
                currencyId: item.id,
                receivableAmount: dollar,
1010
                writeOffRate: item.id==this.showCurrencyId?1: NP.times(this.currencyList.find(v => v.id === item.id).huilv/100, this.currencyList.find(v => v.id === this.showCurrencyId).exchangeToFc/100).toFixed(6),
我在何方's avatar
我在何方 committed
1011
                platformAccountId: t?.platformAccountId || '',
1012 1013
                collectionCurrencyId:  item.id,
                collectionRate: 1
我在何方's avatar
我在何方 committed
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
              }
            )
            this.calculationCount(NP.minus(dollar, discountDollar), item.id)
        }
      })

      // let dollar,discountDollar
      // if (dollarList.length > 0) {
      //   dollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.totalAmount || 0), 0)
      //   discountDollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
      //   const t = copyList.find(v => v.currencyId == 1)
      //   this.form.receiptAccountList = [
      //     {
      //       discountTotal: discountDollar,
      //       currencyId: 1,
      //       receivableAmount: dollar,
      //       writeOffRate: t?.writeOffRate || (this.showCurrencyId === 1 ? 1 : this.showCurrencyId === 2 ? this.UStoRMB() : this.UStoNAN()),
      //       platformAccountId: t?.platformAccountId || '',
      //       collectionCurrencyId: t?.collectionCurrencyId || 1,
      //       collectionRate: t?.collectionRate || 1
      //     }
      //   ]
      //   this.calculationCount(NP.minus(dollar, discountDollar), 1)
      // }
      // const rmbList = this.list.filter(v => v.currencyId === 2)
      // let rmb,discountRmb
      // if (rmbList.length > 0) {
      //   rmb = rmbList.reduce((total, currentValue) => NP.plus(total, currentValue.totalAmount || 0), 0)
      //   discountRmb = rmbList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
      //   const t = copyList.find(v => v.currencyId == 2)
      //   this.form.receiptAccountList = [
      //     ...this.form.receiptAccountList,
      //     {
      //       discountTotal: discountRmb,
      //       currencyId: 2,
      //       receivableAmount: rmb,
      //       writeOffRate: t?.writeOffRate || (this.showCurrencyId === 1 ? this.RMBtoUS() : this.showCurrencyId === 2 ? 1 : this.RMBtoNAN()),
      //       platformAccountId: t?.platformAccountId || '',
      //       collectionCurrencyId: t?.collectionCurrencyId || '',
      //       collectionRate: t?.collectionRate || ''
      //     }
      //   ]
      //   this.calculationCount(NP.minus(rmb, discountRmb), 2)
      // }
      // const nairaList = this.list.filter(v => v.currencyId === 3)
      // let naira,discountNaira
      // if (nairaList.length > 0) {
      //   naira = nairaList.reduce((total, currentValue) => NP.plus(total, currentValue.totalAmount || 0), 0)
      //   discountNaira = nairaList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
      //   const t = copyList.find(v => v.currencyId == 3)
      //   this.form.receiptAccountList = [
      //     ...this.form.receiptAccountList,
      //     {
      //       discountTotal: discountNaira,
      //       currencyId: 3,
      //       receivableAmount: naira,
      //       writeOffRate: t?.writeOffRate || (this.showCurrencyId === 1 ? this.NANtoUS() : this.showCurrencyId === 2 ? this.NANtoRMB() : 1),
      //       platformAccountId: t?.platformAccountId || '',
      //       collectionCurrencyId: t?.collectionCurrencyId || '',
      //       collectionRate: t?.collectionRate || '',
      //       collectionAmount:discountNaira
      //     }
      //   ]
      //   this.calculationCount(NP.minus(naira, discountNaira), 3)
      // }
1079 1080 1081 1082 1083
      if (this.form.receiptAccountList.length > 0) {
        // totalAmount
        const totalt = this.form.receiptAccountList.reduce((total, currentValue) => NP.plus(total, currentValue.writeOffAmount || 0), 0)
        this.form.receiptAccountList = [...this.form.receiptAccountList, {
          type: 'total',
1084
          writeOffAmount: totalt.toFixed(2),
我在何方's avatar
我在何方 committed
1085
          collectionAmount: [this.form.receiptAccountList.discountNaira, 0, 0]
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
        }]

        this.form.receivableTotalAmount = totalt
      }
      // receiptAccountList: [
          // { currencyId: 1, receivableAmount: 0, writeOffRate: 1, writeOffAmount: 999, platformAccountId: '', currencyId: '', rate: 1, collectionAmount: 0 },
          // { currencyId: 2, receivableAmount: 0, writeOffRate: 1, writeOffAmount: 999, platformAccountId: '', currencyId: '', rate: 1, collectionAmount: 0 },
          // { currencyId: 3, receivableAmount: 0, writeOffRate: 1, writeOffAmount: 999, platformAccountId: '', currencyId: '', rate: 1, collectionAmount: 0 },
        // ]

1096
      if (this.showCurrencyId === 1) { // 美元
1097 1098 1099 1100 1101 1102 1103
        // const usCount = NP.plus(dollar, NP.times(this.RMBtoUS(), rmb),  NP.times(this.NANtoUS(), naira))
        // this.form.receivableDetailList[0].rate = 1
        // this.form.receivableDetailList[0].amount = usCount
        // this.form.receivableDetailList[1].rate || (this.form.receivableDetailList[1].rate = this.UStoRMB())
        // this.form.receivableDetailList[2].rate || (this.form.receivableDetailList[2].rate = this.UStoNAN())
        // this.form.receivableTotalAmount = usCount
        // this.calculationCount(usCount)
1104
      } else if (this.showCurrencyId === 2) { // 人民币
1105 1106 1107 1108 1109 1110 1111
        // const rmbCount = NP.plus(rmb, NP.times(this.UStoRMB(), dollar),  NP.times(this.NANtoRMB(), naira))
        // this.form.receivableDetailList[1].rate = 1
        // this.form.receivableDetailList[1].amount = usCount
        // this.form.receivableDetailList[0].rate || (this.form.receivableDetailList[0].rate = this.RMBtoUS())
        // this.form.receivableDetailList[2].rate || (this.form.receivableDetailList[2].rate = this.RMBtoNAN())
        // this.form.receivableTotalAmount = rmbCount
        // this.calculationCount(rmbCount)
1112
      } else if (this.showCurrencyId === 3) { // 奈拉
1113 1114 1115 1116 1117 1118 1119
        // const nairaCount = NP.plus(naira, NP.times(this.UStoNAN(), dollar),  NP.times(this.RMBtoNAN(), rmb))
        // this.form.receivableDetailList[2].rate = 1
        // this.form.receivableDetailList[2].amount = nairaCount
        // this.form.receivableDetailList[0].rate || (this.form.receivableDetailList[0].rate = this.NANtoUS())
        // this.form.receivableDetailList[1].rate || (this.form.receivableDetailList[1].rate = this.NANtoRMB())
        // this.form.receivableTotalAmount = nairaCount
        // this.calculationCount(nairaCount)
1120
      }
1121 1122

      this.$set(this.form, 'receiptAccountList', [...this.form.receiptAccountList])
1123
    },
1124 1125 1126 1127
    calculationCount(usCount, type) {
      const index = this.form.receiptAccountList.findIndex(v => v.currencyId == type)
      const t = this.form.receiptAccountList[index]
      if (t) {
1128
        t.writeOffAmount = NP.times(t.writeOffRate || 0, usCount).toFixed(2)
1129
        this.rateChange(t, index)
1130 1131 1132
      }
    },
    RMBtoUS() {
我在何方's avatar
我在何方 committed
1133
      return NP.divide(100, this.currencyList.find(v => v.titleEn === 'USD').huilv).toFixed(6)
1134 1135
    },
    NANtoUS() {
我在何方's avatar
我在何方 committed
1136
      return NP.times(this.RMBtoUS(), this.NANtoRMB()).toFixed(6)
1137 1138
    },
    UStoRMB() {
我在何方's avatar
我在何方 committed
1139
      return NP.divide(this.currencyList.find(v => v.titleEn === 'USD').huilv, 100).toFixed(6)
1140 1141
    },
    UStoNAN() {
我在何方's avatar
我在何方 committed
1142
      return NP.times(this.RMBtoNAN(), this.UStoRMB()).toFixed(6)
1143 1144
    },
    RMBtoNAN() {
我在何方's avatar
我在何方 committed
1145
      return NP.divide(100, this.currencyList.find(v => v.titleEn === 'NGN').huilv).toFixed(6)
1146 1147
    },
    NANtoRMB() {
我在何方's avatar
我在何方 committed
1148
      return NP.divide(this.currencyList.find(v => v.titleEn === 'NGN').huilv, 100).toFixed(6)
1149 1150
    },
    customerChange(value) {
吴滔's avatar
吴滔 committed
1151 1152 1153 1154
      if (this.flag) {
        this.flag = false
        return
      }
1155 1156 1157 1158
      this.form.customerName = value.name
      this.form.customerId && getCustomer(this.form.customerId).then(res => {
        this.form = {
          ...this.form,
吴滔's avatar
吴滔 committed
1159 1160 1161 1162 1163 1164 1165
          invoice: res.data.invoiceTitle,
          taxpayer: res.data.licenseNumber,
          accountBank: res.data.bank,
          accountName: res.data.bankNumber,
          projectName: res.data.project,
          taxRate: res.data.taxRate,
          addressPhone: `${res.data.billingAddress || ''}/${res.data.billingTell || ''}`,
1166 1167
        }
      })
吴滔's avatar
吴滔 committed
1168 1169 1170 1171 1172 1173 1174 1175 1176
    },
    cancelDiscount() {
      this.discountVisible = false
      this.discountForm = {}
      this.selectListRow = {}
    },
    addDiscount(row, index) {
      this.discountVisible = true
      this.selectListRow = { ...row }
我在何方's avatar
我在何方 committed
1177
      console.log(this.selectListRow)
吴滔's avatar
吴滔 committed
1178 1179 1180 1181 1182 1183 1184 1185
      this.selectListIndex = index
      this.$set(this.discountForm, 'time', dayjs().format('YYYY-MM-DD HH:mm:ss'))
      getReceivableDiscountLogById({ id: row.id }).then(res => {
        if (res.data?.creatorName) {
          this.$set(this.discountForm, 'time', dayjs(res.data.createTime).format('YYYY-MM-DD HH:mm:ss'))
          this.$set(this.discountForm, 'discountTotal', res.data.discountTotal)
          this.$set(this.discountForm, 'discountRemark', res.data.discountRemark)
          this.$set(this.discountForm, 'author', res.data.creatorName)
我在何方's avatar
我在何方 committed
1186 1187 1188
          this.opnotice = true
        }else{
          this.opnotice = false
1189 1190 1191
          this.$set(this.discountForm, 'discountTotal', '')
          this.$set(this.discountForm, 'discountRemark', '')
          this.$set(this.discountForm, 'author', '')
吴滔's avatar
吴滔 committed
1192 1193 1194 1195 1196 1197
        }
      })
    },
    saveDiscount() {
      console.log(this.discountForm)
      // this.selectListRow.id
我在何方's avatar
我在何方 committed
1198
      if (this.discountForm.discountTotal === 0||!this.discountForm.discountTotal) {
吴滔's avatar
吴滔 committed
1199
        this.$modal.msgError(this.$t('优惠金额不能为空'));
我在何方's avatar
我在何方 committed
1200 1201 1202
        return
      }
      if (this.discountForm.discountRemark === 0||!this.discountForm.discountRemark) {
吴滔's avatar
吴滔 committed
1203
        this.$modal.msgError(this.$t('优惠原因不能为空'));
我在何方's avatar
我在何方 committed
1204 1205
        return
      }
吴滔's avatar
吴滔 committed
1206 1207 1208 1209 1210 1211
      const params = {
        id: this.selectListRow.id,
        discountTotal: this.discountForm.discountTotal,
        discountRemark: this.discountForm.discountRemark,
        orderNo: this.selectListRow.orderNo,
        orderId: this.selectListRow.orderId,
我在何方's avatar
我在何方 committed
1212 1213
        taxPoint:this.selectListRow.taxPoint,
        taxAmount:this.selectListRow.taxAmount,
吴滔's avatar
吴滔 committed
1214
      }
1215
       updateReceivableDiscountById(params).then(res => {
吴滔's avatar
吴滔 committed
1216
        if (this.selectListRow.discountTotal) {
吴滔's avatar
吴滔 committed
1217
          this.$modal.msgSuccess(this.$t('修改成功'));
吴滔's avatar
吴滔 committed
1218
        } else {
吴滔's avatar
吴滔 committed
1219
          this.$modal.msgSuccess(this.$t('新增成功'));
吴滔's avatar
吴滔 committed
1220
        }
我在何方's avatar
我在何方 committed
1221 1222 1223 1224 1225 1226 1227
        // if(this.id>0){
        //    getInvoicingItem({ id: this.id }).then(res => {
        //     this.list = [...res.data]
        //     this.cancelDiscount()
        //     this.calculation()
        //   })
        // }else{
1228 1229
          var discount = this.list[this.selectListIndex]
          discount['discountTotal'] = this.discountForm.discountTotal
1230
          discount['discountRemark'] = this.discountForm.discountRemark
我在何方's avatar
我在何方 committed
1231
          setTimeout(()=>{
1232 1233
            // getReceivableInfoByIds({ id: this.selectListRow.id }).then(res => {
              this.$set(this.list, this.selectListIndex, {...discount})
我在何方's avatar
我在何方 committed
1234 1235
              this.cancelDiscount()
              this.calculation()
1236
            // })
我在何方's avatar
我在何方 committed
1237 1238 1239 1240 1241 1242
          },1000)


        // }


吴滔's avatar
吴滔 committed
1243
      })
吴滔's avatar
吴滔 committed
1244 1245 1246 1247 1248 1249 1250 1251 1252
    },
    getList() {
      this.loading1 = true;
      // 处理查询参数
      let params = { ...this.queryParams };
      this.addBeginAndEndTime(params, this.dateType, "createTime");
      // 执行查询
      getReceivableList(params).then((response) => {
        this.orderData = response.data.list;
吴滔's avatar
吴滔 committed
1253
        this.dialogTableKey ++
吴滔's avatar
吴滔 committed
1254 1255
        this.total = response.data.total;
        this.loading1 = false;
1256 1257 1258 1259 1260 1261
        this.$nextTick(() => {
          this.list.forEach(itm => {
            const t = this.orderData.find(v => v.id == itm.id)
            t && this.$refs.multipleTable.toggleRowSelection(t, true)
          })
        })
吴滔's avatar
吴滔 committed
1262 1263 1264 1265
      });
    },
    /** 新增按钮操作 */
    handleAdd() {
我在何方's avatar
我在何方 committed
1266
      this.multipleSelection = this.list
吴滔's avatar
吴滔 committed
1267 1268 1269 1270 1271
      this.open = true;
    },
    hiddenDialog() {
      this.open = false;
    },
1272 1273 1274
    changePlatformAccountId(platformAccountId,index){
      this.form.receiptAccountList[index].platformAccountId = platformAccountId
    },
1275
    submitForm(addType) {
我在何方's avatar
我在何方 committed
1276 1277
      const params = {...this.form}
      params.addType = addType
1278
      // params.receiptAccountList = params.receiptAccountList.map(v => Object.assign(v, {  }))
我在何方's avatar
我在何方 committed
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
      if(!params.customerId){
        this.saveBtnLoading = false
        this.$modal.msgError(this.$t('客户不能为空'));
        return
      }
      if(!params.departmentId){
        this.saveBtnLoading = false
        this.$modal.msgError(this.$t('部门不能为空'));
        return
      }
      if(!params.salesmanId){
        this.saveBtnLoading = false
        this.$modal.msgError(this.$t('业务员不能为空'));
        return
      }
1294 1295
      if(params.openInvoice!=0&&params.openInvoice!=1){
        console.log(params.openInvoice)
我在何方's avatar
我在何方 committed
1296 1297 1298 1299
        this.saveBtnLoading = false
        this.$modal.msgError(this.$t('请选择是否需要开票'));
        return
      }
1300 1301
      if (this.list && this.list.length > 0) {
        params.receivableVOList = this.list
1302
      }else{
我在何方's avatar
我在何方 committed
1303
        this.saveBtnLoading = false
吴滔's avatar
吴滔 committed
1304
        this.$modal.msgError(this.$t('请添加未收客户款项'));
1305 1306
        return
      }
我在何方's avatar
我在何方 committed
1307

我在何方's avatar
我在何方 committed
1308
      // params.receiptAccountList.length = params.receiptAccountList.length - 1
我在何方's avatar
我在何方 committed
1309

我在何方's avatar
我在何方 committed
1310
      var saveStatus = true
我在何方's avatar
我在何方 committed
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
      params.receiptAccountList.forEach(v => {
        if(v.type!='total'){
          if(!v.platformAccountId){
            saveStatus = false
          }
          var bankname = this.bankData.filter(item=>item.id == v.platformAccountId)
          if(bankname.length>0){
            v.platformAccountName = bankname[0].baAccountName
            v.platformAccountNo = bankname[0].baAccountNum
            v.platformAccountBlankName = bankname[0].baBankName
          }
          delete v.discountTotal
          v.writeOffRate = Number(v.writeOffRate)
我在何方's avatar
我在何方 committed
1324
        }
我在何方's avatar
我在何方 committed
1325
      })
我在何方's avatar
我在何方 committed
1326 1327 1328 1329
      if(!saveStatus){
        this.$modal.msgError(this.$t('请添加收款账户'));
        return
      }
我在何方's avatar
我在何方 committed
1330 1331 1332
      delete params.receivableDetail


1333
      if (addType === 1) {
吴滔's avatar
吴滔 committed
1334
            this.saveBtnLoading = true
我在何方's avatar
我在何方 committed
1335
            params.receiptAccountList.splice(params.receiptAccountList.length - 1,1)
我在何方's avatar
我在何方 committed
1336
            if (this.id && this.id != 0) {
我在何方's avatar
我在何方 committed
1337
              params.updateType = 0
1338
              updateReceipt(params).then(res => {
我在何方's avatar
我在何方 committed
1339
                this.$modal.msgSuccess(this.$t('提交成功'));
我在何方's avatar
我在何方 committed
1340
                this.$store.dispatch('tagsView/delCurrentView')
吴滔's avatar
吴滔 committed
1341 1342
              }).finally(() => {
                this.saveBtnLoading = false
1343 1344
              })
            } else {
1345
              params.currencyId = this.showCurrencyId
1346
              createReceipt(params).then(res => {
吴滔's avatar
吴滔 committed
1347
                this.$modal.msgSuccess(this.$t('保存成功'));
我在何方's avatar
我在何方 committed
1348
                this.$store.dispatch('tagsView/delCurrentView')
吴滔's avatar
吴滔 committed
1349 1350
              }).finally(() => {
                this.saveBtnLoading = false
1351 1352 1353 1354
              })
            }
        return
      }
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
        this.saveBtnLoading = true
        params.receiptAccountList.splice(params.receiptAccountList.length - 1,1)
        if (this.id && this.id != 0) {
          // if(params.state==0) params.state = 1
           params.updateType = 1
          updateReceipt(params).then(res => {
            this.$modal.msgSuccess(this.$t('修改成功'));
            this.$store.dispatch('tagsView/delCurrentView')
          }).finally(() => {
            this.saveBtnLoading = false
          })
        } else {
          params.currencyId = this.showCurrencyId
          createReceipt(params).then(res => {
            this.$modal.msgSuccess(this.$t('新增成功'));
             this.$store.dispatch('tagsView/delCurrentView')
          }).finally(() => {
            this.saveBtnLoading = false
          })
1374
        }
吴滔's avatar
吴滔 committed
1375 1376 1377 1378
    },
    handleSelectionChange(val) {
      this.multipleSelection = val;
    },
我在何方's avatar
我在何方 committed
1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
    removedup(arr, batch) {
      if (!Array.isArray(arr)) {
        return arr;
      }
      if (arr.length == 0) {
        return [];
      }
      let obj = {};
      let uniqueArr = arr.reduce(function (total, item) {
        obj[item[batch]] ? '' : (obj[item[batch]] = true && total.push(item));
        return total;
      }, []);
      return uniqueArr;
    },
吴滔's avatar
吴滔 committed
1393
    saveSelectList() {
我在何方's avatar
我在何方 committed
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
      this.multipleSelection.map(v=>{
        if(!v.taxPoint){
          v.taxAmount = v.totalAmount
        }
      })
      if(this.list.length>0){
        this.list = this.list.concat(this.multipleSelection)
        this.list = this.removedup(this.list,'id')
      }else{
        this.list = this.multipleSelection
      }

吴滔's avatar
吴滔 committed
1406
      this.open = false;
1407
      this.calculation()
吴滔's avatar
吴滔 committed
1408
    },
吴滔's avatar
吴滔 committed
1409 1410 1411 1412 1413
    deleteListRow(index) {
      const list = [...this.list]
      delete list[index]
      this.list = list.filter(v => v)
    },
吴滔's avatar
吴滔 committed
1414 1415 1416
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.page = 1;
吴滔's avatar
吴滔 committed
1417
      this.getList()
1418
    },
吴滔's avatar
吴滔 committed
1419 1420
  },
};
1421 1422
</script>

1423
<style scoped lang="scss">
吴滔's avatar
吴滔 committed
1424 1425 1426 1427
.card {
  margin-top: 20px;
}
.dialog-footer {
吴滔's avatar
吴滔 committed
1428 1429
  // padding: 40px;
  text-align: left;
吴滔's avatar
吴滔 committed
1430 1431 1432 1433 1434
}
.card-title {
  font-size: 18px;
  font-weight: bold;
}
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
::v-deep .el-descriptions-item__label {
  width: 200px;
}
.amountCard {
  ::v-deep .el-descriptions-item__label {
    width: 20%;
  }
  ::v-deep .el-descriptions-item__content {
    width: 30%;
  }
}
1446 1447 1448 1449 1450 1451
  .bpm-title{
    font-size: 20px;
    font-weight: bold;
    color:#666;
    margin:20px 0;
  }
1452
</style>