voucher.vue 12.3 KB
Newer Older
我在何方's avatar
我在何方 committed
1 2
<template>
  <div class="app-container">
3
    <div slot="header" class="card-title">收款单</div>
我在何方's avatar
我在何方 committed
4
    <!-- 搜索工作栏 -->
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    <el-card v-show="showSearch" class="card">
      <el-form
        :model="queryParams"
        ref="queryForm"
        size="small"
        :inline="true"
        label-width="100px"
        class="card"
      >
        <el-row :span="24">
          <el-form-item label="收款单号:">
            <el-input
              style="max-width: 188px"
              v-model="queryParams.receiptNo"
              placeholder="请输入收款单号"
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item label="客户名称:">
            <customer-selector
              v-model="queryParams.customerId"
              @change="consignor = $event"
            />
          </el-form-item>
          <el-form-item label="状态:">
            <dict-selector
              :type="DICT_TYPE.ECW_RECEIPT_STATE"
              v-model="queryParams.state"
            />
          </el-form-item>
          <el-form-item label="业务员:">
            <el-select
              v-model="queryParams.salesmanId"
              placeholder="请选择业务员"
            >
              <el-option
                v-for="item in creatorData"
                :key="item.id"
                :label="item.nickname"
                :value="item.id"
              />
            </el-select>
          </el-form-item>
        </el-row>
        <el-row :span="24">
          <el-col style="width: 592px">
            <el-form-item label="创建时间:">
              <el-date-picker
                v-model="queryParams.beginCreateTime"
                type="datetimerange"
                range-separator="到"
                start-placeholder="请选择日期"
                end-placeholder="请选择日期"
              >
              </el-date-picker>
            </el-form-item>
          </el-col>
          <el-form-item label="自编号:">
            <el-input
              style="max-width: 188px"
              v-model="queryParams.orderNo"
              placeholder="请输入自编号"
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item label="订单号:">
            <el-input
              style="max-width: 188px"
              v-model="queryParams.orderNo"
              placeholder="请输入订单号"
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
        </el-row>
        <el-row :span="24">
          <el-form-item label="商品名称:">
            <el-input
              style="max-width: 188px"
              v-model="queryParams.orderNo"
              placeholder="请输入商品名称"
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item label="费用类型:">
            <dict-selector
              :type="DICT_TYPE.FEE_TYPE"
              v-model="queryParams.feeType"
            ></dict-selector>
          </el-form-item>
          <el-form-item label="收款类型:">
            <dict-selector
              :type="DICT_TYPE.PAYMENT_TYPE"
              v-model="queryParams.paymentType"
            ></dict-selector>
          </el-form-item>
          <el-form-item>
            <el-button type="primary" @click="handleQuery">查找</el-button>
          </el-form-item>
        </el-row>
      </el-form>
    </el-card>
    <el-table v-loading="loadings" :data="list" border class="card">
      <el-table-column label="序号" align="center" prop="id" type="index">
        <template slot-scope="scope">
          <span>{{ scope.$index + 1 }}</span>
        </template>
      </el-table-column>
116 117 118 119 120
      <el-table-column label="收款单号" align="center" prop="receiptNo">
        <template slot-scope="scope">
          <el-button size="mini" type="text" @click="verificationCancelClick(scope.row)">{{ scope.row.receiptNo }}</el-button>
        </template>
      </el-table-column>
121 122 123 124 125 126 127 128 129
      <!-- <el-table-column label="自编号" align="center" prop="orderNo" /> -->
      <el-table-column label="订单号" align="center" prop="orderNo" />
      <el-table-column label="客户名称" align="center" prop="customerName" />
      <el-table-column label="创建日期" align="center" prop="createTime">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <!-- <el-table-column label="币种" align="center">
我在何方's avatar
我在何方 committed
130 131 132
              <template slot-scope="scope">
                <dict-tag :type="DICT_TYPE.COMMISSION_CURRENCY_TYPE" :value="scope.row.currencyId" />
              </template>
133 134 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
            </el-table-column> -->
      <!-- <el-table-column label="汇率" align="center" prop="totalAmount" /> -->
      <el-table-column label="实收日期" align="center" prop="payedAt">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.payedAt, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <el-table-column label="业务员" align="center" prop="salesmanName" />
      <el-table-column label="状态" align="center">
        <template slot-scope="scope">
          <dict-tag
            :type="DICT_TYPE.ECW_RECEIPT_STATE"
            :value="scope.row.state"
          />
        </template>
      </el-table-column>
      <el-table-column label="是否开票" align="center">
        <template slot-scope="scope">
          {{ scope.row.openInvoice === 0 ? '' : '' }}
        </template>
      </el-table-column>
      <el-table-column
        label="操作"
        align="center"
        class-name="small-padding fixed-width"
      >
        <template slot-scope="scope">
          <el-button
161
            v-if="scope.row.state === 0 || scope.row.state == 1 || scope.row.state == 2 || scope.row.state == 3"
162 163 164 165 166
            size="mini"
            type="text"
            @click="handleAdd(scope.row.id)"
            >编辑</el-button
          >
167 168
          <!-- <el-button
            v-if="scope.row.state == "
169 170 171 172
            size="mini"
            type="text"
            @click="verificationClick(scope.row)"
            >核销</el-button
173
          > -->
174
          <el-button
175
            v-if="scope.row.state == 4 || scope.row.state == 5 || scope.row.state == 6"
176 177 178 179 180 181
            size="mini"
            type="text"
            @click="verificationCancelClick(scope.row)"
            >反核销</el-button
          >
          <el-button
182
            v-if="scope.row.state == 5"
