sale-client 3.6.225 → 3.6.226
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 +1 -1
- package/src/components/common/userinfo_detail/ic_detail/HandQueryUser.vue +2 -0
- package/src/components/common/userinfo_detail/ic_detail/WebHandQueryUser.vue +2 -0
- package/src/filiale/tongchuan/bill/CustQueryEticket.vue +3 -5
- package/src/filiale/tongchuan/bill/EticketPrint.vue +1 -1
package/package.json
CHANGED
|
@@ -197,16 +197,14 @@
|
|
|
197
197
|
<!-- <input class="form-control col-sm-2" :disabled="diytick"-->
|
|
198
198
|
<!-- v-model="row.f_address_phone" placeholder="开票地址">-->
|
|
199
199
|
<!-- </div>-->
|
|
200
|
-
<div class="col-sm-12 form-group form-input-group"
|
|
200
|
+
<div class="col-sm-12 form-group form-input-group">
|
|
201
201
|
<label class="control-label">开票地址:</label>
|
|
202
202
|
<input class="form-control col-sm-2"
|
|
203
|
-
:disabled="diytick"
|
|
204
203
|
v-model="row.f_buy_address" placeholder="开票地址">
|
|
205
204
|
</div>
|
|
206
|
-
<div class="col-sm-12 form-group form-input-group"
|
|
205
|
+
<div class="col-sm-12 form-group form-input-group">
|
|
207
206
|
<label class="control-label">开票电话:</label>
|
|
208
207
|
<input class="form-control col-sm-2"
|
|
209
|
-
:disabled="diytick"
|
|
210
208
|
v-model="row.f_buy_phone" placeholder="开票电话">
|
|
211
209
|
</div>
|
|
212
210
|
<div class="col-sm-12 form-group form-input-group">
|
|
@@ -225,7 +223,7 @@
|
|
|
225
223
|
</button>
|
|
226
224
|
<button type="button" class="btn button_search"
|
|
227
225
|
v-if="diytick"
|
|
228
|
-
:disabled="diytick && !(row.f_paper_name&&row.name&&row.money&&
|
|
226
|
+
:disabled="diytick && !(row.f_paper_name&&row.name&&row.money&&invoice_type)"
|
|
229
227
|
@click='openCustETicket'>确认收费
|
|
230
228
|
</button>
|
|
231
229
|
</footer>
|
|
@@ -170,7 +170,7 @@ export default {
|
|
|
170
170
|
is_pax: invoice_is_pax === '征税',
|
|
171
171
|
isTax: invoice_is_pax === '征税' ? 1 : 0,
|
|
172
172
|
invoice_type: 0,
|
|
173
|
-
retry:
|
|
173
|
+
retry: false
|
|
174
174
|
}, custModel)
|
|
175
175
|
// TODO 组织开票数据并保存
|
|
176
176
|
const res = await this.$resetpost('/invoice/rs/logic/customInvoice', model, {
|