SelectContractModal.vue 19 KB

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