123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <a-modal
- centered
- class="satelliteWarehouseInventory-modal"
- :footer="null"
- :maskClosable="false"
- title="补货清单"
- v-model="isShow"
- @cancel="isShow=false"
- :width="960">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 补货清单 -->
- <div>
- <h4 style="font-weight: bold;font-size: 16px;">{{ (nowData&&nowData.customerName) || '--' }}</h4>
- <s-table
- class="sTable"
- ref="table"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 1260 }"
- :defaultLoadData="false"
- bordered>
- <!-- 补货数量 -->
- <template slot="productQty" slot-scope="text, record">
- <a-button
- type="primary"
- @click="handleNumSubtract(record)"
- shape="circle"
- icon="minus"
- size="small"
- id="satelliteWarehouseInventoryList-num-add-btn"></a-button>
- <a-input-number
- size="small"
- v-model="record.productQty"
- :min="0"
- :max="999999"
- :precision="0"
- :step="1"
- @change="e => onChange(e, record)"
- class="stepper" />
- <a-button
- type="primary"
- @click="handleNumAdd(record)"
- shape="circle"
- icon="plus"
- size="small"
- id="satelliteWarehouseInventoryList-num-subtract-btn"></a-button>
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button type="link" @click="handleConfirm(record)" id="satelliteWarehouseInventoryList-remove-btn">移除</a-button>
- </template>
- </s-table>
- <div class="btn-cont">
- <a-button type="primary" id="satellite-warehouse-inventory-add-modal-add" @click="handleAdd">创建销售单</a-button>
- <a-button id="satellite-warehouse-inventory-add-modal-back" @click="isShow = false" style="margin-left: 15px;">返回列表</a-button>
- </div>
- </div>
- </a-spin>
- </a-modal>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable } from '@/components'
- import { satelliteWHSupplyList, satelliteWHSupplyUpdate, satelliteWHSupplyDel, satelliteWHSupplyValidateStock, satelliteWHSupplyAddSales } from '@/api/satelliteWH'
- export default {
- name: 'SatelliteWarehouseInventoryAddModal',
- components: { STable },
- mixins: [commonMixin],
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- nowData: {
- type: Object,
- default: null
- }
- },
- data () {
- return {
- spinning: false,
- isShow: this.openModal, // 是否打开弹框
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '客户名称', dataIndex: 'customer.customerName', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '仓库名称', dataIndex: 'satelliteWarehouseName', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '配件名称', dataIndex: 'dealerProduct.name', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '产品编码', dataIndex: 'dealerProduct.code', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品原厂编码', dataIndex: 'dealerProduct.origCode', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '补货数量', scopedSlots: { customRender: 'productQty' }, width: 200, align: 'center' },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.spinning = true
- return satelliteWHSupplyList(Object.assign(parameter, { customerSn: this.nowData.customerSn })).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- }
- this.spinning = false
- return data
- })
- },
- val: 1
- }
- },
- methods: {
- // 创建销售单
- handleAdd () {
- const _this = this
- // 校验库存
- satelliteWHSupplyValidateStock({ sn: this.nowData.customerSn }).then(res => {
- if (res.status == 200) {
- if (res.data.length == 0) {
- // 创建销售单
- _this.createSalesFun()
- } else {
- const str = res.data.join('、')
- _this.$confirm({
- title: '提示',
- content: '产品编码为:【' + str + '】的产品库存不足!是否提交?',
- centered: true,
- onOk () {
- _this.createSalesFun()
- }
- })
- }
- }
- })
- },
- // 创建销售单
- createSalesFun () {
- this.spinning = true
- satelliteWHSupplyAddSales({ sn: this.nowData.customerSn }).then(res => {
- if (res.status == 200) {
- this.$router.push({ name: 'salesEdit', params: { id: res.data.id, sn: res.data.salesBillSn, priceType: res.data.priceType } })
- this.spinning = false
- } else {
- this.spinning = false
- }
- })
- },
- // 补货数量 加
- handleNumAdd (row) {
- row.productQty < 999999 ? this.handleQty(++row.productQty, row) : row.productQty
- },
- // 补货数量 减
- handleNumSubtract (row) {
- row.productQty > 1 ? this.handleQty(--row.productQty, row) : this.handleRemove(row)
- },
- // 删除配件信息
- handleRemove (row) {
- this.spinning = true
- satelliteWHSupplyDel({ sn: row.satelliteWarehouseSupplySn }).then(res => {
- if (res.status == 200) {
- this.$refs.table.refresh(true)
- this.spinning = false
- } else {
- this.spinning = false
- }
- })
- },
- // 弹框确认
- handleConfirm (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '移除后不可恢复,确定要进行移除吗?',
- centered: true,
- onOk () {
- _this.handleRemove(row)
- }
- })
- },
- // 补货数量 change
- onChange (val, row) {
- val > 0 ? this.handleQty(val, row) : this.handleRemove(row)
- },
- handleQty (val, row) {
- const params = {
- satelliteWarehouseSupplySn: row.satelliteWarehouseSupplySn,
- productSn: row.productSn,
- productQty: val
- }
- this.spinning = true
- satelliteWHSupplyUpdate(params).then(res => {
- if (res.status == 200) {
- this.$refs.table.refresh(true)
- this.spinning = false
- } else {
- this.spinning = false
- }
- })
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- if (!newValue) {
- this.$emit('close')
- } else {
- const _this = this
- setTimeout(() => {
- _this.$refs.table.refresh(true)
- }, 100)
- }
- }
- }
- }
- </script>
- <style lang="less">
- .satelliteWarehouseInventory-modal{
- .sTable{
- margin-top: 20px;
- }
- .ant-modal-body {
- padding: 40px 40px 24px;
- }
- .item-cont {
- margin-bottom: 10px;
- display: flex;
- .item-label {
- width: 115px;
- font-size: 14px;
- color: rgba(0, 0, 0);
- flex-shrink: 0;
- }
- .item-main {
- flex-grow: 1;
- word-break: break-all;
- }
- }
- .btn-cont {
- text-align: center;
- margin: 35px 0 10px;
- }
- .stepper{
- margin: 0 10px;
- input{
- text-align: center;
- }
- }
- }
- </style>
|