xyvcard-paper-buyer 0.0.53 → 0.0.55

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.
@@ -5,7 +5,7 @@ import { routerUtil as D } from "jmash-core";
5
5
  import { useRouter as Q, useRoute as W } from "vue-router";
6
6
  import { D as U } from "./index-Knr6dYOL.mjs";
7
7
  import { _ as X, u as Y } from "./userInvoice.vue_vue_type_script_setup_true_lang-Bzqz4vIJ.mjs";
8
- import { o as Z } from "./index-BCt6P3MY.mjs";
8
+ import { o as Z } from "./index-DvqcVtci.mjs";
9
9
  import { E as x } from "./el-message-VSzNakoG.mjs";
10
10
  import { _ as ee } from "./_plugin-vue_export-helper-CHgC5LLL.mjs";
11
11
  const le = { class: "app-container" }, oe = { class: "search-container" }, te = { class: "form-footer" }, ae = /* @__PURE__ */ J({
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as ie, ref as U, onActivated as pe, resolveComponent as i, resolveDirective as me, createElementBlock as I, openBlock as m, createElementVNode as c, createVNode as n, withCtx as r, withKeys as P, unref as a, createTextVNode as u, toDisplayString as l, withDirectives as S, createCommentVNode as y, createBlock as $, isRef as L } from "vue";
2
2
  import { D as k, C as _ } from "./index-Knr6dYOL.mjs";
3
- import { o as Q } from "./index-BCt6P3MY.mjs";
3
+ import { o as Q } from "./index-DvqcVtci.mjs";
4
4
  import { vueMetaEnv as fe, useTableHooks as ce } from "jmash-core";
5
5
  import { useI18n as be } from "vue-i18n";
6
6
  import { useRouter as ve } from "vue-router";
@@ -0,0 +1,72 @@
1
+ import { useUserStore as p, clearEmpty as e, request as o } from "jmash-core";
2
+ class r {
3
+ getKey() {
4
+ }
5
+ // 查询列表信息乐企发票
6
+ findList(t) {
7
+ const n = p().user.tenant;
8
+ return e(t), o({
9
+ url: "/v1/lqfp/lqfp_fp_detail/list/" + n,
10
+ method: "get",
11
+ params: t
12
+ });
13
+ }
14
+ // 发送邮箱
15
+ sendEmail(t) {
16
+ return e(t), o({
17
+ url: "/v1/front/lqfp/fp_send",
18
+ method: "post",
19
+ data: t
20
+ });
21
+ }
22
+ // 查看详情里面的发票图片展示接口
23
+ download(t) {
24
+ const n = p().user.tenant;
25
+ return e(t), o({
26
+ url: "/v1/front/lqfp/fp_down/" + n + "/" + t.organId + "/" + t.fpUuid + ".jpg",
27
+ method: "get",
28
+ responseType: "blob",
29
+ params: t
30
+ });
31
+ }
32
+ // 下载发票
33
+ downloadXML(t) {
34
+ const n = p().user.tenant;
35
+ return e(t), o({
36
+ url: "/v1/front/lqfp/fp_down/" + n + "/" + t.organId + "/" + t.fpUuid + ".xml",
37
+ method: "get",
38
+ params: t,
39
+ responseType: "blob"
40
+ });
41
+ }
42
+ downloadPDF(t) {
43
+ const n = p().user.tenant;
44
+ return e(t), o({
45
+ url: "/v1/front/lqfp/fp_down/" + n + "/" + t.organId + "/" + t.fpUuid + ".pdf",
46
+ method: "get",
47
+ params: t,
48
+ responseType: "blob"
49
+ });
50
+ }
51
+ downloadOFD(t) {
52
+ const n = p().user.tenant;
53
+ return e(t), o({
54
+ url: "/v1/front/lqfp/fp_down/" + n + "/" + t.organId + "/" + t.fpUuid + ".ofd",
55
+ method: "get",
56
+ params: t,
57
+ responseType: "blob"
58
+ });
59
+ }
60
+ // 换开发票
61
+ reissue(t) {
62
+ return t.tenant = p().user.tenant, e(t), o({
63
+ url: "/v1/front/lqfp/reissue",
64
+ method: "post",
65
+ data: t
66
+ });
67
+ }
68
+ }
69
+ const d = new r();
70
+ export {
71
+ d as l
72
+ };