183 184 185 186 187
            size="mini"
            type="text"
            @click="openInvoice(scope.row.id)"
            >开票</el-button
          >
188 189
          <el-button v-if="scope.row.state == 1 || scope.row.state == 2 || scope.row.state == 3" size="mini" type="text" @click="verificationCancelClick(scope.row)">收款</el-button>
          <el-button v-if="scope.row.state == 0 || scope.row.state == 1" size="mini" type="text" @click="deleteClick(scope.row)">删除</el-button>
190
          <el-button
191
            v-if="scope.row.state != 0"
192 193 194 195 196 197
            size="mini"
            type="text"
            @click="toprint(scope.row.id)"
            >打印</el-button
          >
          <el-button
198
            v-if="scope.row.state != 0"
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
            size="mini"
            type="text"
            @click="exportReceipt(scope.row.id)"
            >导出订单</el-button
          >
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination
      v-show="total > 0"
      :total="total"
      :page.sync="queryParams.page"
      :limit.sync="queryParams.rows"
      @pagination="getList"
    />
    <!-- 对话框(添加 / 修改) -->
    <el-dialog
      title="导出账单"
      :visible.sync="open"
      width="500px"
      style="margin-top: 20vh !important"
      append-to-body
    >
      <!-- <div slot="title" class="card-title" style='border-bottom: 2px solid #f8f8f8;'>
我在何方's avatar
我在何方 committed
224 225
            <span>导出账单</span>
            <i class="el-icon-close" @click="cancel"></i>
226 227 228 229 230 231 232 233 234 235 236 237 238 239
          </div> -->
      <div class="dialog-footer">
        <el-button type="primary" style="width: 130px" @click="submitForm(1)"
          >国内账单</el-button
        >
        <el-button
          plain
          type="primary"
          style="width: 130px; margin: 0"
          @click="submitForm(2)"
          >Debite note</el-button
        >
      </div>
    </el-dialog>
我在何方's avatar
我在何方 committed
240 241 242 243
  </div>
</template>

<script>
244 245 246 247 248
import { listSimpleUsers } from "@/api/system/user";
import { DICT_TYPE } from "@/utils/dict";
import CustomerSelector from "@/components/CustomerSelector";
import {
  getReceiptList,
249 250
  // receiptVerification,
  // receiptVerificationCancel,
251 252 253
  receiptExportExcel,
  deleteReceipt
} from "@/api/ecw/financial";
我在何方's avatar
我在何方 committed
254

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
export default {
  name: "Voucher",
  components: {
    CustomerSelector,
  },
  data() {
    return {
      exportId: "",
      open: false,
      showSearch: true,
      loadings: false,
      form: {},
      creatorData: [],
      list: [],
      total: 0,
      dateType: [],
      loading: "",
      params: {
        page: 1,
        rows: 20,
      },
      // 查询参数
      queryParams: {
        page: 1,
        rows: 20,
        dateType: null,
        date: null,
        originId: null,
        destinationId: null,
        transportId: null,
        isCargoControl: null,
        orderExceptionStatus: null,
        orderExceptionType: null,
        orderNo: null,
        consignorId: null,
        marks: null,
        prodId: null,
        productRecord: null,
        followUpSalesmanId: null,
      },
    };
  },
  created() {
    let that = this;
    listSimpleUsers().then((res) => (that.creatorData = res.data));
    this.getList();
  },
  methods: {
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = { ...this.queryParams };
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, "createTime");
      // 执行查询
      getReceiptList(params).then((response) => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    verificationClick(row) {
      const id = row.id;
      return this.$router.push("receiptDetail?id=" + id);
    //   this.$modal
    //     .confirm("您确认要核销吗?")
    //     .then(function () {
    //       return receiptVerification(id);
    //     })
    //     .then(() => {
    //       this.getList();
    //       this.$modal.msgSuccess("核销成功");
    //     })
    //     .catch(() => {});
    },
    verificationCancelClick(row) {
      const id = row.id;
      return this.$router.push("receiptDetail?id=" + id);
      // this.$modal
      //   .confirm("您确认要反核销吗?")
      //   .then(function () {
      //     return receiptVerificationCancel(id);
      //   })
      //   .then(() => {
      //     this.getList();
      //     this.$modal.msgSuccess("反核销成功");
      //   })
      //   .catch(() => {});
    },
    deleteClick(row) {
      const id = row.id;
      this.$modal.confirm('是否确认删除该收款单?').then(function() {
        return deleteReceipt(id);
      }).then(() => {
        this.getList();
        this.$modal.msgSuccess("删除成功");
      }).catch(() => {});
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      // this.getList();
    },
    /** 新增按钮操作 */
    handleAdd(id) {
      return this.$router.push("creatCollection?id=" + id);
    },
    toprint(id) {
      return this.$router.push("printVoucher?id=" + id);
    },
    openInvoice(id) {
      return this.$router.push("openInvoice?id=" + id);
    },
    exportReceipt(id) {
      this.open = true;
      this.exportId = id;
    },
    submitForm(type) {
      receiptExportExcel({ id: this.exportId, billType: type }).then((response) => {
          this.$download.excel(response, `${type === 2 ? "国外账单" : "Debite_note"}.xls`);
我在何方's avatar
我在何方 committed
375
          this.open = false;
376 377 378 379 380 381 382 383 384 385
        }
      );
    },
    /** 取消按钮 */
    //  cancel() {
    //    this.open = false;
    //  },
  },
};
</script>
我在何方's avatar
我在何方 committed
386 387

 <style>
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
.card {
  margin-top: 20px;
}
.dialog-footer {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 160px;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
}
</style>