apply_detail.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <template>
  2. <div class="detail-container">
  3. <div v-show="!isShowPrint">
  4. <el-page-header @back="goBack" content="详情"></el-page-header>
  5. <div class="main-title">
  6. <div class="title">发货申请单信息</div>
  7. </div>
  8. <div class="diy-table-1">
  9. <el-row>
  10. <el-col :span="8" class="item">
  11. <div class="label">发货申请单号</div>
  12. <div class="value">{{detailData.id}}</div>
  13. </el-col>
  14. <el-col :span="8" class="item">
  15. <div class="label">申请日期</div>
  16. <div class="value">{{detailData.createTime}}</div>
  17. </el-col>
  18. <el-col :span="8" class="item">
  19. <div class="label">单据状态</div>
  20. <div class="value">{{detailData.examineStatus | statusFilter}}</div>
  21. </el-col>
  22. <el-col :span="8" class="item">
  23. <div class="label">经销商编号</div>
  24. <div class="value">{{detailData.customerNumber}}</div>
  25. </el-col>
  26. <el-col :span="16" class="item">
  27. <div class="label">经销商名称</div>
  28. <div class="value">{{detailData.customerName}}</div>
  29. </el-col>
  30. <el-col :span="24" class="item">
  31. <div class="label">仓库</div>
  32. <div class="value">{{detailData.correspondName}}</div>
  33. </el-col>
  34. <!-- <el-col :span="16" class="item">
  35. <div class="label">文件编号</div>
  36. <div class="value">{{detailData.fileNo}}</div>
  37. </el-col> -->
  38. <el-col :span="24" class="item">
  39. <div class="label">备注</div>
  40. <div class="value">
  41. <!-- {{detailData.remark}} -->
  42. <el-input v-model="detailData.remark" placeholder="填写备注" clearable ></el-input>
  43. </div>
  44. </el-col>
  45. <el-col :span="24" class="item file">
  46. <div class="label">附件</div>
  47. <div class="value">
  48. <div class="file-list" v-if="detailData.fileUrl">
  49. <div class="file-item">
  50. <el-image v-if="checkFileType(detailData.fileUrl) == 'image'" class="img" :src="imageURL + detailData.fileUrl" :preview-src-list="[imageURL + detailData.fileUrl]"></el-image>
  51. <div v-else class="box2" @click="openLink(detailData.fileUrl)">
  52. <img src="@/assets/common/word.png" v-if="checkFileType(detailData.fileUrl) == 'word'" />
  53. <img src="@/assets/common/excel.png" v-if="checkFileType(detailData.fileUrl) == 'excel'" />
  54. <img src="@/assets/common/ppt.png" v-if="checkFileType(detailData.fileUrl) == 'ppt'" />
  55. <img src="@/assets/common/pdf.png" v-if="checkFileType(detailData.fileUrl) == 'pdf'" />
  56. <div class="name ellipsis-3">{{ detailData.fileName }}</div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </el-col>
  62. <el-col :span="6" class="item">
  63. <div class="label">制单人</div>
  64. <div class="value">{{detailData.createBy}}</div>
  65. </el-col>
  66. <el-col :span="6" class="item">
  67. <div class="label">制单日期</div>
  68. <div class="value">{{detailData.createTime}}</div>
  69. </el-col>
  70. <el-col :span="6" class="item">
  71. <div class="label">审核人</div>
  72. <div class="value">{{detailData.approvalName}}</div>
  73. </el-col>
  74. <el-col :span="6" class="item">
  75. <div class="label">审核日期</div>
  76. <div class="value">{{detailData.approvalTime}}</div>
  77. </el-col>
  78. <el-col :span="24" class="item">
  79. <div class="label">审批说明</div>
  80. <div class="value">{{detailData.approvalRemark}}</div>
  81. </el-col>
  82. </el-row>
  83. </div>
  84. <div class="main-title">
  85. <div class="title">货品信息</div>
  86. </div>
  87. <div class="table" style="margin-top: 20px">
  88. <el-table
  89. :data="detailData.orders"
  90. element-loading-text="Loading"
  91. border
  92. fit
  93. highlight-current-row
  94. stripe
  95. show-summary
  96. :summary-method="$getSummaries">
  97. <el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
  98. <el-table-column align="left" label="销售类型" prop="saleTypeName" min-width="100" show-overflow-tooltip></el-table-column>
  99. <el-table-column align="left" label="销售订单号" prop="mainOrderId" min-width="120" show-overflow-tooltip></el-table-column>
  100. <el-table-column align="left" label="物料编码" prop="materialCode" min-width="120" show-overflow-tooltip></el-table-column>
  101. <el-table-column align="left" label="产品编码" prop="materialOldNumber" min-width="120" show-overflow-tooltip></el-table-column>
  102. <el-table-column align="left" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip></el-table-column>
  103. <el-table-column align="left" label="规格型号" prop="specification" min-width="350" show-overflow-tooltip></el-table-column>
  104. <el-table-column align="left" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
  105. <el-table-column align="left" label="文件编号" prop="fileNo" min-width="100" show-overflow-tooltip></el-table-column>
  106. <el-table-column align="right" label="含税单价" prop="singlePayPrice" min-width="100" show-overflow-tooltip>
  107. <template slot-scope="scope">
  108. {{scope.row.singlePayPrice | numToFixed}}
  109. </template>
  110. </el-table-column>
  111. <el-table-column align="right" label="价税合计" prop="payAmount" min-width="100" show-overflow-tooltip>
  112. <template slot-scope="scope">
  113. {{scope.row.payAmount | numToFixed}}
  114. </template>
  115. </el-table-column>
  116. <el-table-column align="right" label="返利金额" prop="payRebateAmount" min-width="100" show-overflow-tooltip>
  117. <template slot-scope="scope">
  118. {{scope.row.payRebateAmount | numToFixed}}
  119. </template>
  120. </el-table-column>
  121. <el-table-column align="right" label="格力折扣" prop="totalDiscAmount" min-width="100" show-overflow-tooltip>
  122. <template slot-scope="scope">
  123. {{scope.row.totalDiscAmount | numToFixed}}
  124. </template>
  125. </el-table-column>
  126. <el-table-column align="right" label="销售政策名称" prop="policyTitle" min-width="100" show-overflow-tooltip></el-table-column>
  127. <el-table-column align="right" label="申请数量" prop="invoiceNum" min-width="100" show-overflow-tooltip></el-table-column>
  128. <el-table-column align="right" label="审批数量" prop="approvalNumber" min-width="100" show-overflow-tooltip></el-table-column>
  129. <el-table-column align="right" label="已退数量" prop="retiredQty" min-width="100" show-overflow-tooltip v-if="detailData.type !== 2"></el-table-column>
  130. <el-table-column align="left" label="表头备注" prop="headerRemark" min-width="160" show-overflow-tooltip></el-table-column>
  131. <!-- <el-table-column align="left" label="发货申请备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column> -->
  132. <el-table-column align="left" label="表体备注" prop="invoiceRemark" min-width="160" show-overflow-tooltip></el-table-column>
  133. <el-table-column align="left" label="业务员" prop="serviceName" min-width="100" show-overflow-tooltip></el-table-column>
  134. <el-table-column align="left" label="表头业务员" prop="k3ServiceName" min-width="100" show-overflow-tooltip></el-table-column>
  135. </el-table>
  136. </div>
  137. <div v-if="isExamine">
  138. <div class="main-title">
  139. <div class="title">审批记录</div>
  140. </div>
  141. <div class="diy-table-1">
  142. <el-row :gutter="0">
  143. <el-col :span="12" class="item">
  144. <div class="label">审批人</div>
  145. <div class="value">{{detailData.approvalName}}</div>
  146. </el-col>
  147. <el-col :span="12" class="item">
  148. <div class="label">审批结果</div>
  149. <div class="value">{{detailData.examineStatus | statusFilter}}</div>
  150. </el-col>
  151. <el-col :span="24" class="item">
  152. <div class="label">审批说明</div>
  153. <div class="value">{{detailData.approvalRemark}}</div>
  154. </el-col>
  155. </el-row>
  156. </div>
  157. </div>
  158. <div class="page-footer">
  159. <div class="footer">
  160. <el-button type="primary" icon="el-icon-printer" @click="toPrint" :disabled="detailData.examineStatus !== 'OK'" v-if="$checkBtnRole('print', $route.meta.roles)">打 印</el-button>
  161. <el-popconfirm title="确定关闭吗?" @onConfirm="goBack" style="margin-left: 10px;">
  162. <el-button slot="reference">关 闭</el-button>
  163. </el-popconfirm>
  164. </div>
  165. </div>
  166. </div>
  167. <print-preview ref="preView" />
  168. <!-- <CommonPrint :printId="printId" :printType="printType" v-if="isShowPrint" @backDetail="backDetail" /> -->
  169. </div>
  170. </template>
  171. <script>
  172. import print from "@/mixin/print";
  173. import printPreview from '@/views/supply/deliver/components/design/preview.vue'
  174. import { getApplyDetail } from "@/api/supply/apply";
  175. import { getFileUrl } from '@/api/common';
  176. import CommonPrint from "@/views/supply/deliver/components/common_print";
  177. export default {
  178. name: 'ApplyDetail',
  179. componentName: 'ApplyDetail',
  180. props: ['listItem'],
  181. components: {
  182. CommonPrint,
  183. printPreview
  184. },
  185. mixins: [print],
  186. filters: {
  187. statusFilter(val) {
  188. const statusList = [
  189. { label: '已保存', value: 'SAVE' },
  190. { label: '待审核', value: 'WAIT' },
  191. { label: '审核通过', value: 'OK' },
  192. // { label: '审核驳回', value: 'FAIL' },,
  193. { label: '已关闭', value: 'CLOSE' },
  194. ];
  195. let obj = statusList.find(o => o.value == val);
  196. return obj ? obj.label : ''
  197. }
  198. },
  199. data() {
  200. return {
  201. imageURL: this.$imageUrl,
  202. detailData: {},
  203. printType: 1,
  204. printId: '',
  205. isShowPrint: false,
  206. }
  207. },
  208. computed: {
  209. isExamine() {
  210. return this.detailData.examineStatus === 'OK' || this.detailData.examineStatus === "FAIL"
  211. }
  212. },
  213. created() {
  214. this.getDetail();
  215. },
  216. mounted() {
  217. this.initPrint()
  218. },
  219. // activated(){
  220. // this.initPrint()
  221. // },
  222. methods: {
  223. // 返回列表
  224. goBack() {
  225. this.$emit('backListFormDetail');
  226. },
  227. // 获取详情
  228. getDetail() {
  229. getApplyDetail({id: this.listItem.id}).then(res => {
  230. if(res.data.orders) {
  231. res.data.orders.forEach(item => {
  232. item.sums1 = ['invoiceNum', 'approvalNumber', 'retiredQty'];
  233. item.sums2 = ['singlePayPrice', 'payAmount', 'payRebateAmount', 'totalDiscAmount'];
  234. })
  235. }
  236. this.detailData = res.data;
  237. })
  238. },
  239. // 检查文件类型
  240. checkFileType(url) {
  241. if(!url) return '';
  242. const fileSuffix = url.substring(url.lastIndexOf(".") + 1);
  243. if (['jpg', 'jpeg', 'png'].includes(fileSuffix)) {
  244. return 'image';
  245. }else if (['doc', 'docx', 'dot', 'wps', 'wpt'].includes(fileSuffix)) {
  246. return 'word';
  247. }else if(['xls', 'xlsx', 'xlt', 'et', 'ett'].includes(fileSuffix)) {
  248. return 'excel';
  249. }else if(['ppt', 'pptx', 'dps', 'dpt', 'pot', 'pps'].includes(fileSuffix)) {
  250. return 'ppt';
  251. }else if(['pdf'].includes(fileSuffix)) {
  252. return 'pdf';
  253. }else {
  254. return '';
  255. }
  256. },
  257. // 打开链接
  258. openLink(url) {
  259. getFileUrl({key: url}).then(res => {
  260. window.open(res.data);
  261. })
  262. },
  263. // 点击打印
  264. toPrint() {
  265. this.printId = this.listItem.id;
  266. // this.isShowPrint = true;
  267. this.getDateil(this.listItem.id,'getDeliverDetail').then(res=>{
  268. this.$endLoading()
  269. this.$refs.preView.show(this.hiprintTemplate, this.outputData);
  270. });
  271. },
  272. backDetail() {
  273. this.printId = '';
  274. this.isShowPrint = false;
  275. },
  276. }
  277. }
  278. </script>
  279. <style scoped lang="scss">
  280. .detail-container {
  281. width: 100%;
  282. height: 100%;
  283. }
  284. .main-title {
  285. display: flex;
  286. justify-content: space-between;
  287. align-items: center;
  288. margin-top: 20px;
  289. height: 60px;
  290. border-bottom: 1px solid #DCDFE6;
  291. margin-bottom: 20px;
  292. .title {
  293. font-size: 16px;
  294. font-weight: 600;
  295. padding-left: 10px;
  296. }
  297. }
  298. </style>