123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759 |
- <template>
- <div class="detail-container">
- <el-page-header @back="goBack" :content="listItem ? '编辑':'新增'"></el-page-header>
- <div class="main-title">
- <div class="title">订单信息</div>
- </div>
- <el-form ref="mainForm" :model="mainForm" :rules="mainFormRules" label-width="100px" size="small" label-position="right">
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="8">
- <el-form-item label="订单号" prop="orderNum">
- <el-input v-model="mainForm.orderNum" placeholder="系统自动生成" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="8" style="height: 51px;">
- <el-form-item label="单据日期" prop="date">
- <el-date-picker
- v-model="mainForm.date"
- disabled
- type="date"
- value-format="yyyy-MM-dd"
- style="width: 100%;"
- placeholder="系统自动生成">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="8">
- <el-form-item label="业务员" prop="salesMan">
- <el-select v-model="mainForm.salesMan" placeholder="选择业务员" size="small" clearable style="width: 100%">
- <el-option
- v-for="item in outSalesmanList"
- :key="item.adminUserId"
- :label="item.nickName"
- :value="item.adminUserId">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="8">
- <el-form-item label="经销商编码" prop="jxsNum">
- <el-input v-model="mainForm.jxsNum" placeholder="请输入经销商编码" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="16">
- <el-form-item label="经销商名称" prop="jxsName">
- <el-input v-model="mainForm.jxsName" placeholder="请输入经销商名称" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :lg="24">
- <el-form-item label="表头备注" prop="remark">
- <el-input v-model="mainForm.remark" placeholder="请输入表头备注"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div class="main-title">
- <div class="title">货品信息</div>
- <div>
- <el-select v-model="warehouseValue" placeholder="请选择发货仓库" size="small" style="margin-right: 10px">
- <el-option :label="item.name" :value="item.id" v-for="(item, index) in warehouseList" :key="index"></el-option>
- </el-select>
- <el-button type="primary" size="small" icon="el-icon-search" @click="checkStock">检查库存</el-button>
- <el-divider direction="vertical"></el-divider>
- <el-button type="primary" size="small" icon="el-icon-plus" @click="openDialog">添加货品</el-button>
- </div>
- </div>
- <div class="table" style="margin-top: 20px">
- <el-table :data="goodsList" element-loading-text="Loading" border fit highlight-current-row stripe max-height="400">
- <el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
- <el-table-column align="center" label="销售类型" prop="saleTypeName" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品编码" prop="materialCode" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="规格型号" prop="specification" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-input v-model="scope.row.specification" size="small" v-if="listItem"></el-input>
- <div v-else>{{scope.row.specification}}</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="单价" prop="price" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-input v-model="scope.row.price" size="small" type="number" v-if="listItem && !isDealer"></el-input>
- <div v-else>{{scope.row.price}}</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="数量" prop="qty" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-input v-model="scope.row.qty" size="small" type="number"></el-input>
- </template>
- </el-table-column>
- <el-table-column align="center" label="订单金额" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.price * scope.row.qty}}
- </template>
- </el-table-column>
- <el-table-column align="center" label="返利类型" prop="customerWalletId2" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-select v-model="scope.row.customerWalletId2" placeholder="选择返利类型" size="small" clearable @change="changeWallet(scope.$index)">
- <el-option
- v-for="item in scope.row.rebateWallets"
- :key="item.customerWalletId"
- :label="item.customerWalletName"
- :value="item.customerWalletId">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column align="center" label="使用返利金额" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- {{(scope.row.price * scope.row.qty * (scope.row.rebateRate * 100)) / 100}}
- </template>
- </el-table-column>
- <el-table-column align="center" label="格力折扣" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.qty * scope.row.discAmount}}
- </template>
- </el-table-column>
- <el-table-column align="center" label="现金钱包" prop="customerWalletId" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-select v-model="scope.row.customerWalletId" placeholder="选择现金钱包" size="small" clearable>
- <el-option
- v-for="item in scope.row.wallets"
- :key="item.customerWalletId"
- :label="item.customerWalletName"
- :value="item.customerWalletId">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column align="center" label="实付金额" prop="qty" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{((scope.row.price * scope.row.qty) * 100 - ((scope.row.price * scope.row.qty * (scope.row.rebateRate * 100)) / 100) * 100 - ((scope.row.qty * (scope.row.discAmount * 100)) / 100) * 100) / 100}}
- </template>
- </el-table-column>
- <el-table-column align="center" label="是否直调" prop="isDirectTransfer" min-width="100">
- <template slot-scope="scope">
- <el-checkbox v-model="scope.row.isDirectTransfer"></el-checkbox>
- </template>
- </el-table-column>
- <el-table-column align="center" label="直调数量" prop="directTransferQty" min-width="100"></el-table-column>
- <el-table-column align="center" label="备注" prop="remark" min-width="160">
- <template slot-scope="scope">
- <el-input v-model="scope.row.remark" size="small"></el-input>
- </template>
- </el-table-column>
- <el-table-column align="center" label="税率" prop="tax" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="总仓库" prop="status1" min-width="100" show-overflow-tooltip v-if="!listItem">
- <template slot-scope="scope">
- <div>{{ scope.row.status1 | status1Filter }}</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="仓库状态" prop="status2" min-width="100" show-overflow-tooltip v-if="!listItem">
- <template slot-scope="scope">
- <div>{{ status2Filter(scope.row) }}</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="业务员" prop="serviceId" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-select v-model="scope.row.serviceId" placeholder="选择业务员" size="small" clearable disabled>
- <el-option
- v-for="item in salesmanList"
- :key="item.adminUserId"
- :label="item.nickName"
- :value="item.adminUserId">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作" width="100" fixed="right">
- <template slot-scope="scope">
- <el-button type="text" @click="deleteItem(scope.$index)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="page-footer">
- <div class="footer">
- <el-button type="primary" @click="clickSubmitForm">保 存</el-button>
- <el-popconfirm title="确定关闭吗?" @onConfirm="goBack" style="margin-left: 10px;">
- <el-button slot="reference">关 闭</el-button>
- </el-popconfirm>
- </div>
- </div>
- <el-dialog title="添加产品" :visible.sync="isShowDialog" width="80%">
- <el-form ref="screenForm" :model="screenForm" size="small" label-position="left">
- <el-row :gutter="20">
- <!-- <el-col :xs="12" :sm="6" :lg="6">
- <el-form-item prop="type">
- <el-select v-model="mainForm.type" placeholder="选择产品大类" style="width: 100%" clearable :disabled="goodsList.length > 0 || rightGoodsList.length > 0">
- <el-option v-for="item in typeList" :key="item.dictCode" :label="item.dictValue" :value="item.dictCode"></el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- <el-col :xs="12" :sm="6" :lg="6">
- <el-form-item prop="salesType">
- <el-select v-model="screenForm.salesType" placeholder="选择销售类型" style="width: 100%" clearable>
- <el-option v-for="item in salesTypeList" :key="item.id" :label="item.saleName" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :xs="12" :sm="6" :lg="6">
- <el-form-item prop="proNum">
- <el-input v-model="screenForm.proNum" placeholder="请输入产品编码"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="12" :sm="6" :lg="6">
- <el-form-item prop="proName">
- <el-input v-model="screenForm.proName" placeholder="请输入产品名称"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="12" :sm="6" :lg="6">
- <el-form-item prop="proModel">
- <el-input v-model="screenForm.proModel" placeholder="请输入产品型号"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="12" :sm="6" :lg="6">
- <el-form-item prop="price1" style="display: flex">
- <el-input v-model="screenForm.price1" placeholder="请输入价格" style="width: 46%"></el-input>
- <span> - </span>
- <el-input v-model="screenForm.price2" placeholder="请输入价格" style="width: 46%"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="12" :sm="12" :lg="18" class="tr">
- <el-form-item label="">
- <el-button size="small" @click="resetScreenForm">清空</el-button>
- <el-button size="small" type="primary" @click="submitScreenForm">搜索</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div class="tables">
- <div class="table">
- <el-table :data="leftGoodsList" element-loading-text="Loading" border fit highlight-current-row stripe height="400" @selection-change="leftSelectionChange">
- <el-table-column align="center" type="selection" width="55" :selectable='checkboxSelect'></el-table-column>
- <el-table-column align="center" label="产品编码" prop="number" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品名称" prop="name" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品型号" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品价格" prop="batchPrice" min-width="80" show-overflow-tooltip></el-table-column>
- </el-table>
- <div class="pagination clearfix" style="margin-top: 10px">
- <div class="fr">
- <el-pagination
- @current-change="handleTableCurrentChange"
- :current-page="currentPage"
- :page-size="10"
- background
- layout="prev, pager, next"
- :total="listTotal">
- </el-pagination>
- </div>
- </div>
- </div>
- <div class="buttons">
- <el-button size="small" type="primary" @click="addAllGoods">全部添加</el-button>
- <el-button size="small" type="primary" @click="addGoods">添 加</el-button>
- <el-button size="small" type="danger" @click="deleteGoods">删 除</el-button>
- <el-button size="small" type="danger" @click="deleteAllGoods">全部删除</el-button>
- </div>
- <div class="table">
- <el-table :data="rightGoodsList" element-loading-text="Loading" border fit highlight-current-row stripe height="400" @selection-change="rightSelectionChange">
- <el-table-column align="center" type="selection" width="55"></el-table-column>
- <el-table-column align="center" label="产品编码" prop="number" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品名称" prop="name" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品型号" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品价格" prop="batchPrice" min-width="80" show-overflow-tooltip></el-table-column>
- </el-table>
- </div>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="closeDialog">取 消</el-button>
- <el-button type="primary" @click="submitAddGoods">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getDetail, addData, editData, getSalesTypeList, getGoodsList, getWarehouseList, checkStock } from "@/api/supply/retail";
- import { getDictList, getSalesmanList } from '@/api/common'
- import { findElem } from '@/utils/util'
- let that
- export default {
- name: 'RetailForm',
- componentName: 'RetailForm',
- props: ['listItem'],
- filters: {
- status1Filter(val) {
- let STOCK_ORDER_START = that.stockList.find(o => o.dictCode == 'STOCK_ORDER_START').dictValue;
- let STOCK_ORDER_END = that.stockList.find(o => o.dictCode == 'STOCK_ORDER_END').dictValue;
- let STOCK_ORDER_HAVE_START = that.stockList.find(o => o.dictCode == 'STOCK_ORDER_HAVE_START').dictValue;
- let STOCK_ORDER_HAVE_END = that.stockList.find(o => o.dictCode == 'STOCK_ORDER_HAVE_END').dictValue;
- let STOCK_ORDER_ALL_NUM = that.stockList.find(o => o.dictCode == 'STOCK_ORDER_ALL_NUM').dictValue;
- if (val === '' || val === null || val === undefined) return '未检查';
- else if (val === 0) return '无货';
- else if (val > STOCK_ORDER_START && val <= STOCK_ORDER_END) return val;
- else if (val >= STOCK_ORDER_HAVE_START && val <= STOCK_ORDER_HAVE_END) return '有货';
- else if (val > STOCK_ORDER_ALL_NUM) return '充足';
- },
- },
- data() {
- return {
- mainForm: {
- orderNum: '',
- date: '',
- // type: '',
- jxsNum: '',
- jxsName: '',
- remark: '',
- salesMan: '',
- },
- mainFormRules: {
- // date: [
- // { required: true, message: '请选择单据日期', trigger: 'change' }
- // ],
- // type: [
- // { required: true, message: '请选择品类', trigger: 'change' }
- // ],
- },
- goodsList: [],
- warehouseList: [],
- warehouseValue: '',
- isShowDialog: false,
- screenForm: {
- type: '',
- salesType: '',
- proNum: '',
- proName: '',
- proModel: '',
- price1: '',
- price2: '',
- },
- currentPage: 1,
- listTotal: 0,
- salesTypeList: [],
- typeList: [],
- stockList: [],
- leftGoodsList: [],
- rightGoodsList: [],
- leftSelection: [],
- rightSelection: [],
- isFirst: false,
- salesmanList: [],
- }
- },
- computed: {
- isDealer() {
- return JSON.parse(localStorage.getItem("supply_user")).isCustomer;
- },
- outSalesmanList() {
- let list = [];
- if(this.goodsList && this.goodsList.length) {
- this.goodsList.forEach(item => {
- if(item.serviceId) {
- let hasItem = findElem(list, 'adminUserId', item.serviceId);
- if(hasItem < 0) {
- let obj = this.salesmanList.find(o => o.adminUserId == item.serviceId);
- list.push(obj);
- }
- }
- })
- if(this.isFirst) {
- this.isFirst = false;
- }else {
- this.mainForm.salesMan = this.goodsList[0].serviceId;
- }
- }
- return list
- }
- },
- beforeCreate() {
- that = this;
- },
- async created() {
- await this.getSalesmanList();
- this.getDictList();
- this.getWarehouseList();
- if(this.listItem) {
- this.isFirst = true;
- this.getDetail();
- }else {
- this.mainForm.jxsNum = JSON.parse(localStorage.getItem("supply_user")).customerNumber;
- this.mainForm.jxsName = JSON.parse(localStorage.getItem("supply_user")).customerName;
- }
- },
- methods: {
- // 返回列表
- goBack() {
- this.$emit('backListFormDetail');
- },
- // 获取详情
- getDetail() {
- getDetail({id: this.listItem.id}).then(res => {
- let data = res.data;
- this.mainForm.orderNum = data.id;
- this.mainForm.date = data.theTime.slice(0, 10);
- this.mainForm.salesMan = data.k3ServiceId;
- this.mainForm.jxsNum = data.customerNumber;
- this.mainForm.jxsName = data.customerName;
- this.mainForm.remark = data.remark;
- data.retailOrderItemList.forEach(item => {
- item.status1 = '';
- item.status2 = '';
- })
- this.goodsList = data.retailOrderItemList;
- })
- },
- // 获取仓库列表
- getWarehouseList() {
- getWarehouseList({
- pageNum: 1,
- pageSize: -1
- }).then((res) => {
- this.warehouseList = res.data.records;
- })
- },
- // 获取销售类型列表
- getSalesTypeList() {
- getSalesTypeList({
- pageNum: 1,
- pageSize: -1
- }).then((res) => {
- this.salesTypeList = res.data.records;
- })
- },
- getDictList() {
- // getDictList({sysDictEnum: 'PRODUCT_TYPE'}).then(res => {
- // this.typeList = res.data;
- // })
- getDictList({sysDictEnum: 'STOCK_ORDER'}).then(res => {
- this.stockList = res.data;
- })
- },
- async getSalesmanList() {
- const res = await getSalesmanList({
- pageNum: 1,
- pageSize: -1,
- isCustomer: 0,
- status: true,
- });
- this.salesmanList = res.data.records;
- },
- // 获取商品列表
- getGoodsList() {
- getGoodsList({
- pageNum: this.currentPage,
- pageSize: 10,
- // mainId: this.mainForm.type,
- saleId: this.screenForm.salesType,
- materialCode: this.screenForm.proNum,
- materialName: this.screenForm.proName,
- specification: this.screenForm.proModel,
- price1: this.screenForm.price1,
- price2: this.screenForm.price2,
- }).then(res => {
- let oldGoodsList = this.goodsList;
- let newGoodsList = res.data.records;
- for(let i = 0; i < oldGoodsList.length; i++) {
- let oldItem = oldGoodsList[i]
- for(let j = 0; j < newGoodsList.length; j++) {
- let newItem = newGoodsList[j]
- if(newItem.id === oldItem.id){
- newGoodsList[j].selected = true;
- break;
- }
- }
- }
- res.data.records.forEach(item => {
- item.materialName = item.name;
- item.materialCode = item.number;
- item.saleTypeName = item.saleName;
- item.unit = item.baseUnit;
- item.price = item.batchPrice;
- item.tax = item.taxRate;
- item.isDirectTransfer = false;
- item.directTransferQty = '';
- item.status1 = '';
- item.status2 = '';
- item.rebateAmount = '';
- item.rebateRate = '';
- item.productPriceId = item.id;
- item.customerWalletId = (item.wallets && item.wallets.length) ? item.wallets[0].customerWalletId : '';
- });
- this.leftGoodsList = res.data.records;
- this.listTotal = res.data.total;
- })
- },
- // 查询重复值并禁选
- checkboxSelect(row, rowIndex) {
- if (row.selected) {
- return false // 禁用
- }else{
- return true // 不禁用
- }
- },
- // 点击 选择商品
- openDialog() {
- this.getSalesTypeList();
- this.isShowDialog = true;
- // if(this.mainForm.type) {
- this.getGoodsList();
- // }
- },
- // 提交筛选表单
- submitScreenForm() {
- // if(!this.mainForm.type) {
- // return this.$errorMsg('请选择产品大类');
- // }
- this.currentPage = 1;
- this.getGoodsList();
- },
- // 重置筛选表单
- resetScreenForm() {
- this.$refs.screenForm.resetFields();
- this.currentPage = 1;
- this.getGoodsList();
- },
- // 更改列表当前页
- handleTableCurrentChange(val) {
- this.currentPage = val;
- this.getGoodsList();
- },
- // 关闭 弹窗
- closeDialog() {
- this.isShowDialog = false;
- },
- // 左侧列表选择
- leftSelectionChange(val) {
- this.leftSelection = val;
- },
- // 右侧列表选择
- rightSelectionChange(val) {
- this.rightSelection = val;
- },
- // 数组去重
- delRepeat(arr1, arr2) {
- let allArr = arr1.concat(arr2); // 两个数组对象合并
- let newArr = []; // 存放去重后数据的新数组
- for(let i=0; i<allArr.length; i++){ // 循环allArr数组对象的内容
- let flag = true; // 建立标记,判断数据是否重复,true为不重复
- for(let j=0; j<newArr.length; j++){ // 循环新数组的内容
- if(allArr[i].id == newArr[j].id){ // 让allArr数组对象的内容与新数组的内容作比较,相同的话,改变标记为false
- flag = false;
- }
- }
- if(flag){ // 判断是否重复
- newArr.push(allArr[i]); // 不重复的放入新数组。 新数组的内容会继续进行上边的循环。
- }
- }
- return newArr;
- },
- // 全部添加
- addAllGoods() {
- this.rightGoodsList = this.delRepeat(this.leftGoodsList, this.rightGoodsList);
- },
- // 添加
- addGoods() {
- this.rightGoodsList = this.delRepeat(this.leftSelection, this.rightGoodsList);
- },
- // 删除
- deleteGoods() {
- let rightGoodsList = this.rightGoodsList;
- let rightSelection = this.rightSelection;
- for(let i = 0; i < rightGoodsList.length; i++) {
- for(let j = 0; j < rightSelection.length; j++) {
- if(rightSelection[j].materialId == rightGoodsList[i].materialId){
- this.rightGoodsList.splice(i, 1);
- }
- }
- }
- },
- // 全部删除
- deleteAllGoods() {
- this.rightGoodsList = [];
- },
- // 确定 添加产品
- submitAddGoods() {
- this.goodsList = this.delRepeat(this.rightGoodsList, this.goodsList);
- this.isShowDialog = false;
- this.leftGoodsList = [];
- this.rightGoodsList = [];
- },
- // 删除产品
- deleteItem(index) {
- this.goodsList.splice(index, 1);
- },
- // 修改返利钱包
- changeWallet(index) {
- if(this.goodsList[index].customerWalletId2) {
- let obj = this.goodsList[index].rebateWallets.find(o => o.customerWalletId == this.goodsList[index].customerWalletId2);
- this.goodsList[index].rebateRate = obj.rebateRate;
- }else {
- this.goodsList[index].rebateRate = '';
- }
- },
- // 检查库存
- checkStock() {
- if(!this.warehouseValue) {
- return this.$errorMsg('请选择仓库');
- }
- if(!this.goodsList) {
- return this.$errorMsg('请添加货品');
- }
- let ids = [];
- this.goodsList.forEach(item => {
- ids.push(item.materialId);
- })
- checkStock({
- correspondId: this.warehouseValue,
- materialId: ids.join(',')
- }).then(res => {
- if(res.data) {
- this.goodsList.forEach((item, index) => {
- item.status1 = res.data[index].allStockNum;
- item.status2 = res.data[index].stockNum;
- })
- }
- })
- },
- status2Filter(item) {
- if (item.status2 === '' || item.status2 === null || item.status2 === undefined) return '未检查';
- else if (item.status2 >= item.qty) return '可用';
- else return '短缺';
- },
- // 保存
- clickSubmitForm() {
- this.$refs.mainForm.validate((valid) => {
- if (valid) {
- for(let i=0; i<this.goodsList.length; i++) {
- if(!this.goodsList[i].customerWalletId) {
- this.$errorMsg('请选择现金钱包');
- return;
- }
- }
- let goodsList = JSON.parse(JSON.stringify(this.goodsList));
- goodsList.forEach(item => {
- delete item.rebateWallets;
- delete item.wallets;
- })
- let saleManItem = this.mainForm.salesMan ? this.mainForm.salesManthis.outSalesmanList.find(o => o.adminUserId == this.mainForm.salesMan) : '';
- let params = {
- // theTime: this.mainForm.date + ' 00:00:00',
- // mainId: this.mainForm.type,
- // mainName,
- k3ServiceId: this.mainForm.salesMan,
- k3ServiceName: saleManItem.nickName,
- remark: this.mainForm.remark,
- type: 1, // 1:普通零售单,2:政策零售单
- retailOrderItemList: goodsList
- }
- if(this.listItem) {
- params.id = this.listItem.id;
- editData(params).then(res => {
- this.$successMsg('编辑成功');
- this.goBack();
- this.$parent.getList();
- })
- }else {
- addData(params).then(res => {
- this.$successMsg('添加成功');
- this.goBack();
- this.$parent.getList();
- })
- }
- }
- })
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .detail-container {
- width: 100%;
- height: 100%;
- }
- .main-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 20px;
- height: 60px;
- border-bottom: 1px solid #DCDFE6;
- margin-bottom: 20px;
- .title {
- font-size: 16px;
- font-weight: 600;
- padding-left: 10px;
- }
- }
- .tables {
- display: flex;
- margin-top: 10px;
- .table {
- width: 45%;
- }
- .buttons {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 0 10px;
- button {
- margin: 0;
- margin-top: 10px;
- }
- }
- }
- </style>
|