1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012 |
- <template>
- <div class="bg-in-stock">
- <el-form
- ref="goodsExchangeAddForm"
- :model="goodsExchangeAddForm"
- :rules="goodsExchangeAddFormRule"
- label-width="160px"
- inline
- class="change-form"
- >
- <el-form-item label="订单" prop="sn" class="change-form-item">
- <el-input
- v-model="goodsExchangeAddForm.sn"
- :disabled="type === 'detail' || type === 'audit'"
- ref="order"
- @blur="blurUsername()"
- >
- </el-input>
- </el-form-item>
- <el-form-item prop="warehouse_id" label="入库仓库" class="change-form-item">
- <el-select
- v-model="goodsExchangeAddForm.warehouse_id"
- clearable
- :disabled="type === 'detail' || type === 'audit'"
- >
- <!-- @change="handleChangeWareHouse" -->
- <el-option
- v-for="item in warehouseList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="类型" prop="type" class="change-form-item">
- <el-select
- v-model="goodsExchangeAddForm.type"
- filterable
- allow-create
- clearable
- default-first-option
- :disabled="type === 'detail' || type === 'audit'"
- >
- <el-option
- v-for="item in typeList"
- :key="item.id"
- :label="item.real_name"
- :value="item.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item
- label="备注"
- prop="change_desc"
- class="change-form-item"
- style="width: 61%"
- >
- <el-input
- style="flex: 1"
- v-model="goodsExchangeAddForm.memo"
- type="textarea"
- :disabled="type === 'detail' || type === 'audit'"
- :autosize="{ minRows: 3, maxRows: 4 }"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- <div class="mx">
- <h3>商品明细</h3>
- <el-button
- class="button"
- size="mini"
- type="primary"
- v-if="type !== 'detail' && type !== 'audit'"
- @click="scanCode"
- >扫码入库</el-button
- >
- <el-button
- class="button"
- size="mini"
- type="primary"
- v-if="type !== 'detail' && type !== 'audit'"
- @click="handleSelectWarehouseEntryBatch"
- >选择</el-button
- >
- </div>
- <div style="width: 100%; display: block">
- <el-form-item style="width: 100%">
- <el-table
- :data="goodsExchangeAddForm.product_list"
- border
- :cell-style="{ textAlign: 'center' }"
- :header-cell-style="{ textAlign: 'center' }"
- style="width: 100%; margin-top: 20px"
- >
- <el-table-column label="商品编号">
- <template slot-scope="scope">
- {{ scope.row.sn }}
- </template>
- </el-table-column>
- <el-table-column label="商品名称">
- <template slot-scope="scope">
- {{ scope.row.name }}
- </template>
- </el-table-column>
- <el-table-column label="条码">
- <template slot-scope="scope">
- {{ scope.row.product_barcode }}
- </template>
- </el-table-column>
- <el-table-column label="序列号">
- <template slot-scope="scope">
- {{ scope.row.sn_code }}
- </template>
- </el-table-column>
- <el-table-column label="规格型号">
- <template slot-scope="scope">
- {{ scope.row.goods_style }}
- </template>
- </el-table-column>
- <el-table-column label="单位">
- <template slot-scope="scope">
- {{ scope.row.goods_unit }}
- </template>
- </el-table-column>
- <!-- <el-table-column label="订单数量">
- </el-table-column> -->
- <el-table-column label="入库数量">
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.num"
- type="number"
- :min="0"
- :maxlength="20"
- :disabled="type === 'detail' || type === 'audit'"
- ></el-input>
- </template>
- </el-table-column>
- <el-table-column label="库存数量">
- <template slot-scope="scope">
- {{ scope.row.usable_stock }}
- </template>
- </el-table-column>
- <el-table-column label="差异">
- <template slot-scope="scope">
- <!-- 入库减去库存 -->
- {{ scope.row.num - scope.row.usable_stock || 0 }}
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- v-if="type !== 'detail' && type !== 'audit'"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="danger"
- @click="
- goodsExchangeAddForm.product_list.splice(
- scope.$index,
- 1
- )
- "
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- </div>
- </el-form>
- <div class="footer">
- <!-- <el-button v-if="type === 'audit'" type="primary" @click="handlePassGoodsExchange()">审核通过
- </el-button>
- <el-button v-if="type === 'audit'" type="danger" @click="dialogVisible = true">审核驳回
- </el-button> -->
- <el-button
- v-if="type !== 'audit' && type !== 'detail'"
- type="primary"
- @click="savegoodsExchangeAddForm"
- >保存
- </el-button>
- <el-button
- v-if="type !== 'audit' && type !== 'detail'"
- type="primary"
- @click="submitgoodsExchangeAddForm"
- >入库
- </el-button>
- <el-button @click="printIng" v-if="type == 'audit'">打印</el-button>
- <el-button @click="$router.back()">返回</el-button>
- </div>
- <el-dialog title="提示" :visible.sync="dialogVisible" width="30%">
- <el-form
- ref="goodsExchangeAddForm"
- :model="goodsExchangeAddForm"
- label-width="120px"
- inline
- style="width: 900px"
- >
- <el-form-item label="驳回原因" prop="reject_reason">
- <el-input
- v-model="goodsExchangeAddForm.reject_reason"
- type="textarea"
- :minlength="0"
- :maxlength="100"
- ></el-input>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="handleRejectGoodsExchange()"
- >确 定</el-button
- >
- </span>
- </el-dialog>
- <el-dialog title="扫码入库" :visible.sync="scanDialogVisible" width="30%">
- <el-form
- ref="scanGoodsForm"
- :model="scanGoodsForm"
- label-width="120px"
- inline
- >
- <el-form-item label="条码" prop="bar_code">
- <el-input
- v-model="scanGoodsForm.bar_code"
- ref="input"
- @keyup.enter.native="toSearch()"
- @blur="blurCode()"
- :minlength="0"
- :maxlength="100"
- ></el-input>
- </el-form-item>
- <el-form-item label="序列号" prop="sn_code">
- <el-input
- v-model="scanGoodsForm.sn_code"
- :minlength="0"
- :maxlength="100"
- ></el-input>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <!-- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="handleRejectGoodsExchange()">确 定</el-button> -->
- </span>
- </el-dialog>
- <el-dialog
- title="入库商品"
- :visible.sync="goodsVisible"
- width="1000px"
- @close="closeGoosData"
- >
- <el-table
- :data="goodsData"
- border
- style="width: 100%"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="55" />
- <el-table-column prop="sn" label="商品编号"> </el-table-column>
- <el-table-column prop="bar_code" label="商品条码"> </el-table-column>
- <el-table-column prop="sn_code" label="序列号"> </el-table-column>
- <el-table-column prop="name" label="商品名称"> </el-table-column>
- <el-table-column prop="goods_style" label="规格型号"> </el-table-column>
- <el-table-column prop="goods_unit" label="单位"> </el-table-column>
- <!-- <el-table-column prop="product_list.stock_num" label="库存数量"> </el-table-column> -->
- </el-table>
- <span slot="footer" class="dialog-footer">
- <el-button @click="closeGoosData">取 消</el-button>
- <el-button type="primary" @click="submitGoosData()">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { mapGetters } from "vuex";
- import { Foundation, RegExp } from "~/ui-utils";
- import * as API_GoodsExchange from "@/api/goodsExchange";
- import * as API_Setting from "@/api/setting";
- import * as API_BasicSetting from "@/api/basicSetting";
- import * as API_Erp from "@/api/erp";
- import * as API_Auth from "@/api/auth";
- import * as API_order from "@/api/order";
- import * as API_Goods from "@/api/goods";
- export default {
- name: "goodsExchangeAdd",
- data() {
- const checkPrice = (rule, value, callback) => {
- if (!value && value !== 0) {
- return callback(new Error("换货金额不能为空"));
- } else if (!RegExp.money.test(value)) {
- callback(new Error("请输入正整数或者两位小数"));
- } else if (parseFloat(value) > 99999999) {
- callback(new Error("换货金额设置超过上限值"));
- } else {
- callback();
- }
- };
- return {
- typeList: [
- {
- real_name: "采购入库",
- id: "采购入库",
- },
- {
- real_name: "租赁返回",
- id: "租赁返回",
- },
- {
- real_name: "其他入库",
- id: "其他入库",
- },
- ],
- adminList: [],
- dialogVisible: false,
- warehouseList: [],
- deptList: [],
- deptListAll: [],
- orderList: [],
- id: "",
- type: "",
- /** 入库单表单*/
- goodsExchangeAddForm: {
- contract_product_list: [],
- /* additionalProp1: {
- barcode: "string",
- category_id: 0,
- category_name: "string",
- contract_id: 0,
- goods_id: 0,必填
- num: 0,
- price: 0,
- product_id: 0,//必填
- product_name: "string",
- product_sn: "string",
- specification: "string",
- stock_num: 0,
- tax_rate: 0,
- total_price: 0,
- unit: "string",
- },
- additionalProp2: {
- barcode: "string",
- category_id: 0,
- category_name: "string",
- contract_id: 0,
- goods_id: 0,
- num: 0,
- price: 0,
- product_id: 0,
- product_name: "string",
- product_sn: "string",
- specification: "string",
- stock_num: 0,
- tax_rate: 0,
- total_price: 0,
- unit: "string",
- },
- additionalProp3: {
- barcode: "string",
- category_id: 0,
- category_name: "string",
- contract_id: 0,
- goods_id: 0,
- num: 0,
- price: 0,
- product_id: 0,
- product_name: "string",
- product_sn: "string",
- specification: "string",
- stock_num: 0,
- tax_rate: 0,
- total_price: 0,
- unit: "string",
- }, */
- product_list: [],
- },
- /** 校验规则 */
- goodsExchangeAddFormRule: {
- warehouse_id: [
- { required: true, message: "请选择入库仓库", trigger: "change" },
- ],
- type: [
- { required: true, message: "请选择入库类型", trigger: "change" },
- ],
- // order_id: [
- // { required: true, message: "请输入订单编号", trigger: "blur" },
- // ],
- // change_amount: [
- // { required: true, message: '请输入换货金额', trigger: 'blur' },
- // { validator: checkPrice, trigger: 'blur' }
- // ]
- },
- warehouseProduct: null,
- scanDialogVisible: false,
- scanGoodsForm: {},
- routeName: "",
- //出入库
- sttorageType: "",
- // 出库商品明细
- goodsVisible: false,
- goodsData: [],
- // 暂存已勾选商品
- goodsList: [],
- };
- },
- mounted() {
- this.$nextTick(() => {
- this.$refs.order.focus();
- });
- this.routeName = this.$route.name;
- this.sttorageType = this.$route.params.type;
- this.GET_WarehouseList();
- this.GET_DeptList();
- },
- watch: {
- $route: {
- immediate: true,
- handler(newVal) {
- if (this.$route.name === "goodsExchangeEdit") {
- this.type = "edit";
- } else if (this.$route.name === "goodsExchangeAudit") {
- this.type = "audit";
- } else if (this.$route.name === "goodsExchangeReturn") {
- this.type = "return";
- } else if (this.$route.name === "goodsExchangeAdd") {
- this.type = "add";
- this.goodsExchangeAddForm = {
- change_amount: 0,
- change_list: [],
- return_list: [],
- product_list: [],
- handled_by_id: this.user.uid,
- dept_id: this.user.dept_id,
- };
- // this.goodsExchangeAddForm.handled_by_id = this.user.uid
- // this.goodsExchangeAddForm.dept_id = this.user.dept_id
- this.GET_WarehouseList({ dept_id: this.user.dept_id });
- this.$set(
- this.goodsExchangeAddForm,
- "change_time",
- new Date().getTime()
- );
- } else if (this.$route.name === "goodsExchangeDetail") {
- this.type = "detail";
- }
- if (this.$route.params.id) {
- this.id = this.$route.params.id;
- this.GET_goodsExchangeAddDetail();
- }
- this.GET_AdministratorList();
- },
- },
- },
- computed: {
- ...mapGetters(["user"]),
- },
- methods: {
- // 根据条码 序列号查询商品
- blurCode(){
- if(this.scanGoodsForm.bar_code!==undefined || this.scanGoodsForm.sn_code!==undefined){
- // 通过列表查询商品详细信息
- API_Goods.getGoodsList({barcode:this.scanGoodsForm.bar_code,sncode:this.scanGoodsForm.sn_code}).then(res=>{
- console.log(res);
- this.goodsExchangeAddForm.contract_product_list=res.data
- this.scanDialogVisible=false
- })
- }
- },
- // 查询订单编号
- blurUsername(){
- if(this.goodsExchangeAddForm.sn!==undefined){
- API_order.getOrderList({sn:this.goodsExchangeAddForm.sn}).then(res=>{
- console.log(res.data);
- this.goodsExchangeAddForm.order_id= Number(res.data[0].id)
- this.goodsExchangeAddForm.contract_product_list=res.data
- })
- }/* else{
- this.$message.error("请填写订单编号")
- } */
- },
- /* 通过id查询商品信息
- orderInfo(id){
- API_
- },*/
- handleSelectionChange(val) {
- this.goodsList = val.map((el) => {
- el.product_id = el.id;
- el.goods_id = el.id;
- return el;
- });
- },
- // 保存已选商品
- submitGoosData() {
- if (this.goodsList.length >= 1) {
- let ids=[]
- const param_list={
- warehouse_id:this.goodsExchangeAddForm.warehouse_id,
- good_ids:ids
- }
- this.goodsList.forEach(el=>{
- ids.push(el.id)
- })
- API_GoodsExchange.getStockByWarehouseGood(param_list).then(res=>{
- res.map(el=>{
- el.product_id=el.id
- el.goods_id=el.id
- })
- this.goodsExchangeAddForm.product_list = res;
- this.goodsExchangeAddForm.contract_product_list = res;
- console.log(res);
- this.goodsVisible = false;
- })
- } else {
- this.$message.error("请选择商品信息");
- }
- },
- // 关闭商品明细
- closeGoosData() {
- this.goodsVisible = false;
- },
- // 打印功能
- printIng() {},
- toSearch() {
- API_GoodsExchange.getGoodsInfo({
- barcode: this.scanGoodsForm.bar_code,
- }).then((res) => {
- console.log(res);
- });
- },
- // 扫码入库
- scanCode() {
- this.scanDialogVisible = true;
- this.$nextTick(() => {
- this.$refs.input.focus();
- });
- },
- /** 获取人员列表 */
- GET_AdministratorList() {
- API_Auth.getAdministratorList({
- page_no: 1,
- page_size: 9999,
- user_state: 0,
- }).then((response) => {
- this.adminList = response.data;
- });
- },
- /** 清除已选商品明细 */
- cleanGoodsList() {
- // 切换部门或仓库需要清除已选对应仓库下的商品数据 change_list
- this.goodsExchangeAddForm.contract_product_list = [];
- this.goodsExchangeAddForm.product_list = [];
- },
- changewarehouseList(e) {
- this.$set(this.goodsExchangeAddForm, "warehouse_id", "");
- this.GET_WarehouseList({ dept_id: e });
- this.cleanGoodsList();
- },
- /** 审核-通过 */
- handlePassGoodsExchange() {
- if (this.goodsExchangeAddForm.check_amount_same === false) {
- this.$confirm(this.goodsExchangeAddForm.diff_amount_message, "提示", {
- type: "warning",
- })
- .then(() => {
- this.$confirm("确定通过吗?", "提示", { type: "warning" })
- .then(() => {
- API_GoodsExchange.auditGoodsExchange(this.id, {
- status: "PASS",
- }).then(() => {
- this.$message.success("已通过!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- })
- .catch(() => {});
- })
- .catch(() => {});
- } else {
- this.$confirm("确定通过吗?", "提示", { type: "warning" })
- .then(() => {
- API_GoodsExchange.auditGoodsExchange(this.id, {
- status: "PASS",
- }).then(() => {
- this.$message.success("已通过!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- })
- .catch(() => {});
- }
- },
- /** 审核-拒绝 */
- handleRejectGoodsExchange() {
- this.$confirm("确定拒绝吗?", "提示", { type: "warning" })
- .then(() => {
- API_GoodsExchange.auditGoodsExchange(this.id, {
- status: "REJECT",
- reject_reason: this.goodsExchangeAddForm.reject_reason,
- }).then(() => {
- this.$message.success("已拒绝!");
- this.dialogVisible = false;
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- })
- .catch(() => {});
- },
- /** 获取仓库 */
- GET_WarehouseList(e) {
- API_BasicSetting.getWarehouseListAll().then((response) => {
- this.warehouseList = response;
- });
- },
- //保存
- savegoodsExchangeAddForm(){
- this.$refs["goodsExchangeAddForm"].validate((valid) => {
- if (valid) {
- const { id } = this.goodsExchangeAddForm;
- const params = this.MixinClone(this.goodsExchangeAddForm);
- params.handled_by = this.deptListAll;
- API_order.getOrderList({sn:this.goodsExchangeAddForm.sn}).then(res=>{
- console.log(res.data);
- params.order_id= Number(res.data[0].id)
- })
- params.staff_name = this.goodsExchangeAddForm.distribution_name;
- if (params.warehouse_id) {
- params.warehouse_name = this.warehouseList.find(
- (ware) => ware.id === params.warehouse_id
- ).name;
- }
- if (params.handled_by_id) {
- params.handled_by = this.adminList.find(
- (admin) => admin.id === params.handled_by_id
- ).real_name;
- }
- params.change_time = Math.floor(params.change_time / 1000);
- //类型
- params.save_or_submit="save"
- if (!params.contract_product_list.length) {
- this.$message.error("请选择商品!");
- return;
- }
- if (this.$route.name === "editInventory") {
- API_GoodsExchange.editWarehouseEntry(params).then((response) => {
- this.$message.success("修改成功!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- } else if (this.$route.name === "addInventory") {
- // 新增入库
- API_GoodsExchange.warehouseEntry(params).then(() => {
- this.$message.success("添加成功!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- }
- }
- });
- },
- //入库
- submitgoodsExchangeAddForm() {
- this.$refs["goodsExchangeAddForm"].validate((valid) => {
- if (valid) {
- const { id } = this.goodsExchangeAddForm;
- const params = this.MixinClone(this.goodsExchangeAddForm);
- params.handled_by = this.deptListAll;
- API_order.getOrderList({sn:this.goodsExchangeAddForm.sn}).then(res=>{
- console.log(res.data);
- params.order_id= Number(res.data[0].id)
- })
- params.staff_name = this.goodsExchangeAddForm.distribution_name;
- if (params.warehouse_id) {
- params.warehouse_name = this.warehouseList.find(
- (ware) => ware.id === params.warehouse_id
- ).name;
- }
- if (params.handled_by_id) {
- params.handled_by = this.adminList.find(
- (admin) => admin.id === params.handled_by_id
- ).real_name;
- }
- params.change_time = Math.floor(params.change_time / 1000);
- params.save_or_submit="submit"
- if (!params.contract_product_list.length) {
- this.$message.error("请选择商品!");
- return;
- }
- /* */ if (this.$route.name === "editInventory") {
- params.contract_product_list.map(el=>{
- el.product_id=el.id
- el.goods_id=el.id
- })
- params.product_list.map(el=>{
- el.product_id=el.id
- el.goods_id=el.id
- })
- API_GoodsExchange.editWarehouseEntry(id,params).then((response) => {
- this.$message.success("修改成功!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- } else if (this.$route.name === "addInventory") {
- // 新增入库
- API_GoodsExchange.warehouseEntry(params).then(() => {
- this.$message.success("添加成功!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- }
- }
- });
- },
- /* returngoodsExchangeAddForm() {
- const { id } = this.goodsExchangeAddForm;
- const params = this.MixinClone(this.goodsExchangeAddForm);
- params.dept_name = this.deptListAll.find(
- (dept) => dept.id === params.dept_id
- ).name;
- params.staff_name = this.goodsExchangeAddForm.distribution_name;
- params.warehouse_name = this.warehouseList.find(
- (ware) => ware.id === params.warehouse_id
- ).name;
- params.change_time = Math.floor(params.change_time / 1000);
- params.product_list = params.product_list.map((item) => {
- //change_list
- item.product_sn = item.product_sn;
- item.product_name = item.product_name;
- item.specification = item.product_specification;
- item.product_id = item.product_id;
- item.unit = item.unit;
- item.stock_sn = item.sn;
- item.stock_num = item.remain_num;
- item.cost_price = item.product_cost_price;
- return item;
- });
- API_GoodsExchange.returnGoodsExchange(id, params).then(() => {
- this.$message.success("换货成功!");
- const { callback } = this.$route.params;
- if (typeof callback === "function") callback();
- this.$store.dispatch("delCurrentViews", {
- view: this.$route,
- $router: this.$router,
- });
- this.$router.push({ name: "goodsExchange" });
- });
- }, */
- // 选择出库单
- async handleSelectWarehouseEntryBatch() {
- if (!this.goodsExchangeAddForm.warehouse_id) {
- this.$message.error('请先选择仓库!')
- return
- }
- API_GoodsExchange.getGoodsInfo().then((res) => {
- this.goodsData = res.data;
- this.goodsVisible = true;
- });
- /*// if (!this.goodsExchangeAddForm.warehouse_id) {
- // this.$message.error('请先选择仓库!')
- // return
- // }
- const goodsData = await this.$EnwarehouseEntryBatch({
- goodsApi: "/admin/erp/goods",
- warehouseList: this.warehouseList,
- //change_list
- selectedIds: this.id
- ? this.goodsExchangeAddForm.product_list &&
- this.goodsExchangeAddForm.product_list.map((item) => item.id)
- : this.goodsExchangeAddForm.product_list.map((item) => item.id),
- purchasePlanApiParams: {
- warehouse_id: this.goodsExchangeAddForm.warehouse_id,
- },
- });
- this.goodsExchangeAddForm.warehouse_id = goodsData.warehouse_id;
- this.goodsExchangeAddForm.product_list = goodsData.purchasePlans.map(
- (item) => {
- //
- item.amount = item.entry_price;
- item.product_sn = item.product_sn;
- item.product_name = item.product_name;
- item.specification = item.product_specification;
- item.product_id = item.product_id;
- item.unit = item.product_unit;
- item.stock_sn = item.warehouse_entry_sn;
- item.stock_id = item.warehouse_entry_id;
- item.stock_batch_sn = item.sn;
- item.stock_batch_id = item.id;
- item.cost_price = item.product_cost_price;
- return item;
- }
- );
- this.goodsExchangeAddForm.change_amount =
- this.goodsExchangeAddForm.product_list.reduce(
- (sum, obj) => sum + obj.entry_price,
- 0
- ); */
- },
- /** 选择订单编号 */
- async handleSelectOrderSn() {
- const orders = await this.$EnPickerOrder({
- orderApi: "admin/erp/order",
- selectedIds: [this.goodsExchangeAddForm.order_sn],
- limit: 1,
- });
- this.$set(
- this.goodsExchangeAddForm,
- "distribution_name",
- orders[0].distribution_name
- );
- const orderIds = orders.map((v) => v.sn);
- this.$set(this.goodsExchangeAddForm, "order_sn", orderIds.join(","));
- this.GET_WarehouseOutProduct();
- },
- /** 获取出库单商品明细 */
- async GET_WarehouseOutProduct() {
- const res = await API_Erp.getWarehouseOutProduct({
- order_sn: this.goodsExchangeAddForm.order_sn,
- });
- this.goodsExchangeAddForm.return_list = res.data.map((item) => {
- item.amount = item.product_price;
- item.product_sn = item.product_sn;
- item.product_name = item.product_name;
- item.specification = item.product_specification;
- item.product_id = item.product_id;
- item.unit = item.product_unit;
- item.num = item.return_num;
- item.stock_sn = item.warehouse_entry_sn;
- item.cost_price = item.product_cost_price;
- return item;
- });
- },
- /** 获取部门 */
- GET_DeptList() {
- API_GoodsExchange.getInfo().then((response) => {
- this.deptListAll = response;
- this.deptListAll.password = "";
- });
- },
- /** 切换仓库 */
- handleChangeWareHouse(val) {
- //this.goodsExchangeAddForm.product_list = []change_list
- },
- /** 获取详情页面数据 */
- GET_goodsExchangeAddDetail() {
- this.$nextTick(() => {
- API_GoodsExchange.getGoodsExchangeInfo(this.id).then((response) => {
- this.goodsExchangeAddForm = response;
- this.GET_WarehouseList({ dept_id: response.dept_id });
- this.goodsExchangeAddForm.change_time = Math.floor(
- this.goodsExchangeAddForm.change_time * 1000
- );
- this.goodsExchangeAddForm.distribution_name = response.staff_name;
- this.goodsExchangeAddForm.product_list =
- response.product_list.map((item) => {
- //change_list
- item.name=item.goods_do.name
- item.sn=item.goods_do.sn
- item.sn_code=item.goods_do.sn_code
- item.bar_code=item.goods_do.bar_code
- item.entry_price = item.amount;
- item.product_specification = item.specification;
- item.product_unit = item.unit;
- item.warehouse_entry_sn = item.stock_sn;
- return item;
- });
- this.goodsExchangeAddForm.return_list = response.return_list.map(
- (item) => {
- item.product_price = item.amount;
- item.product_specification = item.specification;
- item.product_unit = item.unit;
- item.return_num = item.num;
- item.warehouse_entry_sn = item.stock_sn;
- return item;
- }
- );
- // this.GET_WarehouseOutProduct()
- });
- });
- },
- },
- };
- </script>
- <style type="text/scss" lang="scss" scoped>
- /deep/ {
- }
- /** 底部步骤 */
- .footer {
- width: 100%;
- padding: 10px;
- bottom: 0px;
- text-align: center;
- z-index: 999;
- }
- .mx {
- display: flex;
- align-items: center;
- width: 100%;
- .button {
- margin-left: 10px;
- }
- }
- .change-form {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- flex-wrap: wrap;
- min-width: 900px;
- .change-form-item {
- width: 30%;
- margin: 0 10px 20px 0;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- }
- /deep/ {
- .el-form-item__content {
- flex: 1;
- width: 100%;
- }
- .el-date-editor,
- .el-cascader,
- .el-select {
- width: 100%;
- }
- }
- }
- .bg-in-stock {
- background-color: #fff;
- margin: 10px;
- padding: 25px;
- }
- .goods-info {
- display: flex;
- .goods-name-box {
- text-align: left;
- .goods-name {
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- line-height: 16px;
- }
- .specs {
- color: #999999;
- }
- }
- }
- /deep/ {
- .el-input--suffix .el-input__inner {
- padding-right: 10px;
- }
- .error-input {
- .el-input__inner {
- border: 1px solid red;
- }
- }
- }
- </style>
|