index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. <template>
  2. <a-card :bordered="false" v-if="indexShow">
  3. <a-tabs v-model:activeKey="searchFormState.warehouseType" @change="onSearch()">
  4. <a-tab-pane key="0" tab="入库记账清单"/>
  5. <a-tab-pane key="1" tab="出库记账清单"/>
  6. </a-tabs>
  7. <a-form ref="searchFormRef" name="advanced_search" :model="searchFormState" class="ant-advanced-search-form">
  8. <a-row :gutter="24">
  9. <a-col :span="6">
  10. <a-form-item label="企业编码" name="companyCode">
  11. <a-input v-model:value="searchFormState.companyCode" placeholder="请输入企业编码" allow-clear/>
  12. </a-form-item>
  13. </a-col>
  14. <a-col :span="6">
  15. <a-form-item label="企业名称" name="companyName">
  16. <a-input v-model:value="searchFormState.companyName" placeholder="请输入企业名称" allow-clear/>
  17. </a-form-item>
  18. </a-col>
  19. <a-col :span="6">
  20. <a-form-item label="账册类型" name="accountType">
  21. <a-select v-model:value="searchFormState.accountType" placeholder="请选择账册类型" :options="accountTypeOptions" show-search allow-clear option-filter-prop="label"/>
  22. </a-form-item>
  23. </a-col>
  24. <a-col :span="6" v-show="advanced">
  25. <a-form-item label="账册编号" name="accountCode">
  26. <a-input v-model:value="searchFormState.accountCode" placeholder="请输入账册编号" allow-clear/>
  27. </a-form-item>
  28. </a-col>
  29. <a-col :span="6" v-show="advanced">
  30. <a-form-item label="商品编码" name="commodityCode">
  31. <a-input v-model:value="searchFormState.commodityCode" placeholder="请输入商品编码" allow-clear/>
  32. </a-form-item>
  33. </a-col>
  34. <a-col :span="6" v-show="advanced">
  35. <a-form-item label="商品名称" name="commodityName">
  36. <a-input v-model:value="searchFormState.commodityName" placeholder="请输入商品名称" allow-clear/>
  37. </a-form-item>
  38. </a-col>
  39. <a-col :span="6" v-show="advanced">
  40. <a-form-item label="业务类型" name="businessType">
  41. <a-select v-model:value="searchFormState.businessType" placeholder="请选择业务类型" :options="businessTypeOptions" show-search allow-clear option-filter-prop="label"/>
  42. </a-form-item>
  43. </a-col>
  44. <a-col :span="6" v-show="advanced">
  45. <a-form-item label="记账数量" name="accountNumber">
  46. <div class="account-number">
  47. <a-input-number v-model:value="searchFormState.accountNumberMin" placeholder="请输入"/>
  48. <a-input-number v-model:value="searchFormState.accountNumberMax" placeholder="请输入"/>
  49. </div>
  50. </a-form-item>
  51. </a-col>
  52. <a-col :span="6" v-show="advanced">
  53. <a-form-item label="法定计量单位" name="measurementUnit">
  54. <a-select v-model:value="searchFormState.measurementUnit" placeholder="请选择法定计量单位" :options="measurementUnitOptions" show-search allow-clear option-filter-prop="label"/>
  55. </a-form-item>
  56. </a-col>
  57. <a-col :span="6" v-show="advanced">
  58. <a-form-item label="一线径予放行单号" name="frontlineRelesasNumber">
  59. <a-input v-model:value="searchFormState.frontlineRelesasNumber" placeholder="请输入一线径予放行单号" allow-clear/>
  60. </a-form-item>
  61. </a-col>
  62. <a-col :span="6" v-show="advanced">
  63. <a-form-item label="出/入库单号" name="warehouseNumber">
  64. <a-input v-model:value="searchFormState.warehouseNumber" placeholder="请输入出/入库单号" allow-clear/>
  65. </a-form-item>
  66. </a-col>
  67. <a-col :span="6" v-show="advanced">
  68. <a-form-item label="入库日期" name="warehouseTime">
  69. <a-range-picker v-model:value="searchFormState.warehouseTime" show-time allow-clear/>
  70. </a-form-item>
  71. </a-col>
  72. <a-col :span="6" v-show="advanced">
  73. <a-form-item label="记账日期" name="accountTime">
  74. <a-range-picker v-model:value="searchFormState.accountTime" show-time allow-clear/>
  75. </a-form-item>
  76. </a-col>
  77. <a-col :span="6">
  78. <a-button type="primary" @click="onSearch()">查询</a-button>
  79. <a-button style="margin: 0 8px" @click="reset">重置</a-button>
  80. <a @click="toggleAdvanced" style="margin-left: 8px">
  81. {{ advanced ? '收起' : '展开' }}
  82. <component :is="advanced ? 'up-outlined' : 'down-outlined'"/>
  83. </a>
  84. </a-col>
  85. </a-row>
  86. </a-form>
  87. <s-table
  88. ref="tableRef"
  89. :columns="columns"
  90. :data="loadData"
  91. :alert="options.alert.show"
  92. bordered
  93. :row-key="(record) => record.id"
  94. :tool-config="toolConfig"
  95. :row-selection="options.rowSelection"
  96. v-model:filterParam="filterParam"
  97. :scroll="{ x: 2000 }"
  98. >
  99. <template #operator class="table-operator">
  100. <a-space>
  101. <a-button type="primary" @click="onDetail()" v-if="hasPerm('qyFrontlineWarehouseAdd')">
  102. <template #icon><plus-outlined /></template>
  103. 新增
  104. </a-button>
  105. <xn-batch-delete
  106. v-if="hasPerm('qyFrontlineWarehouseDelete')"
  107. :selectedRowKeys="selectedRowKeys"
  108. @batchDelete="deleteBatchQyFrontlineWarehouse"
  109. />
  110. <a-button @click="onExport" v-if="hasPerm('qyFrontlineWarehouseBatchExport')">
  111. <template #icon><export-outlined /></template>
  112. 批量导出
  113. </a-button>
  114. </a-space>
  115. </template>
  116. <template #bodyCell="{ column, record }">
  117. <template v-if="column.dataIndex === 'accountType'">
  118. {{ $TOOL.dictTypeData('account_type', record.accountType) }}
  119. </template>
  120. <template v-if="column.dataIndex === 'businessType'">
  121. {{ $TOOL.dictTypeData('bussiness_type', record.businessType) }}
  122. </template>
  123. <template v-if="column.dataIndex === 'measurementUnit'">
  124. {{ $TOOL.dictTypeData('measurement unit', record.measurementUnit) }}
  125. </template>
  126. <template v-if="column.dataIndex === 'action'">
  127. <a-space>
  128. <a @click="onDetail(record, true)" v-if="hasPerm('qyFrontlineWarehouseView')">查看</a>
  129. <a-divider type="vertical" v-if="hasPerm('qyFrontlineWarehouseView') && hasPerm(['qyFrontlineWarehouseEdit', 'qyFrontlineWarehouseDelete'], 'or')" />
  130. <a @click="onDetail(record)" v-if="hasPerm('qyFrontlineWarehouseEdit')">编辑</a>
  131. <a-divider type="vertical" v-if="hasPerm(['qyFrontlineWarehouseEdit', 'qyFrontlineWarehouseDelete'], 'and')" />
  132. <a-popconfirm title="确定要删除吗?" @confirm="deleteQyFrontlineWarehouse(record)">
  133. <a-button type="link" danger size="small" v-if="hasPerm('qyFrontlineWarehouseDelete')">删除</a-button>
  134. </a-popconfirm>
  135. </a-space>
  136. </template>
  137. </template>
  138. </s-table>
  139. </a-card>
  140. <Detail v-else ref="detailRef" @onClose="indexShow = true" @successful="onSearch()" />
  141. </template>
  142. <script setup name="qyfrontlinewarehouse">
  143. import tool from '@/utils/tool'
  144. import { cloneDeep } from 'lodash-es'
  145. import Detail from './detail.vue'
  146. import qyFrontlineWarehouseApi from '@/api/biz/qyFrontlineWarehouseApi'
  147. import downloadUtil from "@/utils/downloadUtil";
  148. const { proxy } = getCurrentInstance()
  149. const searchFormState = ref({
  150. warehouseType: '1'
  151. })
  152. const searchFormStateReal = ref({}) // 点击搜索后备份的查询参数
  153. const searchFormRef = ref()
  154. const tableRef = ref()
  155. const filterParam = ref({})
  156. const detailRef = ref()
  157. const indexShow = ref(true)
  158. const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
  159. // 查询区域显示更多控制
  160. const advanced = ref(false)
  161. const toggleAdvanced = () => {
  162. advanced.value = !advanced.value
  163. }
  164. const columns = [
  165. {
  166. title: '企业编码',
  167. dataIndex: 'companyCode',
  168. },
  169. {
  170. title: '企业名称',
  171. dataIndex: 'companyName',
  172. },
  173. {
  174. title: '账册类型',
  175. dataIndex: 'accountType',
  176. },
  177. {
  178. title: '账册编号',
  179. dataIndex: 'accountCode',
  180. },
  181. {
  182. title: '商品编码',
  183. dataIndex: 'commodityCode',
  184. },
  185. {
  186. title: '商品名称',
  187. dataIndex: 'commodityName',
  188. },
  189. {
  190. title: '业务类型',
  191. dataIndex: 'businessType',
  192. },
  193. {
  194. title: '记账数量',
  195. dataIndex: 'accountNumber',
  196. sorter: true,
  197. },
  198. {
  199. title: '法定计量单位',
  200. dataIndex: 'measurementUnit',
  201. },
  202. {
  203. title: '一线径予放行单号',
  204. dataIndex: 'frontlineRelesasNumber',
  205. },
  206. {
  207. title: '出/入库单号',
  208. dataIndex: 'warehouseNumber',
  209. },
  210. {
  211. title: '入库日期',
  212. dataIndex: 'warehouseTime',
  213. sorter: true,
  214. },
  215. {
  216. title: '记账日期',
  217. dataIndex: 'accountTime',
  218. sorter: true,
  219. },
  220. ]
  221. // 操作栏通过权限判断是否显示
  222. if (hasPerm(['qyFrontlineWarehouseEdit', 'qyFrontlineWarehouseDelete'])) {
  223. columns.push({
  224. title: '操作',
  225. dataIndex: 'action',
  226. align: 'center',
  227. width: 200,
  228. fixed: 'right',
  229. })
  230. }
  231. const selectedRowKeys = ref([])
  232. // 列表选择配置
  233. const options = {
  234. // columns数字类型字段加入 needTotal: true 可以勾选自动算账
  235. alert: {
  236. show: true,
  237. clear: () => {
  238. selectedRowKeys.value = ref([])
  239. }
  240. },
  241. rowSelection: {
  242. onChange: (selectedRowKey, selectedRows) => {
  243. selectedRowKeys.value = selectedRowKey
  244. }
  245. }
  246. }
  247. const loadData = (parameter) => {
  248. tableRef.value.clearSelected()
  249. // warehouseTime范围查询条件重载
  250. if (searchFormStateReal.value.warehouseTime) {
  251. searchFormStateReal.value.startWarehouseTime = searchFormStateReal.value.warehouseTime[0]
  252. searchFormStateReal.value.endWarehouseTime = searchFormStateReal.value.warehouseTime[1]
  253. delete searchFormStateReal.value.warehouseTime
  254. }
  255. // accountTime范围查询条件重载
  256. if (searchFormStateReal.value.accountTime) {
  257. searchFormStateReal.value.startAccountTime = searchFormStateReal.value.accountTime[0]
  258. searchFormStateReal.value.endAccountTime = searchFormStateReal.value.accountTime[1]
  259. delete searchFormStateReal.value.accountTime
  260. }
  261. return qyFrontlineWarehouseApi.qyFrontlineWarehousePage(Object.assign(parameter, searchFormStateReal.value)).then((data) => {
  262. return data
  263. })
  264. }
  265. // 搜索同时备份参数
  266. const onSearch = (parameter) => {
  267. searchFormStateReal.value = cloneDeep(searchFormState.value)
  268. nextTick(() => {
  269. tableRef.value.refresh(parameter)
  270. })
  271. }
  272. // 重置
  273. const reset = () => {
  274. searchFormRef.value.resetFields()
  275. onSearch(true)
  276. }
  277. // 删除
  278. const deleteQyFrontlineWarehouse = (record) => {
  279. let params = [
  280. {
  281. id: record.id
  282. }
  283. ]
  284. qyFrontlineWarehouseApi.qyFrontlineWarehouseDelete(params).then(() => {
  285. tableRef.value.refresh(true)
  286. })
  287. }
  288. // 批量删除
  289. const deleteBatchQyFrontlineWarehouse = (params) => {
  290. qyFrontlineWarehouseApi.qyFrontlineWarehouseDelete(params).then(() => {
  291. tableRef.value.clearRefreshSelected()
  292. })
  293. }
  294. // 批量导出
  295. const onExport = () => {
  296. const params = {
  297. ...filterParam.value
  298. }
  299. if (selectedRowKeys.value.length > 0) {
  300. params.ids = selectedRowKeys.value
  301. } else {
  302. Object.entries(searchFormStateReal.value).forEach(([key, value]) => {
  303. console.log(key)
  304. if (proxy.$util.isValue(value)) {
  305. params[key] = value
  306. }
  307. })
  308. }
  309. qyFrontlineWarehouseApi.qyFrontlineWarehouseExport(params).then((res) => {
  310. downloadUtil.resultDownload(res)
  311. tableRef.value.clearSelected()
  312. })
  313. }
  314. // 切换至表单
  315. const onDetail = (record = null, view) => {
  316. indexShow.value = false
  317. nextTick(() => {
  318. detailRef.value.onOpen(record, view)
  319. })
  320. }
  321. const accountTypeOptions = tool.dictList('account_type')
  322. const businessTypeOptions = tool.dictList('bussiness_type')
  323. const measurementUnitOptions = tool.dictList('measurement unit')
  324. </script>
  325. <style lang="less" scoped>
  326. .account-number {
  327. display: flex;
  328. align-items: center;
  329. gap: 6px;
  330. >* {
  331. flex: 1;
  332. }
  333. }
  334. </style>