index.vue 13 KB

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