index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <script setup lang="ts">
  2. import { ref } from "vue";
  3. import { utils, writeFile } from "xlsx";
  4. import { useRouter } from "vue-router";
  5. import { PageSearch, usePageSearch } from "/@/components/PageSearch";
  6. import { PageContent } from "/@/components/PageContent";
  7. import PagePower from "/@/components/PagePower/PagePower.vue";
  8. import ExeclUpload from "./components/execl-files-upload/index.vue";
  9. import ExeclCapitalUpload from "./components/execl-capital-files-upload/index.vue";
  10. import searchFormConfig from "./config/search.config";
  11. import contentConfig from "./config/content.config";
  12. import { template, capitalTemplate } from "./config/xls-template";
  13. import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
  14. import { usePermission } from "/@/hooks/core/usePermission";
  15. import { useUserInfo } from "/@/hooks/core/useUser";
  16. import { useAsync } from "/@/hooks/core/useAsync";
  17. import { CAPITAL_STATUS } from "/@/utils/details/tragelog";
  18. import { httpWithdraw } from "/@/api/InvoiceSales/capitalClaim";
  19. import { httpRequsetExport } from "/@/utils/export";
  20. import {
  21. xs_order_source_options,
  22. xs_order_type_options
  23. } from "/@/utils/status";
  24. const { push } = useRouter();
  25. const execlUploadRef = ref<InstanceType<typeof ExeclUpload>>(null);
  26. const execlCapitalUploadRef =
  27. ref<InstanceType<typeof ExeclCapitalUpload>>(null);
  28. const pageName = "capitalClaim";
  29. const { run: withDraw } = useAsync({
  30. success: () => pageContentRef.value.onSearch()
  31. });
  32. // { code: "009", name: "撤销资金认领" },
  33. // { code: "029", name: "下载资金导入模板" },
  34. // { code: "030", name: "批量导入客户付款资金数据" }
  35. //  { code: "034", name: "下载订单认款导入模板" },
  36. //  { code: "035", name: "批量导入订单认款数据" }
  37. const { hasPermissionWithCode, permissions } = usePermission(pageName);
  38. const loading = ref(false);
  39. const { isSuperUser } = useUserInfo();
  40. const { pageContentRef, handleResetClick, handleSearchClick } = usePageSearch(
  41. undefined,
  42. undefined,
  43. searchFormConfig
  44. );
  45. const handleWithDraw = data => withDraw(httpWithdraw(data));
  46. //导出模板
  47. function onDownloadTemplate() {
  48. //创建数据表
  49. const workBook = utils.book_new();
  50. const workSheet = utils.json_to_sheet([template]);
  51. utils.book_append_sheet(workBook, workSheet, "sheet");
  52. //导出模板
  53. writeFile(workBook, "资金认领模板.xlsx", {
  54. bookType: "xlsx"
  55. });
  56. }
  57. //导出模板
  58. function onCapitalDownloadTemplate() {
  59. //创建数据表
  60. const workBook = utils.book_new();
  61. const workSheet = utils.json_to_sheet([capitalTemplate]);
  62. utils.book_append_sheet(workBook, workSheet, "sheet");
  63. //导出模板
  64. writeFile(workBook, "订单认款导入模板.xlsx", {
  65. bookType: "xlsx"
  66. });
  67. }
  68. //导出模板
  69. async function onDownloadOpenInv() {
  70. await httpRequsetExport({
  71. url: "/ope",
  72. name: "资金认领数据表",
  73. onStart: () => (loading.value = true),
  74. onSuccess: () => (loading.value = false),
  75. onFail: () => (loading.value = false),
  76. params: {
  77. ...pageContentRef.value.getBasicParams()
  78. }
  79. });
  80. }
  81. </script>
  82. <template>
  83. <div class="main role">
  84. <PagePower :is-show="hasPermissionWithCode('001')">
  85. <div w-full>
  86. <PageSearch
  87. :form-config="searchFormConfig"
  88. @search-btn-click="handleSearchClick"
  89. @reset-btn-click="handleResetClick"
  90. >
  91. <template #action>
  92. <el-button :loading="loading" @click="() => onDownloadOpenInv()">
  93. 资金认领数据导出
  94. </el-button>
  95. <el-button
  96. v-if="!isSuperUser && hasPermissionWithCode('029')"
  97. @click="onDownloadTemplate"
  98. >下载资金导入模板
  99. </el-button>
  100. <el-button
  101. v-if="!isSuperUser && hasPermissionWithCode('030')"
  102. type="primary"
  103. @click="() => execlUploadRef.onDisplay()"
  104. >批量导入客户付款资金数据
  105. </el-button>
  106. <el-button
  107. v-if="!isSuperUser && hasPermissionWithCode('034')"
  108. @click="onCapitalDownloadTemplate"
  109. >下载订单认款导入模板
  110. </el-button>
  111. <el-button
  112. v-if="!isSuperUser && hasPermissionWithCode('035')"
  113. type="primary"
  114. @click="() => execlCapitalUploadRef.onDisplay()"
  115. >批量导入订单认款数据
  116. </el-button>
  117. </template>
  118. </PageSearch>
  119. <PageContent
  120. ref="pageContentRef"
  121. :content-config="contentConfig"
  122. :powers="permissions"
  123. @preview-btn-click="
  124. row =>
  125. push(
  126. '/InvoiceSales/claimDetail?id=' +
  127. row.tradNo +
  128. '&back=capitalClaim'
  129. )
  130. "
  131. >
  132. <template #expand="row">
  133. <el-table
  134. style="width: 100%; display: inline-block !important"
  135. v-if="row.child.length > 0"
  136. size="small"
  137. :data="row.child"
  138. border
  139. >
  140. <el-table-column
  141. label="资金认领编号"
  142. prop="logNo"
  143. width="188"
  144. fixed="left"
  145. show-overflow-tooltip
  146. />
  147. <el-table-column
  148. label="认领状态"
  149. prop="status"
  150. width="100"
  151. show-overflow-tooltip
  152. >
  153. <template #="{ $index }">
  154. <el-tag
  155. >{{
  156. CAPITAL_STATUS.find(
  157. t => t.value === row.child[$index].status
  158. )?.label || "--"
  159. }}
  160. </el-tag>
  161. </template>
  162. </el-table-column>
  163. <el-table-column
  164. label="订单编号"
  165. prop="orderCode"
  166. width="160"
  167. show-overflow-tooltip
  168. />
  169. <el-table-column
  170. label="销售主单号"
  171. prop="cxCode"
  172. width="160"
  173. show-overflow-tooltip
  174. />
  175. <el-table-column
  176. label="订单来源"
  177. prop="qrdSource"
  178. width="90"
  179. show-overflow-tooltip
  180. >
  181. <template #="{ $index }">
  182. <el-tag
  183. >{{
  184. xs_order_source_options.find(
  185. t => t.value === row.child[$index].qrdSource
  186. )?.label
  187. }}
  188. </el-tag>
  189. </template>
  190. </el-table-column>
  191. <el-table-column
  192. label="平台单号"
  193. prop="poCode"
  194. width="180"
  195. show-overflow-tooltip
  196. />
  197. <el-table-column
  198. label="商品编号"
  199. prop="goodNo"
  200. width="160"
  201. show-overflow-tooltip
  202. />
  203. <el-table-column
  204. label="商品来源"
  205. prop="qrdType"
  206. width="90"
  207. show-overflow-tooltip
  208. >
  209. <template #="{ $index }">
  210. <el-tag
  211. >{{
  212. xs_order_type_options.find(
  213. t => t.value === row.child[$index].qrdType
  214. )?.label
  215. }}
  216. </el-tag>
  217. </template>
  218. </el-table-column>
  219. <el-table-column
  220. label="商品名称"
  221. prop="goodName"
  222. minWidth="180"
  223. show-overflow-tooltip
  224. />
  225. <el-table-column
  226. label="企业客户编号"
  227. prop="customerNo"
  228. width="160"
  229. show-overflow-tooltip
  230. />
  231. <el-table-column
  232. label="企业客户名称"
  233. prop="customerName"
  234. minWidth="180"
  235. show-overflow-tooltip
  236. />
  237. <el-table-column
  238. label="订单创建人"
  239. prop="ownerName"
  240. width="80"
  241. show-overflow-tooltip
  242. />
  243. <el-table-column
  244. label="认领人"
  245. prop="apply_name"
  246. width="80"
  247. show-overflow-tooltip
  248. />
  249. <el-table-column
  250. label="认领时间"
  251. prop="addtime"
  252. width="145"
  253. show-overflow-tooltip
  254. />
  255. <el-table-column fixed="right" label="操作" width="60px">
  256. <template #default="{ row }">
  257. <el-button
  258. :icon="useRenderIcon('eye-view')"
  259. @click="
  260. () => push('/InvoiceSales/capitalDetail?id=' + row.logNo)
  261. "
  262. type="primary"
  263. link
  264. />
  265. <el-popconfirm
  266. v-if="
  267. hasPermissionWithCode('009') && String(row.status) === '1'
  268. "
  269. placement="top"
  270. title="是否确认撤销资金认领?"
  271. :on-confirm="() => handleWithDraw({ logNo: row.logNo })"
  272. >
  273. <template #reference>
  274. <el-button
  275. :icon="useRenderIcon('refresh-right')"
  276. type="primary"
  277. link
  278. />
  279. </template>
  280. </el-popconfirm>
  281. </template>
  282. </el-table-column>
  283. </el-table>
  284. </template>
  285. </PageContent>
  286. </div>
  287. </PagePower>
  288. <ExeclUpload ref="execlUploadRef" @onSuccess="handleResetClick" />
  289. <ExeclCapitalUpload
  290. ref="execlCapitalUploadRef"
  291. @onSuccess="handleResetClick"
  292. />
  293. </div>
  294. </template>
  295. <style scoped lang="scss">
  296. :deep(.el-dropdown-menu__item i) {
  297. margin: 0;
  298. }
  299. :deep(.el-button + .el-button) {
  300. margin-left: 0px !important;
  301. }
  302. .star {
  303. color: red;
  304. }
  305. </style>