index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. <template>
  2. <div class="stockWarning pagePadding">
  3. <div v-if=" powers.some((i) => i == '001')">
  4. <div style="width: 100%">
  5. <el-row style="padding: 15px 0 0 0px">
  6. <el-col :span="12" style="width: 290px;margin-right:10px">
  7. <search-work-company
  8. :value="parmValue.companyNo"
  9. :names="''"
  10. :size="searchSize"
  11. :is-detail="id !== 'add'"
  12. :disabled="isDetail"
  13. :placeholder="'业务公司'"
  14. @searchChange="supplierChange"
  15. />
  16. </el-col>
  17. <el-col :span="12" style="width: 300px; padding-left: 10px">
  18. <search-supplier
  19. :size="searchSize"
  20. :placeholder="'供应商公司'"
  21. :disabled="parmValue.companyNo === ''"
  22. :value="parmValue.supplier_code"
  23. @searchChange="selectSupplier"
  24. />
  25. </el-col>
  26. <el-col :span="12" style="width: 240px; padding-left: 10px">
  27. <search-stock
  28. :isDetail="true"
  29. :size="searchSize"
  30. :value="parmValue.stock_code"
  31. :disabled="supplier_code === '' || parmValue.companyNo === ''"
  32. :placeholder="'出库仓库'"
  33. :isRelation="true"
  34. :companyNo="parmValue.companyNo"
  35. :companyCode="supplier_code"
  36. :names="''"
  37. @searchChange="selectStock"
  38. />
  39. </el-col>
  40. <el-col :span="12" style="width: 290px;margin:0 10px">
  41. <el-input
  42. v-model="parmValue.good_name"
  43. size="mini"
  44. clearable
  45. placeholder="商品名称"
  46. @blur="
  47. pageInfo.curr = 1;
  48. parmValue.page = 1;
  49. searchList();
  50. "
  51. @clear="
  52. pageInfo.curr = 1;
  53. parmValue.page = 1;
  54. searchList();
  55. "
  56. />
  57. </el-col>
  58. <el-col :span="12" style="width: 290px;margin-right:10px">
  59. <el-input
  60. v-model="parmValue.spuCode"
  61. clearable
  62. size="mini"
  63. placeholder="商品成本编码"
  64. @blur="
  65. pageInfo.curr = 1;
  66. parmValue.page = 1;
  67. searchList();
  68. "
  69. @clear="
  70. pageInfo.curr = 1;
  71. parmValue.page = 1;
  72. searchList();
  73. "
  74. />
  75. </el-col>
  76. <el-col :span="12" style="width: 290px;margin-right:10px">
  77. <el-select
  78. placeholder="是否库存品"
  79. clearable
  80. size="mini"
  81. v-model="parmValue.is_stock"
  82. @change="
  83. pageInfo.curr = 1;
  84. parmValue.page = 1;
  85. searchList();
  86. "
  87. >
  88. <el-option value="1" label="是" />
  89. <el-option value="0" label="否" />
  90. </el-select>
  91. </el-col>
  92. </el-row>
  93. </div>
  94. <div class="stock-survey clear">
  95. <el-row v-for="item in stock_list" :key="item.id" style="float: left">
  96. <el-col :span="24" class="card">
  97. <el-card shadow="always">
  98. <i :class="item.icon" class="icon"></i>
  99. <countTo style="display: block" :startVal="0" :endVal="item.endVal" :duration="3000"></countTo>
  100. <p style="margin-top: 5px">{{ item.label }}</p>
  101. </el-card>
  102. </el-col>
  103. </el-row>
  104. </div>
  105. <ex-table
  106. v-loading="loading"
  107. :table="table"
  108. :data="tableData"
  109. :columns="columns"
  110. :page="pageInfo"
  111. :size="size"
  112. @row-click="handClick"
  113. @page-curr-change="handlePageChange"
  114. @page-size-change="handleSizeChange"
  115. @screen-reset="
  116. pageInfo.curr = 1;
  117. parmValue.page = 1;
  118. searchList();
  119. "
  120. @screen-submit="
  121. pageInfo.curr = 1;
  122. parmValue.page = 1;
  123. searchList();
  124. "
  125. >
  126. <template #table-header="{}">
  127. <div style="width: 100%; height: 30px; line-height: 30px">
  128. <i class="el-icon-s-unfold" style="height: 10px"></i>库存操作记录
  129. </div>
  130. </template>
  131. <template #type_status="{ scope }">
  132. <el-tag
  133. :size="'mini'"
  134. :type="scope.row.type == '0' ? 'warning' : ''"
  135. v-text="
  136. (statusOptions.find((item) => item.id == scope.row.type) || {})
  137. .label || '--'
  138. "
  139. ></el-tag>
  140. </template>
  141. <template #is_stock="{scope}">
  142. <span>{{scope.row.is_stock === '1' ? "是" : "否"}}</span>
  143. </template>
  144. <template #reviewer="{ scope }">
  145. <!-- {{scope.row.item}} -->
  146. <el-tag v-if="scope.row.item && scope.row.item.length > 0" :size="tablebtnSize">
  147. <span v-for="(si, sii) in scope.row.item" :key="si + sii">{{ si }}</span>
  148. </el-tag>
  149. </template>
  150. </ex-table>
  151. </div>
  152. <div v-else>
  153. <no-auth></no-auth>
  154. </div>
  155. </div>
  156. </template>
  157. <script>
  158. import mixinPage from "@/mixins/elPaginationHandle";
  159. import resToken from "@/mixins/resToken";
  160. import asyncRequest from "@/apis/service/stock/survey";
  161. import countTo from "vue-count-to";
  162. import { mapGetters } from "vuex";
  163. export default {
  164. name: "survey",
  165. mixins: [mixinPage, resToken],
  166. components: {
  167. countTo
  168. },
  169. computed: {
  170. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  171. powers() {
  172. const tran =
  173. this.$store.getters.btnList.find(item => item.menu_route == "survey") ||
  174. {};
  175. const { action } = tran ?? {};
  176. return action ?? [];
  177. }
  178. },
  179. data() {
  180. return {
  181. statusOptions: [
  182. {
  183. id: "1",
  184. label: "增加"
  185. },
  186. {
  187. id: "2",
  188. label: "减少"
  189. }
  190. ],
  191. stock_code: "",
  192. supplier_code: "",
  193. parmValue: {
  194. companyNo: "",
  195. good_name: "", //商品名称
  196. spuCode: "", //商品成本编码
  197. is_stock: "", //是否库存商品
  198. supplier_code: [],
  199. stock_code: [],
  200. page: 1,
  201. size: 15
  202. },
  203. stock_list: [
  204. {
  205. id: "1",
  206. icon: "el-icon-box",
  207. label: "当前库存",
  208. endVal: 0
  209. },
  210. {
  211. id: "2",
  212. icon: "el-icon-download",
  213. label: "待入库",
  214. endVal: 0
  215. },
  216. {
  217. id: "3",
  218. icon: "el-icon-upload2",
  219. label: "待出库",
  220. endVal: 0
  221. },
  222. {
  223. id: "4",
  224. icon: "el-icon-shopping-cart-full",
  225. label: "可用库存",
  226. endVal: 0
  227. },
  228. {
  229. id: "5",
  230. icon: "el-icon-truck",
  231. label: "在途库存",
  232. endVal: 0
  233. }
  234. ],
  235. loading: true,
  236. showModel: false,
  237. isDetail: false,
  238. modelId: 0,
  239. tableData: [], // 表格 - 数据
  240. table: {
  241. // 表格 - 参数
  242. stripe: true,
  243. border: true
  244. // _defaultHeader_: ["setcol"],
  245. },
  246. // 表格 - 分页
  247. pageInfo: {
  248. size: 15,
  249. curr: 1,
  250. total: 0
  251. },
  252. columns: [
  253. {
  254. prop: "good_log_code",
  255. label: "业务编号",
  256. width: "160px"
  257. },
  258. {
  259. prop: "good_name",
  260. label: "商品名称",
  261. width: "160px"
  262. },
  263. {
  264. prop:"spuCode",
  265. label:"商品成本编码",
  266. width:"160px"
  267. },
  268. {
  269. prop:"is_stock",
  270. label:"是否库存品",
  271. _slot_: "is_stock",
  272. width:'70px'
  273. },
  274. {
  275. prop: "action_type_cn",
  276. label: "库存来源",
  277. width: "90px"
  278. },
  279. {
  280. prop: "type",
  281. label: "变化类别",
  282. _slot_: "type_status",
  283. width: "70px"
  284. },
  285. {
  286. prop: "stock",
  287. label: "变动数量",
  288. width: "90px"
  289. },
  290. {
  291. prop: "companyNo",
  292. label: "业务公司编号",
  293. width: "150px"
  294. },
  295. {
  296. prop: "company",
  297. label: "业务公司名称",
  298. "min-width": "150px"
  299. },
  300. {
  301. prop: "code",
  302. label: "仓库所在公司编号",
  303. width: "150px"
  304. },
  305. {
  306. prop: "name",
  307. label: "仓库所在公司名称",
  308. "min-width": "150px"
  309. },
  310. {
  311. prop: "wsm_code",
  312. label: "仓库编号",
  313. width: "165px"
  314. },
  315. {
  316. prop: "wsm_name",
  317. label: "仓库名称",
  318. "min-width": "100px"
  319. },
  320. {
  321. prop: "action_name",
  322. label: "操作人",
  323. width: "70px"
  324. },
  325. {
  326. prop: "reviewer",
  327. label: "操作人部门",
  328. _slot_: "reviewer",
  329. width: "130px"
  330. },
  331. {
  332. prop: "addtime",
  333. label: "操作时间",
  334. width: "145px",
  335. sortable: true
  336. }
  337. ]
  338. };
  339. },
  340. mounted() {
  341. this.stock_code = "";
  342. this.supplier_code = "";
  343. this.stockList();
  344. this.searchList();
  345. },
  346. methods: {
  347. //业务公司选择
  348. supplierChange(e) {
  349. const { code } = e;
  350. this.parmValue.companyNo = code || ""; //供应商编码
  351. //清空子集
  352. this.parmValue.supplier_code = [];
  353. this.supplier_code = "";
  354. this.parmValue.stock_code = [];
  355. this.parmValue.page = 1;
  356. this.pageInfo.curr = 1;
  357. this.stockList();
  358. this.searchList();
  359. },
  360. // 选择供应商
  361. selectSupplier(e) {
  362. const { code } = e;
  363. this.parmValue.supplier_code = code ? [code] : [];
  364. this.supplier_code = code;
  365. //清空子集
  366. this.parmValue.stock_code = [];
  367. this.stock_code = "";
  368. this.parmValue.page = 1;
  369. this.pageInfo.curr = 1;
  370. this.stockList();
  371. this.searchList();
  372. },
  373. // 选择供应商仓库
  374. selectStock(e) {
  375. const { code } = e;
  376. this.parmValue.stock_code = code ? [code] : [];
  377. this.stock_code = code || "";
  378. this.parmValue.page = 1;
  379. this.pageInfo.curr = 1;
  380. this.stockList();
  381. this.searchList();
  382. },
  383. //获取表格上方的卡片数据
  384. async stockList() {
  385. let model = {
  386. companyNo: this.parmValue.companyNo,
  387. supplier_code: this.supplier_code,
  388. stock_code: this.stock_code
  389. };
  390. const res = await asyncRequest.getstockwsm(model);
  391. // console.log(res);
  392. if (res && res.code === 0 && res.data) {
  393. const {
  394. intra_stock,
  395. total_stock,
  396. usable_stock,
  397. wait_in_stock,
  398. wait_out_stock,
  399. warn_stock
  400. } = res.data;
  401. this.stock_list[0].endVal = Number(total_stock);
  402. this.stock_list[1].endVal = Number(wait_in_stock);
  403. this.stock_list[2].endVal = Number(wait_out_stock);
  404. this.stock_list[3].endVal = Number(usable_stock);
  405. this.stock_list[4].endVal = Number(intra_stock);
  406. } else if (res && res.code >= 100 && res.code <= 104) {
  407. await this.logout();
  408. } else {
  409. }
  410. },
  411. //获取表格数据
  412. async searchList() {
  413. this.tableData = [];
  414. this.loading = true;
  415. let model = JSON.parse(JSON.stringify(this.parmValue));
  416. model.supplier_code = this.supplier_code;
  417. model.stock_code = this.stock_code;
  418. const res = await asyncRequest.list(model);
  419. if (res && res.code === 0 && res.data) {
  420. this.tableData = res.data.list;
  421. this.tableData.forEach(v => {
  422. if (v.empty) {
  423. v.code = v.empty.code;
  424. v.wsm_name = v.empty.wsm_name;
  425. v.name = v.empty.name;
  426. }
  427. });
  428. this.pageInfo.total = Number(res.data.count);
  429. } else if (res && res.code >= 100 && res.code <= 104) {
  430. await this.logout();
  431. } else {
  432. this.tableData = [];
  433. this.pageInfo.total = 0;
  434. }
  435. this.loading = false;
  436. }
  437. }
  438. };
  439. </script>
  440. <style lang="scss" scoped>
  441. /deep/.el-input {
  442. margin-bottom: 10px;
  443. }
  444. .card {
  445. width: 200px;
  446. height: 115px;
  447. flex: 1;
  448. }
  449. @media screen and (max-width: 1500px) {
  450. .card {
  451. width: 160px;
  452. }
  453. }
  454. @media screen and (max-width: 1350px) {
  455. .card {
  456. width: 130px;
  457. }
  458. }
  459. .stock-survey {
  460. width: 100%;
  461. display: flex;
  462. // position: relative;
  463. justify-content: space-around;
  464. overflow: hidden;
  465. padding: 20px 0 20px 10px;
  466. text-align: center;
  467. .icon {
  468. font-size: 40px;
  469. padding-bottom: 10px;
  470. }
  471. p {
  472. cursor: default;
  473. }
  474. }
  475. </style>