sale-client 3.6.460 → 3.6.462

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.460",
3
+ "version": "3.6.462",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -725,6 +725,9 @@
725
725
  }
726
726
  },
727
727
  confirm () {
728
+ if (this.row.f_table_state === '待开通') {
729
+ this.$showAlert('用户存在进行中的报建流程!', 'danger', 5000)
730
+ }
728
731
  this.eticket_msg = false
729
732
  if (this.model.f_payment.length > 0 && this.model.f_payment.includes('余额写卡')) {
730
733
  if (this.model.f_collection > this.row.f_balance) {
@@ -429,14 +429,13 @@
429
429
  if (getLimit.data.f_limit_value || getLimit.data.f_limit_amount) {
430
430
  if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
431
431
  console.log('获取限购值1', getLimit)
432
- if(getLimit.data.unrefresh){
433
- self.limit = true
434
- self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
432
+ if (getLimit.data.unrefresh) {
433
+ self.limit = true
434
+ self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
435
435
  } else {
436
436
  self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
437
437
  self.$dispatch('refresh')
438
438
  }
439
-
440
439
  } else {
441
440
  if (getLimit.data.f_limit_value) {
442
441
  self.maxgas = (getLimit.data.f_limit_value - 0)
@@ -663,6 +662,10 @@
663
662
  },
664
663
  // 校验发票信息
665
664
  checkInvoiceMsg () {
665
+ if (this.row.f_table_state === '待开通') {
666
+ this.$showAlert('用户存在进行中的报建流程!', 'danger', 5000)
667
+ }
668
+
666
669
  // 校验是否超出最大透支余额
667
670
  if (this.model.f_payment == '系统余额透支') {
668
671
  const maxOverdraftBalance = -(((this.$appdata.getSingleValue('最大透支余额') - 0) || 1000) - 0)