apply-clients 7.1.36-yuchuan-64 → 7.1.36-yuchuan-65
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
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
type="button"
|
|
420
420
|
name="button"
|
|
421
421
|
class="btn btn-link"
|
|
422
|
-
v-if="row.f_bill_state !== '开票成功' && row.f_bill_state !== '冲红'"
|
|
422
|
+
v-if="row.f_bill_state !== '开票成功' && row.f_bill_state !== '冲红' && row.f_bill_state !== '冲正'"
|
|
423
423
|
@click="$parent.$parent.$parent.openBill(row)"
|
|
424
424
|
>
|
|
425
425
|
开票
|
|
@@ -1069,7 +1069,7 @@ export default {
|
|
|
1069
1069
|
async invalidApplyCharge() {
|
|
1070
1070
|
let http = new HttpResetClass();
|
|
1071
1071
|
let data = {
|
|
1072
|
-
apply: this.
|
|
1072
|
+
apply: this.charge,
|
|
1073
1073
|
user: this.$login.f,
|
|
1074
1074
|
charge: this.charge,
|
|
1075
1075
|
};
|
|
@@ -80,13 +80,13 @@
|
|
|
80
80
|
|
|
81
81
|
<button
|
|
82
82
|
type="button" name="button" class="btn btn-link"
|
|
83
|
-
v-if="row.f_bill_state !== '开票成功' && row.f_bill_state != '冲红' && row.f_charge_status !== '作废'"
|
|
83
|
+
v-if="row.f_bill_state !== '开票成功' && row.f_bill_state != '冲红' && row.f_charge_status !== '作废'&& row.f_bill_state !== '冲正'"
|
|
84
84
|
@click="$parent.$parent.openBill(row)"
|
|
85
85
|
>开票</button>
|
|
86
86
|
|
|
87
87
|
<button
|
|
88
88
|
type="button" name="button" class="btn btn-link"
|
|
89
|
-
v-if = "(row.f_bill_state === '开票成功' || row.f_bill_state === '冲红' )"
|
|
89
|
+
v-if = "(row.f_bill_state === '开票成功' || row.f_bill_state === '冲红' || row.f_bill_state === '冲正')"
|
|
90
90
|
@click="$parent.$parent.showPrintModal(row)"
|
|
91
91
|
>查看发票</button>
|
|
92
92
|
</nobr>
|