SelectQuotationModal.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. <template>
  2. <a-modal
  3. title="选择报价单(Select Quotation)"
  4. width="95%"
  5. :visible="visible"
  6. :maskClosable="false"
  7. switchFullscreen
  8. @ok = "handleOk"
  9. @cancel="handleCancel">
  10. <div>
  11. <a-card :body-style="{ padding: '10px' }" :bordered="false" style="margin: 10px;">
  12. <div class="table-page-search-wrapper">
  13. <a-form :model="queryParams" :label-col="labelCol" :wrapper-col="wrapperCol" @keyup.enter.native="searchQuery">
  14. <a-row :gutter="24">
  15. <a-col :md="6" :sm="8">
  16. <a-form-item label="报价单号(bill code)">
  17. <j-input placeholder="请输入" v-model:value="queryParams.billCode"></j-input>
  18. </a-form-item>
  19. </a-col>
  20. <a-col :md="6" :sm="8">
  21. <a-form-item label="单据日期(bill date)">
  22. <a-range-picker value-format="YYYY-MM-DD" v-model:value="billDate" @change="changeBillDate" class="query-group-cust"/>
  23. </a-form-item>
  24. </a-col>
  25. <template v-if="toggleSearchStatus">
  26. <a-col :md="6" :sm="8">
  27. <a-form-item label="项目(project)">
  28. <ApiSelect
  29. :api="ProjectOption"
  30. showSearch
  31. v-model:value="queryParams.quotationProject"
  32. optionFilterProp="label"
  33. resultField="records"
  34. labelField="code"
  35. valueField="id"
  36. :params='{pageSize:-1}'
  37. :disabled="fatherProject!==''"
  38. />
  39. </a-form-item>
  40. </a-col>
  41. <a-col :md="6" :sm="8">
  42. <a-form-item label="产品分类(production class)" :label-col="labelCol1" :wrapper-col="wrapperCol1">
  43. <ApiSelect
  44. :api="ClassList"
  45. showSearch
  46. v-model:value="queryParams.productionClass"
  47. optionFilterProp="label"
  48. resultField="records"
  49. labelField="name"
  50. valueField="id"
  51. :params='{pageSize:-1}'
  52. />
  53. </a-form-item>
  54. </a-col>
  55. <a-col :md="6" :sm="8">
  56. <a-form-item label="优先级(priority)" >
  57. <JDictSelectTag v-model:value="queryParams.priority" placeholder="请选择" dictCode="priority"/>
  58. </a-form-item>
  59. </a-col>
  60. <a-col :md="6" :sm="8">
  61. <a-form-item label="客户(customer)">
  62. <JSelect v-model:value="queryParams.quotationCustomer" :get-option-url="CustomerOption" :showField="showField"></JSelect>
  63. </a-form-item>
  64. </a-col>
  65. <a-col :md="6" :sm="8">
  66. <a-form-item label="机型(model)">
  67. <JDictSelectTag v-model:value="queryParams.headModel" placeholder="请选择" dictCode="model_typer"/>
  68. </a-form-item>
  69. </a-col>
  70. <a-col :md="6" :sm="8">
  71. <a-form-item label="产品英文名(English name)" :label-col="labelCol1" :wrapper-col="wrapperCol1">
  72. <j-input placeholder="请输入" v-model:value="queryParams.englishName"></j-input>
  73. </a-form-item>
  74. </a-col>
  75. <a-col :md="6" :sm="8">
  76. <a-form-item label="产品编码(product code)">
  77. <j-input placeholder="请输入" v-model:value="queryParams.productCode"></j-input>
  78. </a-form-item>
  79. </a-col>
  80. <a-col :md="6" :sm="8">
  81. <a-form-item label="型号(model)">
  82. <j-input placeholder="请输入" v-model:value="queryParams.childModel"></j-input>
  83. </a-form-item>
  84. </a-col>
  85. </template>
  86. <a-col :md="6" :sm="8">
  87. <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
  88. <a-button type="primary" @click="searchQuery" >查询(search)</a-button>
  89. <a-button type="primary" @click="searchReset" style="margin-left: 8px">重置(reset)</a-button>
  90. <a @click="handleToggleSearch" style="margin-left: 8px">
  91. {{ toggleSearchStatus ? '收起' : '展开' }}
  92. <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
  93. </a>
  94. </span>
  95. </a-col>
  96. </a-row>
  97. </a-form>
  98. </div>
  99. </a-card>
  100. <a-card :body-style="{ padding: '10px' }" :bordered="false" style="margin: 10px;">
  101. <a-alert type="info" show-icon class="alert" style="margin-bottom: 8px">
  102. <template #message>
  103. <template v-if="selectedRowKeys.length > 0">
  104. <span>已选中 {{ selectedRowKeys.length }} 条记录</span>
  105. <a-divider type="vertical" />
  106. <a @click="selectedRowKeys = []">清空</a>
  107. </template>
  108. <template v-else>
  109. <span>未选中任何数据</span>
  110. </template>
  111. </template>
  112. </a-alert>
  113. <a-table
  114. :columns="columns"
  115. :row-key="record => record.childId"
  116. :data-source="dataSource"
  117. bordered
  118. size="small"
  119. @change="handleTableChange"
  120. :pagination="pagination"
  121. :scroll="{ x: 3500, y: 400 }"
  122. :rowSelection="{ onSelect: onSelect, onSelectAll: onSelectAll,selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
  123. >
  124. </a-table>
  125. </a-card>
  126. </div>
  127. </a-modal>
  128. </template>
  129. <script lang="ts" setup>
  130. import {ref, reactive } from 'vue';
  131. import { defHttp} from '/@/utils/http/axios';
  132. import { message } from 'ant-design-vue';
  133. import { filterObj, getFileAccessHttpUrl } from '/@/utils/common/compUtils';
  134. import { ApiSelect,JDictSelectTag,JInput,JSelect} from '/@/components/Form';
  135. import {ProjectOption,CustomerOption,ClassList} from '../saleCode/saleContract/SaleContract.api';
  136. const emit = defineEmits([ 'selectQuotation']); //定义emit
  137. var visible = ref(false)
  138. var fatherProject = ref('')
  139. var fatherSourceCode = ref('')
  140. var showField = ref('currency+name');
  141. const columns = [
  142. {
  143. type: 'selection',
  144. fixed: 'left',
  145. width:0
  146. },
  147. {
  148. title: '报价单号(bill code)',
  149. dataIndex: 'billCode',
  150. key: 'billCode',
  151. align:"center",
  152. width:250,
  153. },
  154. {
  155. title: '单据日期(bill date)',
  156. dataIndex: 'billDate',
  157. key: 'billDate',
  158. align:"center"
  159. },
  160. {
  161. title: '报价项目(quotation project)',
  162. dataIndex: 'quotationProjectName',
  163. key: 'quotationProjectName',
  164. align:"center",
  165. width:250,
  166. ellipsis: true,
  167. },
  168. {
  169. title: '客户(custormer)',
  170. dataIndex: 'quotationCustomerName',
  171. key: 'quotationCustomerName',
  172. align:"center",
  173. ellipsis: true,
  174. },
  175. {
  176. title: '报价有效期(quotation period)',
  177. dataIndex: 'time',
  178. key: 'time',
  179. align:"center",
  180. width:250,
  181. customRender:({text,record}) =>{
  182. if(record.quotationPeriodBegin&&record.quotationPeriodEnd){
  183. text = record.quotationPeriodBegin+'~'+record.quotationPeriodEnd
  184. }else if(!record.quotationPeriodBegin){
  185. text = record.quotationPeriodEnd
  186. }else if(!record.quotationPeriodEnd){
  187. text = record.quotationPeriodBegin
  188. }else{
  189. text=''
  190. }
  191. return text;
  192. },
  193. },
  194. {
  195. title: '优先级(priority)',
  196. dataIndex: 'priority_dictText',
  197. key: 'priority_dictText',
  198. align:"center"
  199. },
  200. {
  201. title: '产品分类(production class)',
  202. dataIndex: 'productionClass_dictText',
  203. key: 'productionClass_dictText',
  204. align:"center",
  205. width:250,
  206. },
  207. {
  208. title: '机型(model)',
  209. dataIndex: 'headModel',
  210. key: 'headModel',
  211. align:"center"
  212. },
  213. {
  214. title: '产品编码(product code)',
  215. dataIndex: 'productCode',
  216. key: 'productCode',
  217. align:"center",
  218. width:250,
  219. },
  220. {
  221. title: '产品英文名(English name)',
  222. key: 'englishName',
  223. dataIndex: 'englishName',
  224. align:"center",
  225. width:250,
  226. ellipsis: true,
  227. },
  228. {
  229. title: '型号(childModel)',
  230. key: 'childModel',
  231. dataIndex: 'childModel',
  232. align:"center"
  233. },
  234. {
  235. title: '厂家(factory)',
  236. key: 'factory',
  237. dataIndex: 'factory',
  238. align:"center",
  239. width:250
  240. },
  241. {
  242. title: '质量等级(quantity grade)',
  243. key: 'quantityGrade',
  244. dataIndex: 'quantityGrade',
  245. align:"center",
  246. width:250,
  247. },
  248. {
  249. title: '数量(quantity)',
  250. key: 'quantity',
  251. dataIndex: 'quantity',
  252. align:"center",
  253. width:250,
  254. },
  255. {
  256. title: '单价(price)',
  257. key: 'salePrice',
  258. dataIndex: 'salePrice',
  259. align:"center",
  260. width:250,
  261. },
  262. {
  263. title: '价税合计(tax money)',
  264. key: 'taxAmount',
  265. dataIndex: 'taxAmount',
  266. align:"center",
  267. width:250,
  268. },
  269. ];
  270. const labelCol = ref({
  271. xs: { span: 24 },
  272. sm: { span: 9 },
  273. });
  274. const wrapperCol = ref({
  275. xs: { span: 24 },
  276. sm: { span: 15 },
  277. });
  278. const labelCol1 = ref({
  279. xs: { span: 24 },
  280. sm: { span: 12 },
  281. });
  282. const wrapperCol1 = ref({
  283. xs: { span: 24 },
  284. sm: { span: 12 },
  285. });
  286. const dataSource =ref([]);
  287. let selectedRowKeys = ref([]);
  288. let selectionRows = ref([]);
  289. const toggleSearchStatus = ref(false);
  290. var billDate = ref([])
  291. const queryParams = ref({
  292. billCode:'',
  293. quotationProject:'',
  294. quotationProjectName:'',
  295. productionClass:'',
  296. priority:'',
  297. quotationCustomerName:'',
  298. quotationCustomer:'',
  299. headModel:'',
  300. englishName:'',
  301. productCode:'',
  302. childModel:'',
  303. billDate_begin:'',
  304. billDate_end:'',
  305. });
  306. let pagination = ref({
  307. current: 1,
  308. pageSize: 10,
  309. total: '', // 假设总共有100条数据
  310. showSizeChanger: true,
  311. showQuickJumper: true,
  312. showTotal: (total, range) => {
  313. return range[0] + "-" + range[1] + " 共" + total + "条"
  314. },
  315. size:'small'
  316. });
  317. function loadData(){
  318. let params = getQueryParams();
  319. defHttp.get({ url: '/saleCode/saleQuotation/saleQuotationDetailsAlert',params}, { isTransformResponse: false })
  320. .then((res) => {
  321. if (res.success) {
  322. dataSource.value = res.result.records;
  323. pagination.value.total = res.result.total;
  324. pagination.value.current = res.result.current;
  325. pagination.value.pageSize = res.result.size;
  326. } else {
  327. message.error(res.message);
  328. }
  329. })
  330. .finally(() => {
  331. // loading.value = false;
  332. });
  333. }
  334. function getQueryParams(){
  335. let params = Object.assign(queryParams.value);
  336. params.pageNo = pagination.value.current;
  337. params.pageSize = pagination.value.pageSize;
  338. if(fatherProject.value&&fatherProject.value!==''){
  339. queryParams.value.quotationProject = fatherProject.value
  340. }else {
  341. queryParams.value.quotationProject = params.quotationProject
  342. }
  343. return filterObj(params);
  344. }
  345. function handleTableChange(paginations, filters, sorter){
  346. pagination.value.total = paginations.total;
  347. pagination.value.current = paginations.current;
  348. pagination.value.pageSize = paginations.pageSize;
  349. loadData()
  350. };
  351. function searchQuery(){
  352. pagination.value.current =1
  353. selectedRowKeys.value = []
  354. selectionRows.value=[]
  355. loadData();
  356. }
  357. function searchReset(){
  358. billDate.value = []
  359. queryParams.value = {
  360. billCode:'',
  361. quotationProject:'',
  362. quotationProjectName:'',
  363. productionClass:'',
  364. priority:'',
  365. quotationCustomerName:'',
  366. quotationCustomer:'',
  367. headModel:'',
  368. englishName:'',
  369. productCode:'',
  370. childModel:'',
  371. billDate_begin:'',
  372. billDate_end:'',
  373. }
  374. pagination.value.current =1;
  375. pagination.value.pageSize = 10;
  376. selectedRowKeys.value = []
  377. selectionRows.value=[]
  378. loadData();
  379. }
  380. function handleToggleSearch(){
  381. toggleSearchStatus.value = !toggleSearchStatus.value;
  382. }
  383. function onSelectChange(selectedRowKeys1, selectionRows1) {
  384. var arr = []
  385. selectionRows.value.map(item=>{
  386. arr.push(item.childId)
  387. })
  388. selectedRowKeys.value = arr
  389. }
  390. function onSelect(record, selected, selectionRows1, nativeEvent) {
  391. if (selected) {
  392. selectionRows.value.push(record)
  393. console.log( selectionRows.value);
  394. }else{
  395. const delIndex = selectionRows.value.findIndex((val) => {
  396. return val.childId === record.childId
  397. })
  398. selectionRows.value.splice(delIndex, 1)
  399. }
  400. }
  401. function onSelectAll(selected, selectionRows1, changeRows) {
  402. if (selected) {
  403. selectionRows.value = selectionRows.value.concat(changeRows)
  404. }
  405. if (!selected) {
  406. let selectionRows2 = JSON.parse(JSON.stringify(selectionRows.value))
  407. const delIndex = []
  408. selectionRows2.forEach((item, index) => {
  409. changeRows.forEach((val, itemIndex) => {
  410. if (item.childId === val.childId) {
  411. delIndex.push(index)
  412. }
  413. })
  414. })
  415. delIndex.forEach((item) => {
  416. delete selectionRows2[item]
  417. })
  418. selectionRows2 = selectionRows2.filter((item) => {
  419. return item !== undefined
  420. })
  421. selectionRows.value = selectionRows2
  422. }
  423. }
  424. function handleOk(){
  425. var arr = []
  426. selectionRows.value.map(item=>arr.push(item.billCode))
  427. if(fatherSourceCode.value&&fatherSourceCode.value!==''){
  428. arr.push(fatherSourceCode.value)
  429. }
  430. if(selectedRowKeys.value.length==0){
  431. message.error('请勾选数据');
  432. }else if(new Set(arr).size!==1){
  433. message.error('请勾选报价单号相同的数据');
  434. }else{
  435. emit('selectQuotation', selectionRows.value)
  436. handleCancel()
  437. }
  438. }
  439. function handleCancel(){
  440. visible.value = false
  441. selectedRowKeys.value = []
  442. selectionRows.value=[]
  443. billDate.value = []
  444. queryParams.value = {
  445. billCode:'',
  446. quotationProject:'',
  447. quotationProjectName:'',
  448. productionClass:'',
  449. priority:'',
  450. quotationCustomerName:'',
  451. quotationCustomer:'',
  452. headModel:'',
  453. englishName:'',
  454. productCode:'',
  455. childModel:'',
  456. billDate_begin:'',
  457. billDate_end:'',
  458. }
  459. pagination.value.current =1;
  460. pagination.value.pageSize = 10;
  461. }
  462. function getTable(formData){
  463. visible.value = true
  464. if(formData.projectName&&formData.projectName!==''){
  465. fatherProject.value = formData.project
  466. }else{
  467. fatherProject.value = ''
  468. }
  469. if(formData.sourceCode&&formData.sourceCode!==''){
  470. fatherSourceCode.value = formData.sourceCode
  471. }else{
  472. fatherSourceCode.value = ''
  473. }
  474. loadData()
  475. }
  476. function changeBillDate(prop){
  477. if(prop){
  478. billDate.value = prop
  479. queryParams.value.billDate_begin = prop[0]
  480. queryParams.value.billDate_end = prop[1]
  481. }else{
  482. billDate.value = []
  483. queryParams.value.billDate_begin = ''
  484. queryParams.value.billDate_end = ''
  485. }
  486. }
  487. defineExpose({
  488. getTable
  489. });
  490. </script>
  491. <style scoped lang="less">
  492. /deep/.ant-form-item{
  493. margin-bottom: 8px !important;
  494. }
  495. // /deep/.ant-table-wrapper .ant-table-thead > tr > th, .ant-table-wrapper .ant-table-thead > tr > td{
  496. // padding: 8px !important;
  497. // }
  498. </style>