SelectPurOrderModal.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <!-- 复制子表 -->
  2. <template>
  3. <a-modal
  4. title="选择采购订单(select purchase order)"
  5. width="95%"
  6. :visible="visible"
  7. :maskClosable="false"
  8. switchFullscreen
  9. @ok = "handleOk"
  10. @cancel="handleCancel">
  11. <div>
  12. <!-- <a-card :body-style="{ padding: '10px' }" :bordered="false" style="margin: 10px;">
  13. <div class="table-page-search-wrapper">
  14. <a-form :model="queryParams" :label-col="labelCol" :wrapper-col="wrapperCol" @keyup.enter.native="searchQuery">
  15. <a-row :gutter="24">
  16. <a-col :md="8" :sm="8">
  17. <a-form-item label="产品分类(production class)">
  18. <a-input placeholder="请输入" v-model:value="queryParams.productionClass"></a-input>
  19. </a-form-item>
  20. </a-col>
  21. <a-col :md="8" :sm="8">
  22. <a-form-item label="产品英文名(english name)" >
  23. <a-input v-model:value="queryParams.englishName" placeholder="请选择" />
  24. </a-form-item>
  25. </a-col>
  26. <template v-if="toggleSearchStatus">
  27. <a-col :md="8" :sm="8">
  28. <a-form-item label="产品编码(product code)" >
  29. <a-input v-model:value="queryParams.productCode" placeholder="请选择" />
  30. </a-form-item>
  31. </a-col>
  32. <a-col :md="8" :sm="8">
  33. <a-form-item label="产品中文名(chinese name)" >
  34. <a-input v-model:value="queryParams.chineseName" placeholder="请选择" />
  35. </a-form-item>
  36. </a-col>
  37. </template>
  38. <a-col :md="8" :sm="8">
  39. <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
  40. <a-button type="primary" @click="searchQuery" >查询(search)</a-button>
  41. <a-button type="primary" @click="searchReset" style="margin-left: 8px">重置(reset)</a-button>
  42. <a @click="handleToggleSearch" style="margin-left: 8px">
  43. {{ toggleSearchStatus ? '收起' : '展开' }}
  44. <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
  45. </a>
  46. </span>
  47. </a-col>
  48. </a-row>
  49. </a-form>
  50. </div>
  51. </a-card> -->
  52. <a-card >
  53. <a-alert type="info" show-icon class="alert" style="margin-bottom: 8px">
  54. <template #message>
  55. <template v-if="selectedRowKeys.length > 0">
  56. <span>已选中 {{ selectedRowKeys.length }} 条记录</span>
  57. <a-divider type="vertical" />
  58. <a @click="selectedRowKeys = []">清空</a>
  59. </template>
  60. <template v-else>
  61. <span>未选中任何数据</span>
  62. </template>
  63. </template>
  64. </a-alert>
  65. <a-table
  66. :columns="columns"
  67. :row-key="record => record.id"
  68. :data-source="dataSource"
  69. bordered
  70. size="small"
  71. @change="handleTableChange"
  72. :pagination="false"
  73. :scroll="{ x: 4500, y: 300 }"
  74. :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
  75. >
  76. </a-table>
  77. </a-card>
  78. </div>
  79. </a-modal>
  80. </template>
  81. <script lang="ts" setup>
  82. import {ref, reactive } from 'vue';
  83. import { defHttp } from '/@/utils/http/axios';
  84. import { message } from 'ant-design-vue';
  85. import { filterObj, getFileAccessHttpUrl } from '/@/utils/common/compUtils';
  86. const emit = defineEmits([ 'copyProduct']); //定义emit
  87. var visible = ref(false)
  88. const columns = [
  89. {
  90. title: '交期(delivery time)',
  91. dataIndex: 'deliveryTime',
  92. key: 'deliveryTime',
  93. align:"center"
  94. },
  95. {
  96. title: '最早发货日期(earline delivery date)',
  97. dataIndex: 'earliestDeliveryDate',
  98. key: 'earliestDeliveryDate',
  99. align:"center"
  100. },
  101. {
  102. title: '最晚发货日期(latest delivery date)',
  103. dataIndex: 'latestDeliveryDate',
  104. key: 'latestDeliveryDate',
  105. align:"center",
  106. },
  107. {
  108. title: '产品中文名(chinese name)',
  109. key: 'chineseName',
  110. dataIndex: 'chineseName',
  111. align:"center"
  112. },
  113. {
  114. title: '产品英文名(english name)',
  115. key: 'englishName',
  116. dataIndex: 'englishName',
  117. align:"center",
  118. ellipsis:true
  119. },
  120. {
  121. title: '型号(model)',
  122. key: 'model',
  123. dataIndex: 'model',
  124. align:"center"
  125. },
  126. {
  127. title: '备件号(partno)',
  128. key: 'partno',
  129. dataIndex: 'partno',
  130. align:"center",
  131. width:250
  132. },
  133. {
  134. title: '订货号(orderno)',
  135. key: 'orderno',
  136. dataIndex: 'orderno',
  137. align:"center",
  138. },
  139. {
  140. title: '图号(drawingno)',
  141. key: 'drawingno',
  142. dataIndex: 'drawingno',
  143. align:"center",
  144. },
  145. {
  146. title: '厂家(factory)',
  147. key: 'factory',
  148. dataIndex: 'factory',
  149. align:"center",
  150. },
  151. {
  152. title: '质量等级(quality grade)',
  153. key: 'qualityGrade',
  154. dataIndex: 'qualityGrade',
  155. align:"center",
  156. },
  157. {
  158. title: '需要船检证书(need Ship inspection certificate)',
  159. key: 'needShip',
  160. dataIndex: 'needShip',
  161. align:"center",
  162. },
  163. {
  164. title: '船检证书(ship Inspection certificate)',
  165. key: 'shipInspection',
  166. dataIndex: 'shipInspection',
  167. align:"center",
  168. },
  169. {
  170. title: '数量(quantity)',
  171. key: 'quantity',
  172. dataIndex: 'quantity',
  173. align:"center",
  174. },
  175. {
  176. title: '单价(price)',
  177. key: 'taxPrice',
  178. dataIndex: 'taxPrice',
  179. align:"center",
  180. },
  181. {
  182. title: '金额(money)',
  183. key: 'taxAmount',
  184. dataIndex: 'taxAmount',
  185. align:"center",
  186. },
  187. {
  188. title: '备注(note)',
  189. key: 'notes',
  190. dataIndex: 'notes',
  191. align:"center",
  192. },
  193. ];
  194. const labelCol = ref({
  195. xs: { span: 24 },
  196. sm: { span: 9 },
  197. });
  198. const wrapperCol = ref({
  199. xs: { span: 24 },
  200. sm: { span: 15 },
  201. });
  202. const dataSource =ref([]);
  203. let selectedRowKeys = ref([]);
  204. let selectedRows = ref([]);
  205. const toggleSearchStatus = ref(false);
  206. var mainId = ref('')
  207. const queryParams = ref({
  208. productionClass:'',
  209. englishName:'',
  210. productCode:'',
  211. chineseName:'',
  212. id:'',
  213. pageSize:''
  214. });
  215. function loadData(){
  216. let params = getQueryParams();
  217. defHttp
  218. .get({ url: '/purCode/purOrder/queryPurOrderProductByMainId',params}, { isTransformResponse: false })
  219. .then((res) => {
  220. if (res.success) {
  221. dataSource.value = res.result
  222. } else {
  223. message.error(res.message);
  224. }
  225. })
  226. .finally(() => {
  227. // loading.value = false;
  228. });
  229. }
  230. function getQueryParams(){
  231. let params = Object.assign(queryParams.value);
  232. params.id = mainId.value
  233. params.pageSize = '-1'
  234. return filterObj(params);
  235. }
  236. function handleTableChange(paginations, filters, sorter){
  237. loadData()
  238. };
  239. function searchQuery(){
  240. loadData();
  241. }
  242. function searchReset(){
  243. queryParams.value = {
  244. productionClass:'',
  245. englishName:'',
  246. productCode:'',
  247. chineseName:'',
  248. id:'',
  249. pageSize:''
  250. }
  251. loadData();
  252. }
  253. function handleToggleSearch(){
  254. toggleSearchStatus.value = !toggleSearchStatus.value;
  255. }
  256. function onSelectChange(keys,rows){
  257. selectedRowKeys.value = keys
  258. selectedRows.value = rows
  259. }
  260. function handleOk(){
  261. if(selectedRowKeys.value.length==0){
  262. message.error('请选择数据')
  263. }else{
  264. emit('copyProduct',selectedRows.value,mainId)
  265. handleCancel()
  266. }
  267. }
  268. function handleCancel(){
  269. visible.value = false
  270. selectedRowKeys.value = []
  271. selectedRows.value=[]
  272. }
  273. function getTable(record){
  274. mainId.value = record.id
  275. visible.value = true
  276. loadData()
  277. }
  278. defineExpose({
  279. getTable
  280. });
  281. </script>
  282. <style scoped lang="less">
  283. // /deep/.ant-form-item{
  284. // margin-bottom: 8px !important;
  285. // }
  286. // /deep/.ant-table-wrapper .ant-table-thead > tr > th, .ant-table-wrapper .ant-table-thead > tr > td{
  287. // padding: 8px !important;
  288. // }
  289. </style>