123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs='crumbs'></bread-crumb>
- <div style="float:right;">
- <el-button size="small" @click="back()" class="filter-item" >取 消</el-button>
- <el-button size="small" type="primary" @click="submit()" class="filter-item" >保 存</el-button>
- </div>
- </div>
-
- <div class="app-container">
-
- <stock-in-dialog ref="dialog" :propForm="propForm"
- :visibility="isVisibility"
- v-on:dialog-comfirm="comfirm"
- v-on:dialog-cancle="cancle"></stock-in-dialog>
-
-
-
- <div class="cell clearfix">
- <label class="title"><span class="name">入库时间</span> : </label>
- <el-date-picker v-model="warehousing_time" prefix-icon="el-icon-date" :editable="false" style="width: 196px;" type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd" value-format="yyyy-MM-dd" > </el-date-picker>
- </div>
-
-
- <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
- <el-table id="oictable" :data="recordInfo.recordData" :class="signAndWeighBoxPatients" style="width: 100%" border
- max-height="450" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
- >
-
- <el-table-column align="center" width="200" >
-
- <template slot="header" slot-scope="scope">
- <span>商品类型<span style="color: red">*</span></span>
- </template>
-
- <template slot-scope="scope">
- <el-form-item style="padding-top: 15px">
- <el-input placeholder="请输入商品类型" v-model="scope.row.good_type_id"
- :value="typeName(scope.row.good_type_id)"
- @focus="showDialog(scope.$index, scope.row)"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column align="center" width="200">
- <template slot="header" slot-scope="scope">
- <span>规格名称<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
-
- <el-form-item style="padding-top: 15px">
- <el-input placeholder="请输入规格名称" v-model="scope.row.good_id"
- :value="specificationName(scope.row.good_id)"
- @focus="showDialog(scope.$index, scope.row)"></el-input>
- </el-form-item>
-
- </template>
- </el-table-column>
-
-
-
- <el-table-column align="center" width="150">
- <template slot="header" slot-scope="scope">
- <span>单价<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
- <!--<el-input type="number" v-model="scope.row.price" @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
- <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
- style="padding-top: 17px">
- <el-input placeholder="请输入单价" type="number" v-model="scope.row.price"></el-input>
- </el-form-item>
-
-
- </template>
- </el-table-column>
-
- <el-table-column align="center" width="180">
- <template slot="header" slot-scope="scope">
- <span>入库数量<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
- <!--{{scope.row.warehousing_count}}-->
- <!--<el-input type="number" v-model="scope.row.warehousing_count" @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
-
- <el-form-item :prop="'recordData.' + scope.$index + '.warehousing_count'"
- :rules='tableRules.warehousing_count' style="padding-top: 17px">
- <el-input placeholder="请输入入库数量" type="number" v-model="scope.row.warehousing_count"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="总价" align="center" width="150">
- <template slot-scope="scope">
- {{calculate(scope.row.price*scope.row.warehousing_count)}}
- </template>
- </el-table-column>
-
- <el-table-column align="center" width="150">
- <template slot="header" slot-scope="scope">
- <span>批号<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
- <!--<el-input v-model="scope.row.numbers"></el-input>-->
- <el-form-item :prop="'recordData.' + scope.$index + '.number'" :rules='tableRules.number'
- style="padding-top: 17px">
- <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column label="生产日期" width="250" align="center">
- <template slot-scope="scope" >
- <!--{{scope.row.product_date | parseTime("{y}-{m}-{d}")}}-->
- <el-date-picker prefix-icon="el-icon-date" style="width: 145px" v-model="scope.row.product_date"
- type="date" placeholder="选择日期时间" format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"></el-date-picker>
-
- </template>
- </el-table-column>
- <el-table-column label="有效日期" width="250" align="center">
- <template slot-scope="scope">
- <!--{{ scope.row.expiry_date | parseTime("{y}-{m}-{d}")}}-->
- <el-date-picker prefix-icon="el-icon-date" style="width: 145px" v-model="scope.row.expiry_date"
- type="date" placeholder="选择日期时间" format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"></el-date-picker>
-
- </template>
- </el-table-column>
- <el-table-column label="备注" width="150" align="center">
- <template slot-scope="scope">
- <el-input v-model="scope.row.remark"></el-input>
- </template>
- </el-table-column>
-
- <el-table-column label="操作" fixed="right" align="center" width="150">
- <template slot-scope="scope">
- <el-tooltip class="item" effect="dark" content="新增" placement="top">
-
- <el-button
- size="mini"
- type="primary"
- icon="el-icon-circle-plus-outline"
- @click="handleEdit(scope.$index, scope.row)">
- </el-button>
- </el-tooltip>
- <el-tooltip class="item" effect="dark" content="删除" placement="top">
-
- <el-button
- size="mini"
- type="danger"
- icon="el-icon-delete"
- @click="handleDelete(scope.$index, scope.row)">
- </el-button>
- </el-tooltip>
-
- </template>
- </el-table-column>
- </el-table>
-
-
- </el-form>
- </div>
- </div>
-
- </template>
-
- <script>
- import stockInDialog from './Dialog/stockInDialog'
- import { uParseTime } from '@/utils/tools'
-
- import {
- GetAllConfig,
- getWarehouseInfoList,
- GetAllGoodInfoByID,
- getWarehouseInfoByOrdeNumber,
- modifyWarehouseInfo,
- deleteWarehouseInfo,
- DeleteWarehouseInfoItem,
- EditWarehouse
- } from '@/api/stock'
- import BreadCrumb from '../components/bread-crumb'
-
- export default {
- components: { BreadCrumb, stockInDialog },
- name: 'stockIn',
-
- data() {
- var checkGoodId = (rule, value, callback) => {
- setTimeout(() => {
- if (value == '' || value == 0) {
- return callback(new Error('规格名称不能为空'))
- }
- }, 2000)
- }
-
- return {
- crumbs: [
- { path: false, name: '库存管理' },
- { path: '/stock/in', name: '入库单' },
- { path: '/stock/in/detail', name: '编辑入库单' }
- ],
- signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
- warehousing_time: '',
- adminUserOptions: null,
- currentIndex: 0,
-
- recordInfo: {
- recordData: [],
- stock_in_code: '',
- current_index: ''
-
- },
- tableRules: {
- price: [
- { required: true, message: '单价不能为空', trigger: 'blur' }
- ],
- warehousing_count: [
- { required: true, message: '数量不能为空', trigge: 'blur' }
- ],
- number: [
- { required: true, message: '批号不能为空', trigge: 'blur' }
- ],
- good_id: [
- { validator: checkGoodId, trigger: 'blur' }
- ]
-
- },
- ruleForm: {
- manufacturer: [
- { required: true, message: '请选择厂商', trigger: 'change' }
- ]
-
- },
-
- total: '',
- product_date: '',
- expiry_date: '',
- numbers: '',
- // prop
- isVisibility: false,
- propForm: {
- goodType: [],
- goodInfo: [],
- goodUnit: [],
- title: '入库',
- isCreated: 1
-
- },
-
- form: {
- manufacturer: '',
- dealer: ''
- },
- warehouse: {},
- manufacturer: [],
- dealer: [],
- goodType: []
- }
- },
- methods: {
-
- comfirm: function(val) {
- this.$refs.dialog.hide()
-
- if (val.selectedGoodInfo.length > 0) {
- for (let i = val.selectedGoodInfo.length - 1; ;i--) {
- if (i == 0) {
- this.recordInfo.recordData[this.currentIndex].good_type_id = val.goodTypeId
- this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
- } else {
- const tempForm = {}
- tempForm['id'] = 0
- tempForm['good_type_id'] = val.goodTypeId
- tempForm['good_id'] = val.selectedGoodInfo[i].id
- tempForm['number'] = ''
- tempForm['product_date'] = ''
- tempForm['expiry_date'] = ''
- tempForm['warehousing_count'] = ''
- tempForm['price'] = ''
- tempForm['remark'] = ''
- tempForm['dealer'] = ''
- tempForm['manufacturer'] = ''
- this.recordInfo.recordData.splice(this.currentIndex+1, 0, tempForm);
-
- }
- }
- }
-
- this.currentIndex = -1
- }, cancle: function() {
- this.$refs.dialog.hide()
-
- }, GetConfigInfo: function() {
- GetAllConfig().then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.manufacturer = response.data.data.manufacturer
- this.dealer = response.data.data.dealer
- this.goodType = response.data.data.goodType
- this.goodInfo = response.data.data.goodInfo
- }
- })
- }, typeName: function(good_type_id) {
- let name = ''
- for (let i = 0; i < this.goodType.length; i++) {
- if (this.goodType[i].id == good_type_id) {
- name = this.goodType[i].type_name
- }
- }
- return name
- }, specificationName: function(good_info_id) {
- let name = ''
- for (let i = 0; i < this.goodInfo.length; i++) {
- if (this.goodInfo[i].id == good_info_id) {
- name = this.goodInfo[i].specification_name
- }
- }
- return name
- }, handleEdit: function(index, row) {
- const tempObj = {}
- tempObj['id'] = 0
- tempObj['good_type_id'] = 0
- tempObj['good_id'] = 0
- tempObj['number'] = ''
- tempObj['product_date'] = ''
- tempObj['expiry_date'] = ''
- tempObj['warehousing_count'] = ''
- tempObj['price'] = ''
- tempObj['remark'] = ''
- tempObj['dealer'] = ''
- tempObj['manufacturer'] = ''
- this.recordInfo.recordData.push(tempObj)
- }, handleDelete: function(index, row) {
- if (row.id == 0) {
- this.recordInfo.recordData.splice(index, 1)
- } else {
- const params = {
- id: row.id
- }
- this.$confirm('确认删除该入库商品信息记录?', '删除入库商品信息记录', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- DeleteWarehouseInfoItem(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
-
- this.$message.success("删除成功")
-
-
- this.recordInfo.recordData.splice(index, 1)
- }
- })
- }).catch(() => {
- })
- }
- }, calculate: function(val) {
- if (val == 0) {
- return ''
- }
- return Math.round(parseFloat(val) * 100) / 100
- }, getTime(val, temp) {
- if (val != 0) {
- return uParseTime(val, temp)
- } else {
- return ''
- }
- }, showDialog(index, row) {
- this.currentIndex = index
- if (this.form.manufacturer == '' || this.form.manufacturer == 0) {
- this.$message.error('请先选择厂商')
- return
- } else {
- this.isVisibility = true
- const params = {
- id: this.form.manufacturer
- }
- this.propForm.goodType = []
- GetAllGoodInfoByID(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- if (response.data.data.goodInfo.length == 0) {
- this.$message.error('该厂商没商品,请添加商品')
- } else {
- for (let i = 0; i < response.data.data.goodInfo.length; i++) {
- this.propForm.goodType.push(response.data.data.goodInfo[i].GoodsType)
- }
-
- const obj = {}
- this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
- obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
- return cur
- }, []) // 设置cur默认类型为数组,并且初始值为空的数组
- this.$refs.dialog.show()
-
- }
- }
- })
- }
- }, back() {
- this.$router.go(-1)
- }, submit() {
- this.$refs['tableForm'].validate((valid) => {
- if (valid) {
- const array = this.recordInfo.recordData
- for (let i = 0; i < array.length; i++) {
- if (array[i].good_type_id == 0) {
- this.$message.error('商品类型不能为空')
- return
- }
- if (array[i].good_id == 0) {
- this.$message.error('规格名称不能为空')
- return
- }
- }
-
- const params = {
- 'stockIn': this.recordInfo.recordData
- }
- EditWarehouse(params, this.warehousing_time, this.$route.query.id,this.$route.query.type).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
-
- this.$message.success("入库成功")
-
- this.$router.back(-1)
- }
- })
- } else {
- return false
- }
- })
- }, GetOrderDetail: function(order_id) {
- const params = {
- 'id': order_id
- }
- getWarehouseInfoList(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- for (let i = 0; i < response.data.data.info.length; i++) {
- response.data.data.info[i].product_date = this.getTime(response.data.data.info[i].product_date, '{y}-{m}-{d}')
- response.data.data.info[i].expiry_date = this.getTime(response.data.data.info[i].expiry_date, '{y}-{m}-{d}')
- response.data.data.info[i].price = response.data.data.info[i].price.toString()
- response.data.data.info[i].warehousing_count = response.data.data.info[i].warehousing_count.toString()
-
- this.recordInfo.recordData.push(response.data.data.info[i])
- }
-
- this.warehouse = response.data.data.warehousing
- this.form.manufacturer = this.warehouse.manufacturer
- this.form.dealer = this.warehouse.dealer
- this.warehousing_time = this.getTime(this.warehouse.warehousing_time, '{y}-{m}-{d}')
-
- if(this.recordInfo.recordData.length == 0){
- const tempObj = {}
- tempObj['id'] = 0
- tempObj['good_type_id'] = 0
- tempObj['good_id'] = 0
- tempObj['number'] = ''
- tempObj['product_date'] = ''
- tempObj['expiry_date'] = ''
- tempObj['warehousing_count'] = ''
- tempObj['price'] = ''
- tempObj['remark'] = ''
- tempObj['dealer'] = ''
- tempObj['manufacturer'] = ''
- this.recordInfo.recordData.push(tempObj)
- }
- }
- })
- }
- },
- created() {
- this.GetConfigInfo()
- this.propForm.goodUnit = this.$store.getters.good_unit
- const order_id = this.$route.query.id
- this.GetOrderDetail(order_id)
- }
-
- }
- </script>
- <style>
- #oictable ::-webkit-scrollbar {
- height: 15px;
- }
- </style>
-
- <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;
- }
- }
-
-
- .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;
- }
-
- </style>
|