123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- </div>
- <div class="app-container ">
- <div class="cell clearfix">
- <el-input
- size="small"
- style="width: 400px;"
- class="filter-item"
- v-model.trim="keywords"
- placeholder="商品编码/商品名称/规格名称"
- />
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- icon="el-icon-search"
- @click="search"
- >搜索</el-button
- >
- </div>
-
- <el-table
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :data="WarehouseInfo.warehouseInfoDate"
- :class="signAndWeighBoxPatients"
- border
- v-loading="WarehouseInfo.loading"
- >
- <el-table-column label="商品编码" align="center">
- <template slot-scope="scope">
- {{ scope.row.good_code }}
- </template>
- </el-table-column>
- <el-table-column label="商品类型" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.type.type_name }}</span>
- </template>
- </el-table-column>
- <el-table-column label="规格名称" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.specification_name }}</span>
- </template>
- </el-table-column>
- <el-table-column label="入库数量" align="center">
- <template slot-scope="scope">
- <span
- @click="showStockInDetailDialog(scope.row.good_id)"
- >{{ stockInCount(scope.row) }}</span
- >
- </template>
- </el-table-column>
- <el-table-column label="入库退货" align="center">
- <template slot-scope="scope">
- <span
- @click="showSaleReturnDetailDialog(scope.row)"
- >{{ salesReturnCount(scope.row) }}</span
- >
- </template>
- </el-table-column>
- <el-table-column label="实际入库" align="center">
- <template slot-scope="scope">
- {{ stockInCount(scope.row) - salesReturnCount(scope.row) }}
- </template>
- </el-table-column>
- <el-table-column label="出库数量" align="center">
- <template slot-scope="scope">
- <span
- @click="showStockOutDetailDialog(scope.row.good_id)"
- >{{ stockOutCount(scope.row) }}</span
- >
- </template>
- </el-table-column>
- <el-table-column label="出库退库" align="center">
- <template slot-scope="scope">
- <span
- @click="showCancelStockDetailDialog(scope.row)"
- >{{ cancelStockCount(scope.row) }}</span
- >
- </template>
- </el-table-column>
- <el-table-column label="实际出库" align="center">
- <template slot-scope="scope">
- {{ stockOutCount(scope.row) - cancelStockCount(scope.row) }}
- </template>
- </el-table-column>
-
- <el-table-column label="剩余库存" align="center">
- <template slot-scope="scope">
- <span>{{
- stockInCount(scope.row) -
- salesReturnCount(scope.row) -
- stockOutCount(scope.row) +
- cancelStockCount(scope.row)
- }}</span>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[10, 50, 100]"
- :page-size="10"
- background
- align="right"
- style="margin-top:20px;"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
- </div>
- </template>
-
- <script>
- import { uParseTime } from "@/utils/tools";
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- import {
- GetAllGoodInfo,
- GetAllGoodType,
- getAllStockQueryList
- } from "@/api/stock";
-
- export default {
- name: "stockIn",
- created() {
- this.GetAllStockQuery();
- this.GetAllGoodInfo();
- this.GetAllGoodType();
- },
- components: {
- BreadCrumb
- },
- data() {
- return {
- crumbs: [
- { path: false, name: "库存管理" },
- { path: "/stock/query", name: "库存查询" }
- ],
- keywords: "",
- total: 0,
- multipleSelection: [],
- signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- start_time: "",
- end_time: "",
- page: 1,
- limit: 10,
- goodType: [],
- goodInfo: [],
- WarehouseInfo: {
- loading: false,
- warehouseInfoDate: []
- }
- };
- },
- methods: {
- GetAllStockQuery: function() {
- console.log(this.keywords);
- const Params = {
- page: this.page,
- limit: this.limit,
- keyword: this.keywords
- };
- this.WarehouseInfo.loading = true;
- this.WarehouseInfo.warehouseInfoDate = [];
- getAllStockQueryList(Params).then(response => {
- if (response.data.state == 0) {
- this.WarehouseInfo.loading = false;
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.WarehouseInfo.loading = false;
- this.total = response.data.data.total;
- for (let i = 0; i < response.data.data.list.length; i++) {
-
- this.WarehouseInfo.warehouseInfoDate.push(
- response.data.data.list[i]
- );
- }
- }
- });
- },
- getSpecificationName: function(id) {
- let name = "";
- for (let i = 0; i < this.goodInfo.length; i++) {
- if (this.goodInfo[i].id == id) {
- name = this.goodInfo[i].specification_name;
- }
- }
- return name;
- },
- getTypeName: function(id) {
- let name = "";
- for (let i = 0; i < this.goodType.length; i++) {
- if (this.goodType[i].id == id) {
- name = this.goodType[i].type_name;
- }
- }
- return name;
- },
- GetAllGoodType: function() {
- GetAllGoodType().then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- for (let i = 0; i < response.data.data.goodType.length; i++) {
- this.goodType.push(response.data.data.goodType[i]);
- }
- }
- });
- },
- GetAllGoodInfo: function() {
- GetAllGoodInfo().then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- for (let i = 0; i < response.data.data.goodInfo.length; i++) {
- this.goodInfo.push(response.data.data.goodInfo[i]);
- }
- }
- });
- },
- handleBack: function() {
- this.$router.go(-1);
- },
- handleSizeChange(val) {
- this.limit = val;
- this.GetAllStockQuery();
- },
- handleCurrentChange(val) {
- this.page = val;
- this.GetAllStockQuery();
- },
- calculate: function(val) {
- return Math.round(parseFloat(val) * 100) / 100;
- },
- startTimeChange: function() {
- this.GetAllStockQuery();
- },
- endTimeChange: function() {
- this.GetAllStockQuery();
- },
- stockInCount: function(row) {
- let total = 0;
- for (let i = 0; i < row.query_warehousing_info.length; i++) {
- total = total + row.query_warehousing_info[i].warehousing_count;
- }
- return total;
- },
- salesReturnCount: function(row) {
- let total = 0;
- for (let i = 0; i < row.query_sales_return_info.length; i++) {
- total = total + row.query_sales_return_info[i].count;
- }
- return total;
- },
- stockOutCount: function(row) {
- let total = 0;
- for (let i = 0; i < row.query_warehouseout_info.length; i++) {
- total = total + row.query_warehouseout_info[i].count;
- }
- return total;
- },
- cancelStockCount: function(row) {
- let total = 0;
- for (let i = 0; i < row.query_cancel_stock_info.length; i++) {
- total = total + row.query_cancel_stock_info[i].count;
- }
- return total;
- },
- showStockInDetailDialog: function(val) {},
- showSaleReturnDetailDialog: function() {},
- showStockOutDetailDialog: function() {},
- showCancelStockDetailDialog: function() {},
- search: function() {
- this.GetAllStockQuery();
- }
- }
- };
- </script>
-
- <style rel="stylesheet/css" lang="scss" scoped>
- .information {
- border: 1px #dcdfe6 solid;
- padding: 30px 20px 30px 20px;
-
- .border {
- border-bottom: 1px #dcdfe6 solid;
- margin: 0px 0 20px 0;
- }
- }
-
- .title {
- background: #409eff;
- height: 44px;
- line-height: 44px;
- padding: 0 0 0 10px;
- color: #fff;
- margin: 0 0 10px 0;
- }
-
- .edit_separater {
- border-top: 1px solid rgb(233, 233, 233);
- margin-top: 15px;
- margin-bottom: 15px;
- }
- </style>
-
- <style>
- .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
- font-size: 12px;
- }
-
- .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
- background: #6fb5fa;
- }
-
- .count {
- color: #bd2c00;
- }
- .el-table td,
- .el-table th.is-leaf,
- .el-table--border,
- .el-table--group {
- border-color: #d0d3da;
- }
- .el-table--border::after,
- .el-table--group::after,
- .el-table::before {
- background-color: #d0d3da;
- }
- </style>
|