salesInvoiceList.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. <template>
  2. <div class="p-2">
  3. <!--查询区域-->
  4. <div class="jeecg-basic-table-form-container">
  5. <a-form ref="formRef" @keyup.enter.native="reload" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
  6. <a-row :gutter="24">
  7. <a-col :lg="8">
  8. <a-form-item name="billDate">
  9. <template #label><span title="发票日期(bill date)">发票日期(bill date)</span></template>
  10. <a-range-picker value-format="YYYY-MM-DD" v-model:value="queryParam.billDate" class="query-group-cust" />
  11. </a-form-item>
  12. </a-col>
  13. <a-col :lg="8">
  14. <a-form-item name="project" :label-col="labelCol1" :wrapper-col="wrapperCol1">
  15. <template #label><span title="项目(project)">项目(project)</span></template>
  16. <ApiSelect
  17. :api="ProjectOption"
  18. showSearch
  19. v-model:value="queryParam.project"
  20. :filterOption="true"
  21. resultField="records"
  22. labelField="code"
  23. valueField="id"
  24. :params="{ pageSize: -1 }"
  25. optionFilterProp="label"
  26. />
  27. </a-form-item>
  28. </a-col>
  29. <template v-if="toggleSearchStatus">
  30. <a-col :lg="8">
  31. <a-form-item name="invoiceCode" >
  32. <template #label><span title="发票编号(invoice code)">发票编号(invoice code)</span></template>
  33. <JInput placeholder="请输入发票编号(invoice code)" v-model:value="queryParam.invoiceCode" allow-clear AutoComplete="off" />
  34. </a-form-item>
  35. </a-col>
  36. <a-col :lg="8">
  37. <a-form-item name="customer">
  38. <template #label><span title="购方(buyer)">购方(buyer)</span></template>
  39. <JSelect v-model:value="queryParam.customer" :get-option-url="CustomerOption" :showField="showField"></JSelect>
  40. </a-form-item>
  41. </a-col>
  42. <a-col :lg="8">
  43. <a-form-item name="orderNumber" :label-col="labelCol1" :wrapper-col="wrapperCol1">
  44. <template #label><span title="客户订单号(customer order number)">客户订单号(customer order number)</span></template>
  45. <JInput placeholder="请输入" v-model:value="queryParam.orderNumber" allow-clear AutoComplete="off" />
  46. </a-form-item>
  47. </a-col>
  48. <a-col :lg="8">
  49. <a-form-item name="submit">
  50. <template #label><span title="提交(submit)">提交(submit)</span></template>
  51. <JDictSelectTag v-model:value="queryParam.submit" placeholder="请选择" dictCode="yes_or_no" style="width: 100%" />
  52. </a-form-item>
  53. </a-col>
  54. </template>
  55. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  56. <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
  57. <a-col :lg="6">
  58. <a-button type="primary" preIcon="ant-design:search-outlined" @click="reload">查询</a-button>
  59. <a-button preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
  60. <a @click="toggleSearchStatus = !toggleSearchStatus" style="margin-left: 8px">
  61. {{ toggleSearchStatus ? '收起' : '展开' }}
  62. <Icon :icon="toggleSearchStatus ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
  63. </a>
  64. </a-col>
  65. </span>
  66. </a-col>
  67. </a-row>
  68. </a-form>
  69. </div>
  70. <!--引用表格-->
  71. <BasicTable @register="registerTable" :rowSelection="rowSelection" size="small">
  72. <!--插槽:table标题-->
  73. <template #tableTitle>
  74. <a-button type="primary" v-auth="'saleCode:sale_invoice:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增(add)</a-button>
  75. <a-button type="primary" v-auth="'saleCode:sale_invoice:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls">
  76. 导出(export)</a-button
  77. >
  78. <a-button type="primary" @click="submit"> 提交(submit)</a-button>
  79. <a-button type="primary" @click="cancelSubmit"> 取消提交(cancelSubmit)</a-button>
  80. <a-button type="primary" @click="handleNullify"> 作废(nullify)</a-button>
  81. <a-dropdown v-if="selectedRowKeys.length > 0">
  82. <template #overlay>
  83. <a-menu>
  84. <a-menu-item key="1" @click="batchHandleDelete" v-auth="'saleCode:sale_invoice:deleteBatch'">
  85. <Icon icon="ant-design:delete-outlined" />
  86. 删除(delete)
  87. </a-menu-item>
  88. </a-menu>
  89. </template>
  90. <a-button v-auth="'saleCode:sale_invoice:deleteBatch'"
  91. >批量操作
  92. <Icon icon="mdi:chevron-down" />
  93. </a-button>
  94. </a-dropdown>
  95. </template>
  96. <!--操作栏-->
  97. <template #action="{ record }">
  98. <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
  99. </template>
  100. <!--字段回显插槽-->
  101. <template #bodyCell="{ column, record, index, text }"> </template>
  102. <template #jumpTo="props">
  103. <a @click="handleView(props)">查看(view)</a>
  104. </template>
  105. <template #viewFile="props">
  106. <a @click="handleViewFile(props,'1')">查看</a>
  107. </template>
  108. <template #signFile="props">
  109. <a @click="handleViewFile(props,'2')">查看(view)</a>
  110. </template>
  111. </BasicTable>
  112. <!-- 表单区域 -->
  113. <saleInvoiceFormModal @register="registerModal" @success="handleSuccess" v-if="viewType == ''" />
  114. <SaleOrderFormList @register="registerModal" v-if="viewType == 'saleOrder'" @visible-change="changeVisi" />
  115. <PurchaseOrderFormList @register="registerModal" v-if="viewType == 'purchaseOrder'" @visible-change="changeVisi" />
  116. <ViewFileListModal ref="ViewFileListModalRef" @success="handleSuccess"></ViewFileListModal>
  117. <SaleContractList @register="registerModal" v-if="viewType == 'saleContract'" @visible-change="changeVisi" />
  118. </div>
  119. </template>
  120. <script lang="ts" name="saleCode-saleInquiryForm" setup>
  121. import { ref, reactive, computed, unref, onMounted } from 'vue';
  122. import { BasicTable, useTable, TableAction } from '/@/components/Table';
  123. import { useListPage } from '/@/hooks/system/useListPage';
  124. import { useModal } from '/@/components/Modal';
  125. import { columns } from './salesInvoiceForm.data';
  126. import {
  127. list,
  128. deleteOne,
  129. batchDelete,
  130. getImportUrl,
  131. getExportUrl,
  132. batchSubmit,
  133. cancelBatchSubmit,
  134. batchClose,
  135. editSignSing,
  136. getListDetail,
  137. ProjectOption,
  138. CustomerOption,
  139. getExportUrlRow
  140. } from './salesInvoiceForm.api';
  141. import { cloneDeep } from 'lodash-es';
  142. import { defHttp } from '/@/utils/http/axios';
  143. import { JDictSelectTag, ApiSelect, JInput,JSelect } from '/@/components/Form';
  144. import saleInvoiceFormModal from './components/saleInvoiceFormModal.vue';
  145. import SaleOrderFormList from '../salesOrder/components/SaleOrderFormModal.vue';
  146. import PurchaseOrderFormList from '../../purchase/purchaseOrder/components/PurchaseOrderFormModal.vue';
  147. import SaleContractList from '../saleContract/components/SaleContractModal.vue';
  148. import ViewFileListModal from './components/ViewFileListModal.vue';
  149. import { message } from 'ant-design-vue';
  150. import { useMethods } from '/@/hooks/system/useMethods';
  151. const { handleExportXlsx, } = useMethods();
  152. const formRef = ref();
  153. const queryParam = reactive<any>({});
  154. //注册model
  155. const [registerModal, { openModal }] = useModal();
  156. var classOption = ref([]);
  157. var viewType = ref('');
  158. var showField = ref('currency+name');
  159. var ViewFileListModalRef = ref();
  160. //注册table数据
  161. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  162. tableProps: {
  163. title: '销售发票',
  164. api: list,
  165. columns,
  166. canResize: false,
  167. useSearchForm: false,
  168. actionColumn: {
  169. width: 300,
  170. fixed: 'right',
  171. },
  172. scroll: {
  173. x: '3000px',
  174. y:'calc(100vh - 400px)',
  175. },
  176. beforeFetch: async (params) => {
  177. let rangerQuery = await setRangeQuery();
  178. return Object.assign(params, rangerQuery);
  179. },
  180. },
  181. exportConfig: {
  182. name: '销售发票',
  183. url: getExportUrl,
  184. params: queryParam,
  185. },
  186. importConfig: {
  187. url: getImportUrl,
  188. success: handleSuccess,
  189. },
  190. });
  191. const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
  192. // 自动请求并暴露内部方法
  193. onMounted(() => {
  194. getOptiom();
  195. });
  196. /**
  197. * 新增事件
  198. */
  199. function handleAdd() {
  200. openModal(true, {
  201. isUpdate: false,
  202. showFooter: true,
  203. isRevise: false,
  204. });
  205. }
  206. /**
  207. * 编辑事件
  208. */
  209. async function handleEdit(record: Recordable) {
  210. openModal(true, {
  211. record,
  212. isUpdate: true,
  213. showFooter: true,
  214. isRevise: false,
  215. });
  216. }
  217. // 产品分类
  218. function getOptiom() {
  219. defHttp
  220. .get({ url: 'baseCode/baseProductClass/list' }, { isTransformResponse: false })
  221. .then((res) => {
  222. if (res.success) {
  223. classOption.value = [];
  224. res.result.records.forEach((element) => {
  225. var obj = {
  226. label: element.name ? element.name : '无名称请维护',
  227. value: element.id ? element.id : '',
  228. };
  229. classOption.value.push(obj);
  230. });
  231. }
  232. })
  233. .finally(() => {
  234. // loading.value = false;
  235. });
  236. }
  237. /**
  238. * 详情
  239. */
  240. function handleDetail(record: Recordable) {
  241. openModal(true, {
  242. record,
  243. isUpdate: true,
  244. showFooter: false,
  245. });
  246. }
  247. /**
  248. * 删除事件
  249. */
  250. async function handleDelete(record) {
  251. await deleteOne({ id: record.id }, handleSuccess);
  252. }
  253. /**
  254. * 批量删除事件
  255. */
  256. async function batchHandleDelete() {
  257. await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
  258. }
  259. /**
  260. * 成功回调
  261. */
  262. function handleSuccess() {
  263. (selectedRowKeys.value = []) && reload();
  264. }
  265. /**
  266. * 操作栏
  267. */
  268. function getTableAction(record) {
  269. return [
  270. {
  271. label: '导出(export)',
  272. onClick: handleExportRow.bind(null, record),
  273. },
  274. {
  275. label: '编辑(edit)',
  276. onClick: handleEdit.bind(null, record),
  277. auth: 'saleCode:sale_invoice:edit',
  278. ifShow: record.submit == '0' || !record.submit,
  279. },
  280. {
  281. label: '详情(detail)',
  282. onClick: handleDetail.bind(null, record),
  283. ifShow: record.submit == '1',
  284. },
  285. ];
  286. }
  287. /**
  288. * 下拉操作栏
  289. */
  290. function getDropDownAction(record) {
  291. return [
  292. {
  293. label: '详情(detail)',
  294. onClick: handleDetail.bind(null, record),
  295. ifShow: record.submit == '0' || !record.submit,
  296. },
  297. {
  298. label: '下载信用证(Doenload letter of Credit)',
  299. auth: 'saleCode:sale_inquiry_form:delete',
  300. ifShow: record.submit == '1',
  301. },
  302. {
  303. label: '上传盖章发票(upload stamp in invoice)',
  304. auth: 'saleCode:sale_inquiry_form:delete',
  305. ifShow: record.submit == '1',
  306. },
  307. {
  308. label: '删除(delete)',
  309. popConfirm: {
  310. title: '是否确认删除',
  311. confirm: handleDelete.bind(null, record),
  312. placement: 'topLeft',
  313. },
  314. auth: 'saleCode:sale_invoice:delete',
  315. ifShow: record.submit == '0' || !record.submit,
  316. },
  317. ];
  318. }
  319. async function handleExportRow(record){
  320. var obj={
  321. id : record.id
  322. }
  323. handleExportXlsx(record.invoiceCode, getExportUrlRow,obj)
  324. }
  325. function submit() {
  326. if (selectedRowKeys.value.length == 0) {
  327. message.warning('请选择数据');
  328. } else {
  329. var ids = selectedRowKeys.value.join(',');
  330. batchSubmit({ ids: ids }, handleSuccess);
  331. }
  332. }
  333. function cancelSubmit() {
  334. if (selectedRowKeys.value.length == 0) {
  335. message.warning('请选择数据');
  336. } else {
  337. var ids = selectedRowKeys.value.join(',');
  338. cancelBatchSubmit({ ids: ids }, handleSuccess);
  339. }
  340. }
  341. // 作废
  342. function handleNullify() {
  343. if (selectedRowKeys.value.length == 0) {
  344. message.warning('请选择数据');
  345. } else {
  346. var ids = selectedRowKeys.value.join(',');
  347. batchClose({ ids: ids }, handleSuccess);
  348. }
  349. }
  350. async function handleView(prop) {
  351. var param = {
  352. id: '',
  353. type: '',
  354. };
  355. if (prop.column.dataIndex == 'saleOrder') {
  356. viewType.value = 'saleOrder';
  357. param.id = prop.record.id;
  358. param.type = 'saleOrder';
  359. } else if (prop.column.dataIndex == 'purchaseOrder') {
  360. viewType.value = 'purchaseOrder';
  361. param.id = prop.record.id;
  362. param.type = 'purchaseOrder';
  363. } else if (prop.column.dataIndex == 'saleContract') {
  364. viewType.value = 'saleContract';
  365. param.id = prop.record.id;
  366. param.type = 'saleContract';
  367. }
  368. var record = await getListDetail(param);
  369. openModal(true, {
  370. record,
  371. isUpdate: true,
  372. showFooter: false,
  373. });
  374. }
  375. function changeVisi(data) {
  376. if (!data) {
  377. viewType.value = '';
  378. }
  379. }
  380. function handleViewFile(prop,data) {
  381. if(data=='1'){
  382. ViewFileListModalRef.value.getTable(prop.record);
  383. }else{
  384. ViewFileListModalRef.value.viewFile(prop.record);
  385. }
  386. }
  387. /* ----------------------以下为原生查询需要添加的-------------------------- */
  388. const toggleSearchStatus = ref<boolean>(false);
  389. const labelCol = reactive({
  390. xs: 24,
  391. sm: 8,
  392. });
  393. const wrapperCol = reactive({
  394. xs: 24,
  395. sm: 16,
  396. });
  397. const labelCol1 = reactive({
  398. xs: 24,
  399. sm: 11,
  400. });
  401. const wrapperCol1 = reactive({
  402. xs: 24,
  403. sm: 13,
  404. });
  405. /**
  406. * 重置
  407. */
  408. function searchReset() {
  409. formRef.value.resetFields();
  410. selectedRowKeys.value = [];
  411. //刷新数据
  412. reload();
  413. }
  414. let rangeField = 'billDate,';
  415. /**
  416. * 设置范围查询条件
  417. */
  418. async function setRangeQuery() {
  419. let queryParamClone = cloneDeep(queryParam);
  420. if (rangeField) {
  421. let fieldsValue = rangeField.split(',');
  422. fieldsValue.forEach((item) => {
  423. if (queryParamClone[item]) {
  424. let range = queryParamClone[item];
  425. queryParamClone[item + '_begin'] = range[0];
  426. queryParamClone[item + '_end'] = range[1];
  427. delete queryParamClone[item];
  428. } else {
  429. queryParamClone[item + '_begin'] = '';
  430. queryParamClone[item + '_end'] = '';
  431. }
  432. });
  433. }
  434. return queryParamClone;
  435. }
  436. </script>
  437. <style lang="less" scoped>
  438. .jeecg-basic-table-form-container {
  439. padding: 0;
  440. .table-page-search-submitButtons {
  441. display: block;
  442. margin-bottom: 8px;
  443. white-space: nowrap;
  444. }
  445. .query-group-cust {
  446. min-width: 100px !important;
  447. }
  448. .query-group-split-cust {
  449. width: 30px;
  450. display: inline-block;
  451. text-align: center;
  452. }
  453. .ant-form-item:not(.ant-form-item-with-help) {
  454. margin-bottom: 8px;
  455. height: 32px;
  456. }
  457. :deep(.ant-picker),
  458. :deep(.ant-input-number) {
  459. width: 100%;
  460. }
  461. }
  462. </style>