123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- <template>
- <el-dialog
- v-loading="loading"
- :title="title"
- :center="true"
- align="left"
- top="8vh"
- width="900px"
- :close-on-click-modal="false"
- :visible.sync="showModelThis"
- element-loading-text="拼命加载中"
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.8)"
- @close="closeModel"
- >
- <el-card style="margin-top: -20px" class="account">
- <el-row :gutter="10">
- <el-col :span="24" style="margin: -15px 0 0 0">
- <el-divider>选择销售仓库</el-divider>
- </el-col>
- <el-col :span="24">
- <el-table
- ref="multipleTable"
- :data="tableData"
- border
- :size="'mini'"
- tooltip-effect="dark"
- style="width: 100%"
- @selection-change="handleSelectionChange($event, 0)"
- >
- <el-table-column type="selection" width="40" align="center" />
- <el-table-column
- prop="wsm_supplier"
- label="发货仓库"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.wsm_supplier }}/{{ scope.row.wsm_name }}
- </template>
- </el-table-column>
- <el-table-column prop="num" label="总下单数量" width="110" />
- <el-table-column prop="send_num" label="已发货数量" width="110" />
- <el-table-column prop="wsend_num" label="未发货数量" width="110" />
- <el-table-column prop="sale_price" label="销售价" width="110" />
- </el-table>
- </el-col>
- <el-col :span="24">
- <el-divider>选择收货地址</el-divider>
- </el-col>
- <el-col :span="24">
- <el-table
- ref="multipleTable"
- :data="tableData1"
- border
- :size="'mini'"
- tooltip-effect="dark"
- style="width: 100%"
- @selection-change="handleSelectionChange($event, 1)"
- >
- <el-table-column type="selection" width="40" align="center" />
- <el-table-column
- prop="receipt_quantity"
- label="总数量"
- width="100"
- />
- <el-table-column prop="send_num" label="已发货数量" width="100" />
- <el-table-column prop="wsend_num" label="未发货数量" width="100" />
- <el-table-column
- prop="arrive_time"
- label="最晚到货时间"
- width="145"
- />
- <el-table-column prop="contactor" label="收件人" width="60" />
- <el-table-column prop="mobile" label="联系电话" width="105" />
- <el-table-column
- prop="contactor"
- label="收件地址"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.addr_info }}{{ scope.row.addr }}
- </template>
- </el-table-column>
- <!-- <el-table-column prop="post_fee" label="物流费" width="100" /> -->
- </el-table>
- </el-col>
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- status-icon
- :rules="rulesThis"
- label-width="90px"
- class="demo-ruleForm"
- >
- <el-row>
- <el-col :span="12">
- <el-form-item label="发货数量" prop="send_num">
- <el-input v-model="ruleForm.send_num" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="物流费用" prop="post_fee">
- <el-input v-model="ruleForm.post_fee" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="物流公司" prop="post_name">
- <!-- <el-input v-model="ruleForm.post_name" /> -->
- <search-express
- :value="ruleForm.post_name"
- :placeholder="'请输入物流公司'"
- :names="''"
- :disabled="false"
- :is-detail="false"
- @searchChange="handleCompany"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="物流单号" prop="post_code">
- <el-input v-model="ruleForm.post_code" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-col :span="24" style="text-align: right">
- <el-button type="primary" @click="submitForm">保 存 </el-button>
- <el-button @click="closeModel">关 闭</el-button>
- </el-col>
- </el-form>
- </el-row>
- </el-card>
- </el-dialog>
- </template>
- <script>
- import asyncRequest from "@/apis/service/sellOut/salesOrder/detail";
- import resToken from "@/mixins/resToken";
- import { isnumber, isnumber2, isAlphanumeric } from "@/utils/validate";
- export default {
- name: "Account",
- props: ["showModel", "id", "sitem"],
- mixins: [resToken],
- data() {
- const validatePrice = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("不能为空!"));
- } else {
- if (isnumber2(value)) {
- callback();
- } else {
- callback(new Error("仅支持整数或两位小数!"));
- }
- }
- };
- const validateWeight = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("不能为空!"));
- } else {
- if (!isnumber(value)) {
- callback(new Error("仅支持整数!"));
- } else {
- callback();
- }
- }
- };
- const validateCode = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("不能为空!"));
- } else {
- if (!isAlphanumeric(value)) {
- callback(new Error("仅支持字母和数字!"));
- } else {
- callback();
- }
- }
- };
- return {
- roleList: [],
- tableData: [],
- tableData1: [],
- loading: false,
- title: "新建销售出库单",
- list1: [],
- list0: [],
- showModelThis: this.showModel,
- rulesThis: {},
- rules: {
- send_num: {
- required: true,
- validator: validateWeight,
- trigger: "blur",
- },
- post_name: {
- type: "array",
- required: true,
- trigger: "change",
- message: "请输入物流公司",
- },
- post_code: {
- required: true,
- validator: validateCode,
- trigger: "blur",
- },
- post_fee: {
- required: true,
- validator: validatePrice,
- trigger: "blur",
- },
- },
- supplierName: "",
- good_price: "0",
- lasttime: "",
- ruleForm: {
- post_name: [], //裸价
- post_code: "", //仓库
- post_fee: "", //供应商
- send_num: "", //采购供应商编码
- addrid: "",
- orderCode: "",
- wsm_code: "",
- },
- };
- },
- watch: {
- showModel: function (val) {
- this.showModelThis = val;
- if (val) {
- this.initForm();
- }
- },
- showModelThis(val) {
- if (!val) {
- this.$emit("cancel");
- }
- },
- },
- methods: {
- closeModel() {
- console.log("closeModel!!");
- this.showModelThis = false;
- this.$emit("closeModel");
- },
- handleSelectionChange(e, type) {
- if (type === 0) {
- this.list0 = e;
- this.ruleForm.wsm_code = e && e.length > 0 ? e[0].wsm_code : "";
- } else {
- this.list1 = e;
- this.ruleForm.addrid = e && e.length > 0 ? e[0].id : "";
- }
- },
- async initForm() {
- this.loading = true;
- this.list0 = [];
- this.list1 = [];
- this.rulesThis = this.rules;
- await this.resetForm();
- this.loading = false;
- },
- //初始化表单
- async resetForm() {
- await this.$nextTick(() => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- const { addrs, info, orderCode } = this.sitem;
- this.tableData = info;
- this.tableData1 = addrs;
- this.ruleForm = {
- post_name: [],
- post_code: "xxx2322",
- post_fee: "20",
- send_num: "10",
- addrid: "",
- orderCode: orderCode || "",
- wsm_code: "",
- };
- }
- });
- },
- // 保存更改
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- const item = JSON.parse(JSON.stringify(this.ruleForm));
- if (this.list0.length === 0) {
- this.$message.warning("请选择发货仓库!");
- return;
- }
- if (this.list1.length === 0) {
- this.$message.warning("请选择收货地址!");
- return;
- }
- if (this.list0.length !== 1) {
- this.$message.warning("只能选择一个发货仓库!");
- return;
- }
- if (this.list1.length !== 1) {
- this.$message.warning("只能选择一个收货地址!");
- return;
- }
- let cNum = parseInt(this.list0[0].wsend_num);
- let aNum = parseInt(this.list1[0].wsend_num);
- let num = parseInt(this.ruleForm.send_num);
- if (num > cNum) {
- this.$message.warning("发货数量不能大于仓库未发货数量!");
- return;
- }
- if (num > aNum) {
- this.$message.warning("发货数量不能大于收货地址未发货数量!");
- return;
- }
- this.loading = true;
- item.post_name = item.post_name.toString();
- const res = await asyncRequest.saleout(item);
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title: "添加成功",
- message: "",
- });
- this.showModelThis = false;
- this.$emit("refresh"); //抛出事件给详情页。
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- handleCompany(e) {
- console.log(e);
- if (e && e.code) {
- this.ruleForm.post_name = [e.shortName];
- }
- this.$refs.ruleForm.validateField("post_name");
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .account {
- .gongshi {
- span {
- vertical-align: top;
- display: inline-block;
- color: #000;
- }
- .icon-span {
- padding: 0 5px;
- height: 40px;
- line-height: 40px;
- font-size: 20px;
- color: #606266;
- display: inline-block;
- // vertical-align: top;
- // display: inline-block;
- }
- .label {
- height: 40px;
- line-height: 40px;
- }
- .tuan {
- &.chu {
- width: 60px;
- height: 40px;
- display: inline-block;
- span {
- width: 60px;
- display: inline-block;
- line-height: 20px;
- text-align: center;
- font-size: 12px;
- height: 20px;
- &:last-child {
- border-top: 1px solid #606266;
- }
- }
- }
- &.cheng {
- .name {
- height: 40px;
- line-height: 40px;
- }
- .icon-span {
- line-height: 40px;
- font-size: 16px;
- padding: 0 1px;
- }
- }
- }
- }
- }
- </style>
|