ShopPurchaseArea.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <template>
  2. <el-form
  3. ref="dataForm"
  4. v-loading="loading"
  5. :model="dataForm"
  6. :rules="dataFormRules"
  7. label-position="left"
  8. label-width="90px"
  9. >
  10. <el-form-item v-if="formDisabled" label="单据编号" prop="purchaseId">
  11. <el-input disabled :value="dataForm.purchaseId" />
  12. </el-form-item>
  13. <el-row :gutter="20">
  14. <el-col :span="8">
  15. <el-form-item label="网点" prop="websitId">
  16. <el-select v-model="dataForm.websitId" :disabled="formDisabled" placeholder="请选择网点" style="width: 100%">
  17. <el-option v-for="(item, index) in authShop" :key="index" :label="item.name" :value="item.websitId" />
  18. </el-select>
  19. </el-form-item>
  20. </el-col>
  21. <el-col :span="8">
  22. <el-form-item label="供应商" prop="venderId">
  23. <el-select
  24. v-model="dataForm.venderId"
  25. filterable
  26. :disabled="formDisabled"
  27. placeholder="请选择供应商"
  28. style="width: 100%"
  29. >
  30. <el-option
  31. v-for="(item, index) in venderList"
  32. :key="index"
  33. :label="item.venderName"
  34. :value="item.venderId"
  35. :disabled="item.status !== 'ON'"
  36. />
  37. </el-select>
  38. </el-form-item>
  39. </el-col>
  40. <el-col :span="8">
  41. <el-form-item label="状态" prop="flag">
  42. <!-- <el-input disabled :value="sheetFlagStr('label', dataForm.flag)" /> -->
  43. </el-form-item>
  44. </el-col>
  45. </el-row>
  46. <el-form-item v-if="dataForm.notes3" label="申请单备注">
  47. <el-input v-model="dataForm.notes3" disabled />
  48. </el-form-item>
  49. <el-form-item label="备注">
  50. <el-input
  51. v-model="dataForm.notes2"
  52. autocomplete="off"
  53. placeholder="备注"
  54. :disabled="inputParam.openType === 'view'"
  55. />
  56. </el-form-item>
  57. <el-row>
  58. <el-col>
  59. <el-divider>采购明细</el-divider>
  60. </el-col>
  61. <el-col>
  62. <el-table
  63. ref="goodsTable"
  64. :data="dataForm.items"
  65. max-height="500"
  66. size="mini"
  67. border
  68. header-cell-class-name="headerRowColor"
  69. class="detail-table"
  70. show-summary
  71. :summary-method="getSummaries"
  72. >
  73. <el-table-column prop="goodsId" label="辅材编号" />
  74. <el-table-column prop="goodsName" label="辅材名称" width="230" />
  75. <el-table-column prop="estimateCost" label="预估进价" header-align="left" align="center" />
  76. <el-table-column prop="purchaseQty" label="订货数量" header-align="left" align="center" />
  77. <el-table-column prop="deliverQty" label="供应数量" header-align="left" align="center">
  78. <template slot-scope="{ $index, row }">
  79. <label v-if="inputParam.openType === 'view'">{{ row.deliverQty + ' /' + row.measureUnit }}</label>
  80. <el-form-item
  81. v-else
  82. style="margin: 18px 0"
  83. label-width="0"
  84. size="mini"
  85. :prop="'items.' + $index + '.deliverQty'"
  86. :rules="dataFormRules.deliverQty"
  87. >
  88. <el-input v-model="row.deliverQty" size="mini">
  89. <template slot="suffix">{{ ' /' + row.measureUnit }}</template>
  90. </el-input>
  91. </el-form-item>
  92. </template>
  93. </el-table-column>
  94. <template v-if="dataForm.flag === 100">
  95. <el-table-column prop="recQty" label="验收数量" />
  96. <el-table-column prop="recGiftQty" label="验收赠品数量" />
  97. </template>
  98. <el-table-column prop="measureUnit" label="采购单位" />
  99. <el-table-column prop="productModel" label="商品型号" />
  100. <el-table-column prop="specification" label="规格" />
  101. </el-table>
  102. <el-row>
  103. <el-col :span="24"
  104. ><div>共 {{ goodsTotalCount }} 条记录</div></el-col
  105. >
  106. </el-row>
  107. </el-col>
  108. </el-row>
  109. <div style="text-align: right">
  110. <el-button @click="cancelForm">取 消</el-button>
  111. <el-button v-if="checkBtn('edit')" type="primary" :disabled="saveBtn" @click="submitForm('edit')"
  112. >保 存</el-button
  113. >
  114. <el-button v-if="checkBtn('verify')" type="success" @click="verifySheet(dataForm.purchaseId)">核 实</el-button>
  115. <el-button v-if="checkBtn('revoke')" type="danger" @click="revokeSheet(dataForm.purchaseId)">撤 消</el-button>
  116. </div>
  117. </el-form>
  118. </template>
  119. <script>
  120. import {
  121. editPurchaseApplySheet,
  122. revokePurchaseApplySheet,
  123. getPurchaseApplySheet,
  124. verifyPurchaseApplySheet
  125. } from '@/api/material-system/vender/shop-purchase-apply'
  126. import { getVenderList } from '@/api/material-system/vender'
  127. import { listPageV2 } from '@/api/auxiliaryFittings/supplier'
  128. import { getWebsit } from '@/api/customerManagement.js'
  129. export default {
  130. name: 'ShopPurchaseArea',
  131. props: {
  132. inputParam: {
  133. type: Object,
  134. default: function () {
  135. return {
  136. openType: 'add',
  137. purchaseId: ''
  138. }
  139. }
  140. }
  141. },
  142. data() {
  143. const validateDeliverQty = (rule, value, callback) => {
  144. this.saveBtn = true
  145. if (Number.isNaN(parseFloat(value))) {
  146. return callback(new Error('请输入数字值'))
  147. }
  148. if (parseFloat(value) < 0) {
  149. return callback(new Error('不能少于0'))
  150. }
  151. this.saveBtn = false
  152. callback()
  153. }
  154. return {
  155. loading: false,
  156. dataForm: {
  157. purchaseId: '', // 单据ID
  158. websitId: '', // 网点ID
  159. websitName: '', // 网点名称
  160. venderId: '', // 供应商ID
  161. venderName: '', // 供应商名称
  162. notes2: '', // 备注
  163. notes3: '', // 网点备注
  164. flag: '',
  165. items: [] // 关系辅材列表
  166. },
  167. dataFormRules: {
  168. deliverQty: [{ validator: validateDeliverQty, trigger: 'blur' }]
  169. },
  170. venderList: [],
  171. saveBtn: false // 保存按钮状态
  172. }
  173. },
  174. computed: {
  175. formDisabled() {
  176. return this.inputParam.openType === 'view' || this.dataForm.purchaseId !== ''
  177. },
  178. goodsTotalCount: function () {
  179. return this.dataForm && this.dataForm.items ? this.dataForm.items.length : 0
  180. }
  181. },
  182. mounted() {
  183. this.getVenderList()
  184. this.getDetail()
  185. getWebsit({ type: 'C', status: true }).then(res => {
  186. this.authShop = res.data
  187. })
  188. },
  189. methods: {
  190. // 获取供应商列表
  191. getVenderList() {
  192. listPageV2({
  193. pageNum: 1,
  194. pageSize: -1,
  195. params: [
  196. { param: 'a.status', compare: '=', value: 'ON' },
  197. { param: 'a.vender_type', compare: 'like', value: '辅材' }
  198. ]
  199. }).then(res => {
  200. this.venderList = res.data.records
  201. })
  202. },
  203. getDetail(id) {
  204. if (id || this.inputParam.purchaseId) {
  205. this.loading = true
  206. getPurchaseApplySheet({ purchaseId: id || this.inputParam.purchaseId }).then(res => {
  207. this.loading = false
  208. this.setDataForm(res.data)
  209. })
  210. }
  211. },
  212. cancelForm() {
  213. this.$parent.$refs.pageRef.refreshList()
  214. this.$emit('update:isOpen', false)
  215. },
  216. submitForm(type) {
  217. this.$refs.dataForm.validate(valid => {
  218. if (valid) {
  219. editPurchaseApplySheet(this.dataForm).then(() => {
  220. this.$successMsg('保存成功')
  221. })
  222. }
  223. })
  224. },
  225. setDataForm(data) {
  226. this.dataForm = {
  227. purchaseId: data.purchaseId, // 单据编号
  228. websitId: data.websitId, // 网点ID
  229. venderId: data.venderId, // 供应商Id
  230. flag: data.flag,
  231. notes: data.notes, // 备注
  232. items: data.items // 关系商品列表
  233. }
  234. },
  235. checkBtn(type) {
  236. const typeMap = {
  237. add: this.inputParam.openType === type,
  238. edit: this.dataForm.flag === 1 && this.inputParam.openType === type,
  239. revoke: this.dataForm.flag === 1,
  240. verify: this.dataForm.flag === 1
  241. }
  242. // 检查按钮权限
  243. return true // this.checkBtnRole(type) && typeMap[type]
  244. },
  245. // 核实 采购申请单
  246. verifySheet(purchaseId) {
  247. this.$confirm(
  248. `此操作将核实 ${purchaseId} 单据,<span style="color: #ff0000;">当前内容如果已修改将忽略保存</span>,是否继续?`,
  249. '提示',
  250. {
  251. confirmButtonText: '确定',
  252. cancelButtonText: '取消',
  253. type: 'warning',
  254. dangerouslyUseHTMLString: true
  255. }
  256. )
  257. .then(() => {
  258. this.loading = true
  259. verifyPurchaseApplySheet({ purchaseId: purchaseId }).then(
  260. () => {
  261. setTimeout(() => {
  262. this.inputParam.openType = 'view'
  263. this.getDetail(purchaseId)
  264. this.$successMsg('核实成功')
  265. this.loading = false
  266. }, 2000)
  267. },
  268. () => {
  269. this.loading = false
  270. }
  271. )
  272. })
  273. .catch(() => console.log('取消'))
  274. },
  275. // 撤消单据
  276. revokeSheet(purchaseId) {
  277. this.$confirm(`此操作将撤消 ${purchaseId} 单据, 是否继续?`, '提示', {
  278. confirmButtonText: '确定',
  279. cancelButtonText: '取消',
  280. type: 'warning'
  281. })
  282. .then(() => {
  283. revokePurchaseApplySheet({ purchaseId: purchaseId }).then(() => {
  284. this.cancelForm()
  285. this.$successMsg('撤消成功')
  286. })
  287. })
  288. .catch(() => console.log('取消'))
  289. },
  290. getSummaries(param) {
  291. const { columns, data } = param
  292. const sums = []
  293. columns.forEach((column, index) => {
  294. if (index === 0) {
  295. sums[index] = '合计'
  296. return
  297. }
  298. const values = data.map(item => Number(item[column.property]))
  299. if (!values.every(value => isNaN(value))) {
  300. sums[index] = values.reduce((prev, curr) => {
  301. const value = Number(curr)
  302. if (!isNaN(value)) {
  303. return prev + curr
  304. } else {
  305. return prev
  306. }
  307. }, 0)
  308. } else {
  309. sums[index] = ''
  310. }
  311. })
  312. return sums
  313. }
  314. }
  315. }
  316. </script>
  317. <style lang="scss" scoped>
  318. .detail-table {
  319. width: 100%;
  320. margin: 15px 0;
  321. ::v-deep .el-input__suffix-inner {
  322. color: red;
  323. }
  324. }
  325. </style>