Parcourir la source

feat:业务报备

snow il y a 1 an
Parent
commit
eb2877985c

+ 17 - 0
src/apis/service/sellOut/businessFiling/index.js

@@ -0,0 +1,17 @@
+// 物业管理员
+import http from '@/apis/axios'
+const api = 'admin/' 
+export default {
+  cancel: (data) => http(api + 'filingCancel', data, 'post'),
+  // 线上商品详情
+  goods_detail: (data, params) => http(api + 'goodinfo', data, 'post', params),
+  // 区编码获取省市区汉字
+  addrall: (data, params) => http(api + 'addrall', data, 'post', params),
+  // 添加
+  add: (data, params) => http(api + 'salecreate', data, 'post', params),
+  // 验证售价
+  salegetprice: (data, params) => http(api + 'salegetprice', data, 'post', params),
+  list: (data, params) => http('/bbc/fill/list', data, 'post', params),
+  addrall: (data, params) => http(api + 'addrall', data, 'post', params),
+  transfer: (data) => http(api + 'filingTransfer', data, 'post')
+}

+ 239 - 0
src/views/sellOut/businessFiling/components/ShowDataTableColumns.js

@@ -0,0 +1,239 @@
+const addColumns = [
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    _slot_: 'good_name',
+    span: 24
+  },
+  // {
+  //   prop: "good_info_img",
+  //   _slot_: "good_info_img",
+  //   label: "详情图",
+  //   span: 24,
+  // },
+  {
+    prop: 'cat',
+    label: '分类',
+    _slot_: 'cat',
+    span: 24
+  },
+
+  {
+    prop: 'is_stock',
+    label: '是否库存品',
+    _slot_: 'is_stock',
+    span: 8
+  },
+
+  {
+    prop: 'unit',
+    label: '单位',
+    span: 8
+  },
+  {
+    prop: 'tax',
+    label: '税点',
+    append: '%',
+    span: 8
+  },
+
+  {
+    prop: 'exclusive',
+    label: '专属类型',
+    _slot_: 'exclusive',
+    span: 12
+  },
+  {
+    prop: 'brand_name',
+    label: '品牌',
+    span: 12
+  },
+  {
+    prop: 'weight',
+    label: '商品总克重',
+    _slot_: 'weight',
+    span: 24
+  },
+  {
+    prop: 'lead_time',
+    label: '工期',
+    span: 8
+  },
+  {
+    prop: 'delivery_day',
+    label: '物流',
+    span: 8
+  },
+  {
+    prop: 'purchase',
+    label: '采购人员',
+    span: 8
+  },
+  {
+    prop: 'delivery_place_cn',
+    label: '发货地',
+    span: 24
+  },
+  {
+    prop: 'after_sales',
+    label: '售后说明',
+    span: 24
+  }
+]
+
+const showColumns = [
+  {
+    prop: 'orderCode',
+    label: '订单编号',
+    span: 6
+  },
+  {
+    prop: 'status',
+    label: '订单状态',
+    _slot_: 'status',
+    span: 6
+  },
+  {
+    prop: 'order_source',
+    label: '订单来源',
+    _slot_: 'order_source',
+    span: 6
+  },
+  {
+    prop: 'order_type',
+    label: '商品类型',
+    _slot_: 'order_type',
+    span: 6
+  },
+
+  {
+    prop: 'supplierName',
+    label: '销售方公司',
+    _slot_: 'supplierName',
+    span: 12
+  },
+  {
+    prop: 'companyName',
+    label: '购买方公司',
+    _slot_: 'companyName',
+    span: 12
+  },
+
+  {
+    prop: 'platform_name',
+    label: '所属平台',
+    span: 12
+  },
+  {
+    prop: 'apply_name',
+    label: '创建人',
+    span: 6
+  },
+  {
+    prop: 'addtime',
+    label: '创建时间',
+    span: 6
+  },
+  {
+    prop: 'is_active',
+    label: '活动类型',
+    _slot_: 'is_active',
+    span: 12
+  },
+  {
+    prop: 'arrive_time',
+    label: '要求到货时间',
+    span: 6
+  },
+  {
+    prop: 'paytime',
+    label: '承诺付款时间',
+    span: 6
+  },
+
+  {
+    prop: 'good_num',
+    label: '购买数量',
+    span: 4
+  },
+  {
+    prop: 'send_num',
+    label: '已发数量',
+    span: 4
+  },
+  {
+    prop: 'wsend_num',
+    label: '未发数量',
+    span: 4
+  },
+  {
+    prop: 'th_num',
+    label: '退货数量',
+    span: 4
+  },
+
+  {
+    prop: 'sale_price',
+    label: '售价',
+    append: '元',
+    span: 4
+  },
+  {
+    prop: 'total_price',
+    label: '总金额',
+    append: '元',
+    span: 4
+  },
+  {
+    prop: 'returnCode',
+    label: '售后来源单号',
+    span: 6
+  },
+  {
+    prop: 'proof_id',
+    label: '凭证文件',
+    _slot_: 'proof_id',
+    span: 6
+  },
+
+  {
+    prop: 'post_fee',
+    label: '物流费用',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'send_type',
+    label: '下单方式',
+    _slot_: 'send_type',
+    span: 6
+  },
+  {
+    prop:'manager',
+    label: '业务经理',
+    span:6
+  },
+  {
+    prop: 'useage',
+    label: '订单用途',
+    span: 18
+  },
+  {
+    prop: 'remark',
+    label: '备注',
+    span: 24
+  },
+
+  {
+    prop: 'platform_order',
+    label: '平台订单号',
+    span: 24
+  },
+  {
+    prop: 'workNo',
+    label: '其他单号',
+    span: 24
+  }
+]
+
+export { addColumns, showColumns }

+ 56 - 0
src/views/sellOut/businessFiling/components/complianceForm.vue

@@ -0,0 +1,56 @@
+<template>
+  <ElForm size="mini" label-width="110px" :model="formData" :rules="rules">
+    <ElRow>
+      <ElCol :span="12">
+        <ElFormItem label="是否合规" prop="status">
+          <ElSelect style="width:100%" v-model="formData.status">
+            <ElOption label="合规" value="1" />
+            <ElOption label="不合规" value="0" />
+          </ElSelect>
+        </ElFormItem>
+      </ElCol>
+
+      <ElCol :span="12">
+        <ElFormItem label="平台商品编号" prop="platCode">
+          <ElInput v-model="formData.platCode" />
+        </ElFormItem>
+      </ElCol>
+        
+      <ElCol :span="24">
+        <ElFormItem label="备注" prop="remark">
+          <ElInput v-model="formData.remark" type="textarea" placeholder="请输入备注" />
+        </ElFormItem>
+      </ElCol>
+
+      <ElCol :span="24">
+        <ElFormItem style="display:flex;justify-content:flex-end;width:100%">
+          <ElButton type="primary">保存</ElButton>
+        </ElFormItem>
+      </ElCol>
+    </ElRow>
+  </ElForm>
+</template>
+
+<script>
+export default {
+  data(){
+    return {
+      formData:{
+        status: "1",
+        platCode: "",
+        remark:""
+      }
+    }
+  },
+  computed:{
+     rules(){
+        const { status }  = this.formData;
+        return {
+          status:[{required:true, message:"请选择是否合规", trigger: "change"}],
+          platCode:[{required:status === "1", message:"请输入平台订单号", trigger: "change"}],
+          remark:[{required:status === "0", message: "请输入备注", trigger:"change" }]
+        }
+      }
+  }
+}
+</script>

+ 888 - 0
src/views/sellOut/businessFiling/components/createBusinessForm.vue

@@ -0,0 +1,888 @@
+<template>
+  <div class="salesOrderDetail">
+    <el-row>
+      <el-col :span="24">
+        <el-form
+          ref="ruleForm"
+          :model="ruleForm"
+          status-icon
+          :size="'mini'"
+          :rules="rulesThis"
+          label-width="95px"
+          class="demo-ruleForm"
+        >
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="业务公司" prop="companyNo">
+                <search-work-company
+                  :type="'1'"
+                  :size="'mini'"
+                  :disabled="true"
+                  :isDetail="false"
+                  :placeholder="'业务公司'"
+                  :value="ruleForm.companyNo"
+                  @searchChange="supplierChange"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="企业客户" prop="customer_code">
+                <search-customer
+                  :value="ruleForm.customer_code"
+                  :size="'mini'"
+                  :names="companyName"
+                  :placeholder="'企业客户'"
+                  :disabled="false"
+                  :is-detail="true"
+                  @searchChange="customer_code_change"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="所属平台" prop="platform_id"  style="margin-bottom: 16px;">
+                <search-terrace
+                  :value="ruleForm.platform_id"
+                  :disabled="false"
+                  :size="'mini'"
+                  :is_show="'1'"
+                  :isDetail="false"
+                  :placeholder="'所属平台'"
+                  @searchChange="platform_idsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="6">
+                <el-form-item label="销售数量" prop="good_num">
+                  <digital-input
+                    :values="ruleForm.good_num"
+                    :name="'ruleForm.good_num'"
+                    :placeholder="'销售数量'"
+                    :disabled="!ruleForm.good_code"
+                    :min="0"
+                    :max="100000000000"
+                    :position="'right'"
+                    :precision="0"
+                    :size="'mini'"
+                    :controls="false"
+                    :append="''"
+                    @reschange="number_change($event, 'good_num')"
+                  />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="6">
+              <!-- ruleForm.good_price + '' === '0' -->
+                <el-form-item label="销售单价" prop="new_good_price">
+                  <digital-input
+                    :values="ruleForm.new_good_price"
+                    :placeholder="'销售数量'"
+                    :min="ruleForm.good_price || 0"
+                    :disabled="true"
+                    :position="'right'"
+                    :precision="2"
+                    :size="'mini'"
+                    :controls="false"
+                    :append="''"
+                    @reschange="number_change($event, 'new_good_price')"
+                  />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="12">
+              <el-form-item
+                :label="ruleForm.good_code === '' ? '销售商品' : ''"
+                prop="good_code"
+                :label-width="ruleForm.good_code === '' ? '95px' : '0'"
+              >
+                <el-input
+                  v-if="ruleForm.good_code === ''"
+                  v-model="ruleForm.good_code"
+                  placeholder="请选择商品"
+                  readonly
+                  maxlength="200"
+                  @focus="change_good_code"
+                />
+                <show-data-table
+                  v-else
+                  border
+                  style="margin: 0; padding: 0"
+                  :sitem="goods_sitem"
+                  :columns="ShowDataTableColumns"
+                >
+                  <template slot="good_name">
+                    <img
+                      v-viewer
+                      style="width: 23px; height: 23px; margin: 0 5px 0 0"
+                      class="fl"
+                      v-if="goods_sitem.good_thumb_img"
+                      :src="goods_sitem.good_thumb_img"
+                      alt
+                    />
+                    <span>{{ goods_sitem.good_name }}</span>
+                    <span v-for="(si, i) in goods_sitem.specinfo" :key="si.spec_id + i">
+                      <span>{{ i === 0 ? "--" : "__" }}</span>
+                      <span>{{ si.spec_name }}[{{ si.spec_value }}]</span>
+                    </span>
+                  </template>
+                  <template slot="good_info_img">
+                    <img
+                      class="fl"
+                      style="width: 23px; height: 23px; margin: 0 5px 0 0"
+                      v-viewer
+                      v-for="(si, i) in goods_sitem.good_info_img"
+                      :src="si"
+                      :key="si + i"
+                    />
+                  </template>
+                  <template slot="cat">
+                    <span v-for="(si, sii) in goods_sitem.cat_info" :key="si.id">
+                      <span v-if="sii !== 0">_</span>
+                      <span>{{ si.name }}</span>
+                    </span>
+                  </template>
+                  <template slot="exclusive">
+                    <span v-for="(si, sii) in goods_sitem.exclusive" :key="si.id">
+                      <span v-if="sii !== 0">/</span>
+                      <span>{{ si.name }}</span>
+                    </span>
+                  </template>
+                  <template slot="is_stock">
+                    <el-tag :size="'mini'">
+                      {{
+                      goods_sitem.is_stock + "" === "1" ? "是" : "否"
+                      }}
+                    </el-tag>
+                  </template>
+                  <template slot="weight">
+                    <span>
+                      商品总重:{{ goods_sitem.new_weight }}/{{
+                      goods_sitem.weight_unit
+                      }}
+                    </span>
+                    <span v-if="goods_sitem.metal_id">
+                      --{{
+                      goods_sitem.noble_weight ? goods_sitem.noble_weight : "0"
+                      }}g--{{ goods_sitem.metal_name }}---{{
+                      goods_sitem.gold_price ? goods_sitem.gold_price : "0"
+                      }}元/g--{{
+                      goods_sitem.is_gold_price + "" === "0" ? "不" : ""
+                      }}启用实时金价--{{
+                      goods_sitem.is_diff + "" === "1" ? "有" : "无"
+                      }}工差--{{ goods_sitem.config }}---{{
+                      goods_sitem.other_config }}
+                    </span>
+                  </template>
+                </show-data-table>
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="12">
+              <el-row>
+                <el-col :span="12">
+                  <el-form-item label="剩余库存">
+                    <el-input
+                      v-model="ruleForm.activity_stock"
+                      disabled
+                      maxlength="200"
+                      placeholder="剩余库存"
+                    />
+                  </el-form-item>
+                </el-col>
+                <el-col :span="12">
+                  <el-form-item label="系统最低售价" prop="good_price" label-width="110px">
+                    <el-input
+                      v-model="ruleForm.good_price"
+                      disabled
+                      maxlength="20"
+                      v-loading="priceLoding"
+                    >
+                      <template slot="append">元</template>
+                    </el-input>
+                  </el-form-item>
+                </el-col>
+              </el-row>
+            </el-col>
+
+            <el-col :span="12">
+              <el-form-item label="业务经理" prop="managerid">
+                <project-manager
+                  size="mini"
+                  :isDetail="true"
+                  :value="ruleForm.managerid"
+                  @searchChange="manageridChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <!-- <el-col :span="6">
+              <el-form-item label="到货时间" prop="arrtime">
+                <el-date-picker
+                  v-model="ruleForm.arrtime"
+                  type="date"
+                  style="width: 100%"
+                  :disabled="false"
+                  value-format="yyyy-MM-dd"
+                  :picker-options="pickerOptions"
+                  placeholder="要求到货时间"
+                ></el-date-picker>
+              </el-form-item>
+            </el-col> -->
+
+            <!-- <el-col :span="6">
+              <el-form-item label="下单方式" prop="sendtype">
+                <el-select v-model="ruleForm.sendtype" placeholder="下单方式" style="width: 100%">
+                  <el-option
+                    v-for="item in sendtype_options"
+                    :key="item.value"
+                    :label="item.label"
+                    :value="item.value"
+                  ></el-option>
+                </el-select>
+              </el-form-item> -->
+            <!-- </el-col> -->
+
+            <el-col :span="ruleForm.good_code ? 12 : 24">
+              <el-form-item label="订单备注" prop="remark">
+                <el-input
+                  type="textarea"
+                  maxlength="250"
+                  show-word-limit
+                  :rows="ruleForm.good_code ? 4 : 2"
+                  placeholder="订单备注"
+                  v-model="ruleForm.remark"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="24">
+              <search-good-online-modal
+                :once="true"
+                :sitem="addshowModel"
+                :active="true"
+                :show-model="showModel"
+                @resultList="resultList"
+                @cancel="showModel = false"
+              />
+            </el-col>
+          </el-row>
+        </el-form>
+      </el-col>
+      <el-col :span="24">
+        <in-addr-model :show-model="addrmodel" @cancel="addrmodel = false" @refresh="addrRefresh" />
+
+        <show-voucher-model
+          :showModel="showVoucher"
+          :id="goods_sitem.spuCode"
+          @cancel="showVoucher = false"
+          @searchChange="resvoucher"
+        />
+      </el-col>
+      <el-col
+        :span="24"
+        style="
+          display: flex;
+          text-align: right;
+          padding: 0 0 20px 0;
+          justify-content: flex-end;
+        "
+      >
+        <el-button :size="'mini'" type="primary" @click="submitForm">保 存</el-button>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+<script>
+import mixinPage from "@/mixins/elPaginationHandle";
+import resToken from "@/mixins/resToken";
+import asyncRequest from "@/apis/service/sellOut/businessFiling";
+import showVoucherModel from "@/components/show-voucher-model";
+import searchGoodOnlineModal from "@/components/search-good-online-modal";
+import inAddrModel from "@/components/in-addr-model";
+import { addColumns } from "./ShowDataTableColumns";
+import companyHelper from "@/mixins/companyHelper";
+import { replaceTextWrapAndSpace } from "@/utils";
+import { accMul } from "@/utils/validate";
+import { mapGetters } from "vuex";
+
+import {
+  isnumber,
+  isMobile,
+  isChinese,
+  isEmoticon,
+  isSpecialSymbol,
+  hasSpace,
+  isAddr
+} from "@/utils/validate";
+
+export default {
+  name: "salesOrderDetail",
+  mixins: [mixinPage, resToken, companyHelper],
+  props: ["newTime", "id", "sitem", "type"],
+  computed: {
+    ...mapGetters(["business_companyNo"])
+  },
+  components: {
+    inAddrModel,
+    showVoucherModel,
+    searchGoodOnlineModal
+  },
+  watch: {
+    newTime: function(val) {
+      if (val) { this.initForm(); }
+    }
+  },
+  data() {
+    return {
+        isCombindChild: true,
+      ShowDataTableColumns: addColumns,
+      AddrAddEditModalIndex: -1,
+      AddrAddEditModalSitem: {},
+      showGoodsModel: false,
+      showVoucher: false,
+      companyName: "",
+      showModel: false,
+      addrmodel: false,
+      addshowModel: {},
+      pickerOptions: {
+        disabledDate(time) {
+          return time.getTime() < Date.now() - 1000 * 60 * 60 * 24;
+        }
+      },
+      ruleForm: {
+        order_type: "1",
+        supplierNo: "", //销售方编码
+        customer_code: [], // 企业客户选择
+        platform_id: "",
+        new_good_price: "0",
+        activity_stock: "0",
+        is_activity: "0", //是否参与活动,
+        goodtype: ["is_activity_0", "1"], //活动类型
+        good_num: "0", //商品数量
+        good_price: 0, //商品单价
+        remark: "", //备注
+        good_code: "", // 商品编号
+        managerid: []
+      },
+      rulesThis: this.rules,
+      rules: {
+        managerid: [
+          {
+            required: true,
+            message: "请选择业务经理",
+            trigger: "change"
+          }
+        ],
+        companyNo: [
+          {
+            required: true,
+            message: "请选择业务公司",
+            trigger: "change"
+          }
+        ],
+        customer_code: [
+          {
+            type: "array",
+            required: true,
+            message: "请选择企业客户",
+            trigger: "change"
+          }
+        ],
+        platform_id: [
+          {
+            required: true,
+            message: "请选择所属平台",
+            trigger: "change"
+          }
+        ],
+        new_good_price: [
+          {
+            required: true,
+            message: "销售单价不能为空!",
+            trigger: "blur"
+          }
+        ],
+        good_num: [
+          {
+            required: true,
+            message: "请选择活动类型",
+            trigger: "change"
+          }
+        ],
+        good_code: [
+          {
+            required: true,
+            message: "请选择销售商品",
+            trigger: "blur"
+          }
+        ],
+        remark: [
+          {
+            required: true,
+            message: "备注不能为空",
+            trigger: "blur"
+          }
+        ]
+      },
+      addrForm: {
+        order_addr: [] //收货地址
+      },
+      delAddrList: [],
+      delStockList: [],
+      loading: false,
+      queryId: "",
+      status: "",
+      goods_sitem: {},
+      order_good_num: {
+        ogood_type: "",
+        ogood_num: "0"
+      },
+      priceLoding: false
+    };
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    manageridChange(e) {
+      console.log(e);
+      const { id, label } = e;
+      this.ruleForm.managerid = id ? [id] : [];
+      this.ruleForm.manager = label || "";
+    },
+    priceAccMul(a, b) {
+      return accMul(a, b);
+    },
+    async initForm() {
+      this.status = "";
+      this.queryId = this.$route.query.id;
+      this.rulesThis = this.rules;
+      this.resetForm();
+    },
+
+    getNewTime() {
+      this.newTime = new Date().valueOf();
+    },
+
+    async resetForm() {
+      // 重置
+      await this.$nextTick(() => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+
+          this.ruleForm = {
+            managerid: [],
+            order_type: "1",
+            companyNo: this.currentCompany || "", //销售方编码
+            customer_code: [], // 企业客户选择
+            platform_id: "",
+            new_good_price: "",
+            activity_stock: "0",
+            goodtype: ["is_activity_0", "1"], //活动类型
+            good_num: "0", //商品数量
+            good_price: 0, //系统商品单价
+            remark: "", //备注
+            good_code: "" // 商品编号
+          };
+        }
+
+        if (this.$refs.addrForm) {
+          this.$refs.addrForm.resetFields();
+          this.$refs.addrForm.clearValidate();
+          const { addrs } = this.sitem;
+          this.addrForm = {
+            order_addr: []
+          };
+          this.delAddrList = [];
+
+          if (addrs && addrs.length > 0) {
+            addrs.forEach(v => {
+              const { area_code, city_code, provice_code } = v.addr_code;
+              let model = {
+                edit: false,
+                receipt_quantity: v.receipt_quantity || "",
+                contactor: v.contactor || "",
+                mobile: v.mobile || "",
+                addr_code:
+                  area_code && city_code && provie_code
+                    ? [provice_code, city_code, area_code]
+                    : [],
+                addr: v.addr || "",
+                id: v.id,
+                is_del: 0
+              };
+              this.delAddrList.push(model);
+              this.addrForm.order_addr.push(model);
+            });
+          }
+        }
+      });
+    },
+    addrRefresh(e) {
+      const list = JSON.parse(JSON.stringify(e.list));
+      list.forEach(item => {
+        item.code = item.areaCode ? [item.areaCode] : [];
+        item.names = item.label ? [item.label] : [];
+      });
+      console.log(list);
+      this.addrForm.order_addr.push(...list);
+    },
+    async resultList(e) {
+      this.showModel = false;
+      if (e.length === 1) {
+        let ssitem = JSON.parse(JSON.stringify(e[0]));
+        const result = await this.get_goods_detail(ssitem.skuCode);
+        console.log(result,"----")
+        this.ruleForm.good_code = this.goods_sitem.skuCode;
+      } else {
+        this.goods_sitem = {};
+        this.ruleForm.good_code = "";
+      }
+      this.$refs.ruleForm.validateField("good_code");
+    },
+    async get_goods_detail(skuCode) {
+      let { code, data, message } = await asyncRequest.goods_detail({
+        skuCode: skuCode
+      });
+      if (code === 0) {
+          const { is_combind_child } = data;
+          console.log((is_combind_child === false ? '是' : '不是') + "子商品")
+          this.isCombindChild = is_combind_child === false;
+        this.goods_sitem = data;
+        this.goods_sitem.good_info_img = this.goods_sitem.good_info_img.split(
+          ","
+        );
+
+        const { weight } = this.goods_sitem;
+        let kgnum = parseInt((weight * 1) / 1000);
+        let gnum = (weight * 1) % 1000;
+        let new_weight,
+          weight_unit = "";
+        if (kgnum > 0) {
+          weight_unit = "Kg";
+          new_weight = `${kgnum}.${gnum}`;
+        } else {
+          new_weight = weight;
+          weight_unit = "g";
+        }
+
+        this.goods_sitem.new_weight = new_weight;
+        this.goods_sitem.weight_unit = weight_unit;
+        this.ruleForm.good_code = this.goods_sitem.good_code;
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.$message.warning(message);
+      }
+    },
+    showVoucherFun() {
+      if (this.goods_sitem && this.goods_sitem.spuCode) {
+        this.showVoucher = true;
+      } else {
+        this.$message.warning("请选择商品!");
+        return;
+      }
+    },
+    async addGoodsRes(e) {
+      if (e && e.length === 1) {
+        this.ruleForm.good_name = e[0].good_name;
+        this.ruleForm.good_code = e[0].type_code;
+      } else {
+        this.ruleForm.good_name = "";
+        this.ruleForm.good_code = "";
+      }
+      this.$refs.ruleForm.validateField("good_code");
+      if (this.ruleForm.good_code !== "" && this.queryId === "add") {
+      } else {
+      }
+    },
+    async number_change(e, key) {
+      this.ruleForm[key] = e + "" || "0";
+      const { good_num } = this.ruleForm;
+
+      if (Number(good_num ?? "0") !== 0) {
+        await this.get_new_price();
+      }
+
+      if (this.$refs.ruleForm) {
+        this.$refs.ruleForm.validateField(key);
+      }
+    },
+    async get_new_price() {
+      const { good_num } = this.ruleForm;
+
+      if (!this.priceLoding) {
+        const { isok, price, stock } = await this.set_salegetprice();
+        this.ruleForm.good_price = isok ? price : 0;
+        this.ruleForm.good_stock = isok ? stock : 0;
+      }
+    },
+    change_good_code() {
+      const { supplierNo, platform_id } = this.ruleForm;
+      if (supplierNo === "") {
+        this.$message.warning("请选择销售方公司!");
+        return;
+      }
+      if (platform_id === "") {
+        this.$message.warning("请选择所属平台!");
+        return;
+      }
+      this.addshowModel = {
+        company_id: supplierNo,
+        platform_code: platform_id
+      };
+      this.showModel = true;
+    },
+    customer_code_change(e) {
+      if (e && e.code) {
+        this.ruleForm.customer_code = [e.code];
+      } else {
+        this.ruleForm.customer_code = [];
+      }
+      this.$refs.ruleForm.validateField("customer_code");
+    },
+    supplierChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.companyNo = code || "";
+      this.$refs.ruleForm.validateField("supplierNo");
+      this.ruleForm.proof_id = "";
+      this.ruleForm.proof_url = "";
+      this.ruleForm.proof_type = "";
+      this.$refs.ruleForm.validateField("proof_id");
+      this.ruleForm.good_code = "";
+      this.goods_sitem = {};
+    },
+    platform_idsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.platform_id = id || "";
+      this.$refs.ruleForm.validateField("platform_id");
+      this.ruleForm.good_code = "";
+      this.goods_sitem = {};
+    },
+    openHouseModal(index) {
+      let findex = this.addrForm.order_addr.findIndex(v => v.edit === true);
+      if (findex !== -1) {
+        this.$message.warning("当前已有地址在编辑,请保存后再试!");
+        return;
+      } else {
+        if (index === -1) {
+          this.addrForm.order_addr.push({
+            edit: true,
+            receipt_quantity: "",
+            contactor: "",
+            mobile: "",
+            addr_code: [],
+            addr: ""
+          });
+        } else {
+          this.addrForm.order_addr[index].edit = true;
+        }
+      }
+    },
+    //省市区选择
+    select_area_change(e, index) {
+      this.addrForm.order_addr[index].addr_code = e;
+    },
+    areaChange(e, index) {
+      const { code, area_code, label } = e;
+      this.addrForm.order_addr[index].names = label ? [label] : [];
+      this.addrForm.order_addr[index].code = area_code ? [area_code] : [];
+      this.addrForm.order_addr[index].addr_code = code ? code.split(",") : [];
+    },
+    //省市区保存某一行
+    async checkRow(rowIndex) {
+      await this.$refs.addrForm.validate(async valid => {
+        if (valid) {
+          const { addr_code } = this.addrForm.order_addr[rowIndex];
+          if (addr_code && addr_code.length === 3) {
+            let arrCode = addr_code[addr_code.length - 1];
+            let { code, data, message } = await asyncRequest.addrall({ code: arrCode });
+            if (code === 0) {
+              const { province, city, area } = data;
+              let province_name =  province && province.name ? province.name : "";
+              let city_name = city && city.name ? city.name : "";
+              let area_name = area && area.name ? area.name : "";
+              this.addrForm.order_addr[rowIndex].addr_code_name =
+                province_name && city_name && area_name
+                  ? `${province_name}/${city_name}/${area_name}`
+                  : "";
+            } else if (code >= 100 && code <= 104) {
+              await this.logout();
+            } else {
+              this.$message.warning(message);
+            }
+          } else {
+            this.addrForm.order_addr[rowIndex].addr_code_name = "";
+          }
+          this.addrForm.order_addr[rowIndex].edit = false;
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    // 删除收货地址操作
+    deleteRow(index, rows) {
+      rows.splice(index, 1);
+    },
+    async submitForm() {
+        if(this.ruleForm.good_code && this.isCombindChild){
+          this.$confirm("当前商品为其他组合商品的子商品,请留意",{
+              title:'提示',
+              type:'warning',
+              confirmButtonText:"我已知晓!",
+              cancelButtonText:"取消"
+          }).then(() => {
+              this.isCombindChild = false
+          })
+          return
+        }
+
+
+      await this.$refs.ruleForm.validate(async valid => {
+        if (valid) {
+          if (this.loading) {
+            return;
+          }
+          this.loading = true;
+          const { sendtype, good_num, goodtype } = JSON.parse(
+            JSON.stringify(this.ruleForm)
+          );
+          const { order_addr } = JSON.parse(JSON.stringify(this.addrForm));
+
+          let key_0 = goodtype[0];
+          let key_1 = goodtype[1];
+          if (order_addr.length === 0 && sendtype === "1") {
+            this.$message.warning("至少填写一条地址信息!");
+            this.loading = false;
+            return;
+          }
+          let model = JSON.parse(JSON.stringify(this.ruleForm));
+          model.addrlist = [];
+          model.customer_code = model.customer_code.toString();
+          const { good_price, new_good_price } = model;
+          let a = accMul(good_price, "1"),
+            b = accMul(new_good_price, "1");
+          if (a !== b) {
+            model.good_price = model.new_good_price;
+          }
+          // if (model.new_good_price == model.good_price) {
+          // model.good_price = model.new_good_price;
+          // }
+          delete model["proof_type"];
+          delete model["proof_url"];
+          delete model["new_good_price"];
+          if (sendtype === "1") {
+            let addrT = 0,
+              isAEdit = false;
+
+            order_addr.forEach(v2 => {
+              if (v2.edit) {
+                isAEdit = true;
+              }
+              addrT += parseInt(v2.receipt_quantity);
+              let model2 = {
+                contactor: v2.contactor,
+                mobile: v2.mobile,
+                addr: v2.addr,
+                receipt_quantity: v2.receipt_quantity,
+                addr_code: v2.addr_code
+              };
+              model.addrlist.push(model2);
+            });
+
+            if (isAEdit) {
+              this.$message.warning("请保存地址信息!");
+              this.loading = false;
+              return;
+            }
+            if (good_num * 1 !== addrT) {
+              this.$message.warning("地址收货总数与销售总数量不一致!");
+              this.loading = false;
+              return;
+            }
+          }
+          let priceres = await this.set_salegetprice();
+          if (!priceres.isok) {
+            this.loading = false;
+            return;
+          }
+          model.is_activity = key_0 === "is_activity_0" ? "0" : "1";
+          model.goodtype = key_0 === "is_activity_1" ? "1" : key_1;
+          model.act_code = key_0 === "is_activity_1" ? key_1 : "";
+
+          Object.keys(model).forEach(key => {
+            if (typeof model[key] === "string") {
+              model[key] = replaceTextWrapAndSpace(model[key]);
+            }
+          });
+
+          let res = await asyncRequest.add({
+            ...model,
+            managerid: Array.isArray(model.managerid) ? model.managerid[0] : model.managerid
+          });
+
+          this.loading = false;
+          if (res && res.code === 0) {
+            this.$notify.success({
+              title: "订单创建成功!",
+              message: ""
+            });
+
+            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;
+        }
+      });
+    },
+
+    async set_salegetprice() {
+      this.priceLoding = true;
+      let resModel = { isok: true, price: "0" };
+
+      const { good_num, good_code, goodtype } = this.ruleForm;
+      let key_1 = goodtype[1];
+      let key_0 = goodtype[0];
+      let model = {
+        skuCode: good_code,
+        sale_num: good_num,
+        is_activity: key_0 === "is_activity_0" ? "0" : "1",
+        act_code: key_0 === "is_activity_1" ? key_1 : ""
+      };
+      let { code, message, data } = await asyncRequest.salegetprice(model);
+      console.log(code, message, data);
+      if (code === 0) {
+        const { sale_price } = data;
+        resModel.price = sale_price + "";
+
+        let oldGood_type = goodtype.length === 2 ? goodtype[1] : "";
+
+        if (
+          key_0 === "is_activity_0" &&
+          (oldGood_type == 2 || oldGood_type == 3)
+        ) {
+          resModel.price = 0 + "";
+        }
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.$message.warning(message);
+        resModel.isok = false;
+      }
+      this.priceLoding = false;
+      return resModel;
+    }
+  }
+};
+</script>
+<style lang="scss" scoped>
+.salesOrderDetail {
+}
+</style>

+ 369 - 0
src/views/sellOut/businessFiling/components/waitTransferred.vue

@@ -0,0 +1,369 @@
+<template>
+  <div>
+    <div style="display:flex;margin-bottom: 10px">
+      <div style="width:100%;display: flex;margin-right:10px">
+        <p style="width:80px">
+          <span style="color:red">*</span>&nbsp;客户公司
+        </p>
+        <search-customer
+          :value="ruleForm.companyCode"
+          :names="ruleForm.companyName"
+          :placeholder="'客户公司'"
+          :size="'mini'"
+          @searchChange="customerChange"
+        />
+      </div>
+
+      <div style="width: 100%; display: flex">
+        <p style="width:90px"><span style="color:red">*</span>&nbsp;平台订单号</p>
+        <el-input size="mini" v-model="ruleForm.platCode" placeholder="平台订单号" />
+      </div>
+    </div>
+
+    <el-form ref="formRef" :model="editCacheData" :rules="rules">
+      <el-table border size="mini" :data="list" max-height="300px">
+        <el-table-column label="收货总数" prop="receipt_quantity">
+          <template slot-scope="scope">
+            <el-form-item v-if="scope.$index === editIndex" prop="receipt_quantity">
+              <el-input v-model="editCacheData.receipt_quantity" size="mini" placeholder="收货总数" />
+            </el-form-item>
+            <span v-else>{{ scope.row.receipt_quantity }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="收货联系人">
+          <template slot-scope="scope">
+            <el-form-item v-if="scope.$index === editIndex" prop="contactor">
+              <el-input v-model="editCacheData.contactor" size="mini" placeholder="收货联系人" />
+            </el-form-item>
+            <span v-else>{{ scope.row.contactor }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="收货联系电话" prop="mobile">
+          <template slot-scope="scope">
+            <el-form-item v-if="scope.$index === editIndex" prop="mobile">
+              <el-input
+                size="mini"
+                maxlength="11"
+                placeholder="收货联系电话"
+                v-model="editCacheData.mobile"
+              />
+            </el-form-item>
+            <span v-else>
+              {{ scope.row.mobile }}
+            </span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="收货省市区" prop="addr_code">
+          <template slot-scope="scope">
+            <el-form-item v-if="scope.$index === editIndex" prop="addr_code">
+              <search-area
+                :value="editCacheData.area_code"
+                :is-detail="scope.$index === editIndex"
+                :disabled="!scope.$index === editIndex"
+                size="mini"
+                :names="[getAddrName(scope.row.addr_code_name)]"
+                placeholder="收货省市区"
+                :level="3"
+                @searchChange="areaChange($event,scope.$index)"
+              />
+            </el-form-item>
+            <span v-else>{{getAddrName(scope.row.addr_code_name, true)}}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="详细地址" prop="addr">
+          <template slot-scope="scope">
+            <el-form-item v-if="scope.$index === editIndex" prop="addr">
+              <el-input v-model="editCacheData.addr" size="mini" placeholder="详细地址" />
+            </el-form-item>
+            <span v-else>{{ scope.row.addr }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column width="90px">
+          <template #header>
+            <el-tooltip placement="top" content="下载收货模板">
+              <el-button size="mini" type="text" icon="el-icon-download" @click="downloadTemplate" />
+            </el-tooltip>
+
+            <el-tooltip placement="top" content="导入收货地址">
+              <el-button size="mini" type="text" icon="el-icon-upload2" @click="handleShowModal" />
+            </el-tooltip>
+
+            <el-tooltip placement="top" content="手动填写地址">
+              <el-button
+                size="mini"
+                type="text"
+                icon="el-icon-circle-plus-outline"
+                @click="handlePushAddress"
+              />
+            </el-tooltip>
+          </template>
+
+          <template slot-scope="scope">
+            <el-button
+              v-if="Number(editIndex) === Number(scope.$index)"
+              size="mini"
+              type="text"
+              icon="el-icon-circle-check"
+              @click="handleSave()"
+            />
+            <el-button
+              v-else
+              size="mini"
+              type="text"
+              icon="el-icon-edit"
+              @click="handleSetEdit(scope.$index)"
+            />
+            <el-button
+              size="mini"
+              type="text"
+              icon="el-icon-delete"
+              @click="handleDelete(scope.$index)"
+            />
+          </template>
+        </el-table-column>
+      </el-table>
+
+      <el-form-item>
+        <div style="width:100%;display:flex;justify-content:flex-end;margin-top:10px">
+          <el-button type="primary" size="mini" @click="handleSubmit">保存</el-button>
+        </div>
+      </el-form-item>
+    </el-form>
+
+    <in-address-modal :show-model.sync="showModal" :loading="false" @refresh="handleRefresh" />
+  </div>
+</template>
+
+<script>
+import InAddressModal from "@/components/in-address-modal";
+import asyncRequest from "@/apis/service/sellOut/businessFiling";
+import { addressRules } from "./../config/rules";
+import { utils, writeFile } from "xlsx";
+
+const defaultAddressData = {
+  receipt_quantity: "",
+  addr_code_name: "",
+  area_label: "",
+  area_code: "",
+  contactor: "",
+  addr_code: "",
+  mobile: "",
+  addr: ""
+};
+
+export default {
+  components: { InAddressModal },
+  props: ["id", "num"],
+  data() {
+    return {
+      ruleForm: {
+        companyName: "",
+        companyCode: "",
+        platCode: ""
+      },
+      list: [],
+      editIndex: -1,
+      loading: false,
+      showModal: false,
+      rules: addressRules,
+      editCacheData: { ...defaultAddressData },
+      companyName: ""
+    };
+  },
+  methods: {
+    handleShowModal() {
+      this.showModal = true;
+    },
+
+    handleSetEdit(index) {
+      if (this.editIndex >= 0) {
+        this.$message.warning("当前已有地址在编辑,请保存后再试!");
+        return;
+      }
+      this.editIndex = index;
+
+      const {
+        contactor,
+        receipt_quantity,
+        mobile,
+        addr_code,
+        addr,
+        addr_code_name,
+        area_code,
+        area_label
+      } = this.list[index];
+
+      this.editCacheData = {
+        receipt_quantity,
+        addr_code_name,
+        area_label,
+        area_code,
+        addr_code,
+        contactor,
+        mobile,
+        addr
+      };
+    },
+
+    downloadTemplate() {
+      const data = Array(20).fill(0).map(() => ({
+          收货总数: "1",
+          收货联系人: "张三",
+          收货联系电话: "17878787878",
+          收货省名称: "北京市",
+          收货市名称: "北京市",
+          收货区名称: "东城区",
+          详细地址: "xxx街道xxx号"
+        }));
+
+      const workBook = utils.book_new();
+      const workSheet = utils.json_to_sheet(data);
+      utils.book_append_sheet(workBook, workSheet, "sheet");
+
+      // 导出模板
+      writeFile(workBook,  "收货模板.xlsx",  { 
+        bookType: "xlsx"
+      });
+    },
+    handleDelete(index) {
+      this.list.splice(index, 1);
+      if (this.editIndex >= 0) this.editIndex = -1;
+    },
+    getAddrName(name, modifider) {
+      if (modifider) return name;
+      const _n = name.split("/").join("");
+      return _n;
+    },
+
+    handleSave() {
+      this.$refs.formRef.validate(async isValid => {
+        if (!isValid) return;
+
+        const { addr_code } = this.editCacheData;
+        const { data, code } = await asyncRequest.addrall({ code: addr_code[addr_code.length - 1] });
+
+        if (Number(code) === 0) {
+          this.editCacheData.addr_code_name =
+            data.province.name + "/" + data.city.name + "/" + data.area.name;
+        }
+
+        this.$set(this.list, this.editIndex, this.editCacheData);
+        this.editCacheData = { ...defaultAddressData };
+        this.editIndex = -1;
+      });
+    },
+
+    customerChange(evt) {
+      const { code, label } = evt;
+
+      this.ruleForm = {
+        companyCode: code ? [code] : "",
+        companyName: label ? [label] : ""
+      };
+    },
+
+    handleRefresh(data) {
+      const _data = data.list.map(
+        ({
+          addr,
+          addr_code,
+          contactor,
+          mobile,
+          receipt_quantity,
+          addr_code_name
+        }) => ({
+          addr,
+          addr_code,
+          contactor,
+          mobile,
+          receipt_quantity,
+          addr_code_name,
+          area_code: [addr_code[addr_code.length - 1]]
+        })
+      );
+
+      this.list = [...this.list, ..._data];
+      this.showModal = false;
+    },
+
+    handlePushAddress() {
+      if (this.editIndex >= 0) {
+        this.$message.warning("当前已有地址在编辑,请保存后再试!");
+        return;
+      }
+
+      this.list.push({ ...defaultAddressData });
+      this.editIndex = this.list.length - 1;
+    },
+
+    async areaChange(e) {
+      const { code, area_code, splitLabel } = e;
+      this.editCacheData.area_label = splitLabel
+        ? splitLabel.split(",").join("/")
+        : "";
+
+      this.editCacheData["area_code"] = area_code ? [area_code] : [];
+      this.editCacheData["addr_code"] = code ? code.split(",") : [];
+    },
+
+    handleInAddrChange(e) {
+      this.editCacheData["addr_code"] = e;
+    },
+
+    async handleSubmit() {
+      if (!this.ruleForm.companyCode) {
+        this.$message.warning("请选择客户公司");
+        return;
+      }
+
+      if(!this.ruleForm.platCode){
+        this.$message.warning("平台订单号不能为空");
+        return
+      }
+
+      if (this.editIndex !== -1) {
+        this.$message.warning("当前已有地址在编辑,请保存后再试!");
+        return;
+      }
+
+      if (this.list.length === 0) {
+        this.$message.warning("至少填写一条记录!");
+        return;
+      }
+
+      const currentNum = this.list.reduce((current, prev) => {
+        return Number(current) + Number(prev.receipt_quantity);
+      }, 0);
+
+      if (currentNum > Number(this.num)) {
+        this.$message.warning(
+          `未转单数量为${this.num},收货数量总和不能超过未转单数量!`
+        );
+        return;
+      }
+
+      const { code, message } = await asyncRequest.transfer({
+        id: this.id,
+        addr_list: this.list,
+
+        customerCode: Array.isArray(this.ruleForm.companyCode)
+          ? this.ruleForm.companyCode[0]
+          : this.ruleForm.companyCode
+      });
+
+      if (Number(code) === 0) {
+        this.list = [];
+        this.ruleForm.companyCode = "";
+        this.$emit("refresh");
+      } else {
+        this.$message.error(message);
+      }
+    }
+  }
+};
+</script>

+ 1176 - 0
src/views/sellOut/businessFiling/config/columns.js

@@ -0,0 +1,1176 @@
+const columns = [
+  {
+    prop: 'fillCode',
+    label: '报备单编号',
+    width: '155px'
+  },
+  {
+    prop: 'catinfo',
+    label: '商品分类',
+    width: '158px'
+  },
+  {
+    prop: "good_name",
+    label:"商品名称"
+  },
+  {
+    prop:  "is_compliance",
+    _slot_: "is_compliance"
+  },
+  {
+    label: "todo",
+    prop: "销售数量",
+  },
+  {
+    prop: "todo",
+    label: '商品主图',
+  },
+  {
+    prop: "origin_price",
+    label: '采购价'
+  },
+  {
+    prop: "good_price",
+    label: '销售价'
+  },
+  {
+    prop: 'todo',
+    label: '总服务费',
+  },
+  {
+    prop: 'companyNo',
+    label: '企业客户',
+    _slot_: "company"
+  },
+  {
+    prop: 'status',
+    label: '状态',
+    width: '125px',
+    _slot_: 'status'
+  },
+  {
+    prop: 'todo',
+    label: '平台商品编号',
+    'min-width': '145px'
+  },
+  {
+    prop: 'todo',
+    label: '所属平台',
+    width: '110px'
+  },
+  {
+    prop: 'addtime',
+    label: '创建时间',
+    width: '145px'
+  },
+  {
+    prop: '',
+    label: '操作',
+    fixed: 'right',
+    _noset_: true,
+    width: '110px',
+    _slot_: 'operation'
+  }
+]
+
+export const is_determine_price_options = [
+  { id: '0', label: '否' },
+  { id: '1', label: '是' }
+]
+
+export const options13 = [
+  { id: '0', name: '现结' },
+  { id: '1', name: '月清' },
+  { id: '2', name: '双月清' }
+]
+
+const statusOptions = [
+  { value: '0', label: '待审核是否合规' },
+  { value: '1', label: '审核不合规' },
+  { value: '2', label: '已合规待转单' },
+  { value: '3', label: '已部分转单' },
+  { value: '4', label: '已全部转单' },
+  { value: '5', label: '已取消转单' }
+]
+
+export const editColumns = [
+  {
+    prop: 'filingCode',
+    label: '报备单编号',
+    span: 6
+  },
+  {
+    prop: 'status',
+    label: '状态',
+    _slot_: 'status',
+    span: 6
+  },
+  {
+    prop: 'apply_name',
+    label: '申请人',
+    span: 6
+  },
+  {
+    prop: 'addtime',
+    label: '申请时间',
+    span: 6
+  },
+  {
+    prop: 'supplierName',
+    label: '供应商名称',
+    _slot_: 'supplierName',
+    span: 12
+  },
+  {
+    prop: 'customerName',
+    label: '业务公司名称',
+    _slot_: 'customerName',
+    span: 12
+  },
+  {
+    prop: 'companyName',
+    label: '客户名称',
+    _slot_: 'companyName',
+    span: 12
+  },
+  {
+    prop: 'num',
+    label: '销售数量',
+    span: 6
+  },
+
+  {
+    prop: 'is_determine_price',
+    label: '是否确认售价',
+    _slot_: 'is_determine_price',
+    span: 6
+  },
+
+  {
+    prop: 'cgd_charge',
+    label: '采购单价',
+    span: 6
+  },
+  {
+    prop: 'price',
+    label: '销售单价',
+    span: 6
+  },
+  {
+    prop: 'expect_service',
+    label: '期望服务费',
+    span: 6
+  },
+  {
+    prop: 'expect_service_proportion',
+    label: '期望服务费比例',
+    span: 6,
+    _slot_: 'expect_service_proportion'
+  },
+  {
+    prop: 'service_charge',
+    label: '最终服务费',
+    span: 6
+  },
+  {
+    prop: 'service_proportion',
+    label: '最终服务费比例',
+    _slot_: 'service_proportion',
+    span: 6
+  },
+  {
+    prop: 'transfer_num',
+    label: '已转单数量',
+    span: 6
+  },
+  {
+    prop: 'wait_num',
+    label: '未转单数量',
+    span: 6
+  },
+  {
+    prop: 'plat_code',
+    label: '平台商品编号',
+    span: 6
+  },
+  {
+    prop: 'manager',
+    label: '业务经理',
+    span: 6
+  },
+  {
+    prop: 'platform_name',
+    label: '所属平台',
+    span: 12
+  },
+  {
+    prop: '',
+    _slot_: 'annex',
+    label: '附件',
+    span: 6
+  },
+  {
+    prop: 'plat_orderCode',
+    label: '供应商订单号',
+    span: 6
+  },
+  {
+    prop: 'orderCode',
+    label: '订单编号',
+    span: 12
+  }
+]
+
+// 采返 采购商品字段
+export const coveColumns = [
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    _slot_: 'good_name',
+    span: 24
+  },
+
+  {
+    prop: 'cat',
+    label: '分类',
+    span: 8
+  },
+
+  {
+    prop: 'brand_name',
+    label: '品牌',
+    span: 8,
+    _slot_: 'brand_name'
+  },
+  {
+    prop: 'send_way',
+    label: '发货方式',
+    _slot_: 'send_way',
+    span: 8
+  },
+  {
+    prop: 'unit_name',
+    label: '单位',
+    span: 6
+  },
+  {
+    prop: 'tax',
+    label: '税点',
+    append: '%',
+    span: 6
+  },
+  {
+    prop: 'pay_way',
+    label: '付款方式',
+    _slot_: 'pay_way',
+    span: 6
+  },
+
+  {
+    prop: 'weight',
+    label: '商品总克重',
+    append: 'g',
+    span: 6
+  },
+  {
+    prop: 'preservation_day',
+    label: '有效期',
+    append: '天',
+    span: 6
+  },
+
+  {
+    prop: 'delivery_day',
+    label: '物流时间',
+    append: '天',
+    span: 6
+  },
+  {
+    prop: 'make_day',
+    label: '生产工期',
+    append: '天',
+    span: 6
+  },
+
+  {
+    prop: 'supply_area',
+    label: '供货区域',
+    _slot_: 'supply_area',
+    span: 6
+  },
+
+  {
+    prop: 'good_img',
+    label: '商品图片',
+    _slot_: 'good_img',
+    span: 24
+  },
+  // {
+  //   prop: "noble",
+  //   _slot_: "noble",
+  //   label: "贵金属信息",
+  //   span: 24,
+  // },
+  {
+    prop: 'cost_desc',
+    label: '工艺说明',
+    span: 24
+  },
+  {
+    prop: 'remark',
+    label: '采返备注',
+    span: 24
+  }
+]
+
+export const costArr = [
+  {
+    prop: 'cert_fee',
+    label: '成本证书费',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'pakge_fee',
+    label: '成本包装费',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'cost_fee',
+    label: '成本工艺费',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'mark_fee',
+    label: '成本加标费',
+    append: '元',
+    span: 6
+  },
+
+  {
+    prop: 'demo_fee',
+    label: '成本打样费',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'open_fee',
+    label: '成本开模费',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'delivery_fee',
+    label: '成本物流费',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'nake_fee',
+    label: '成本裸价',
+    append: '元',
+    span: 6
+  },
+  {
+    prop: 'total_fee',
+    label: '采购成本合计',
+    append: '元',
+    span: 24
+  }
+]
+
+export const bargainingArr = [
+  {
+    prop: 'before_rate',
+    label: '议价前毛利率',
+    append: '%',
+    span: 12
+  },
+
+  {
+    prop: 'after_rate',
+    label: '议价后毛利率',
+    append: '%',
+    span: 12
+  }
+]
+
+const showColumns = [
+  {
+    prop: 'cgdNo',
+    label: '销售订单编号',
+    span: 6
+  },
+  {
+    prop: 'status',
+    label: '销售订单状态',
+    _slot_: 'status',
+    span: 6
+  },
+  {
+    prop: 'order_type',
+    label: '销售订单来源',
+    _slot_: 'order_type',
+    span: 6
+  },
+  {
+    prop: 'lasttime',
+    label: '要求入库时间',
+    span: 6
+  },
+
+  {
+    prop: 'supplier_name',
+    label: '销售方公司',
+    _slot_: 'supplier_name'
+  },
+  {
+    prop: 'company',
+    label: '购买方公司',
+    _slot_: 'company'
+  },
+
+  // {
+  //   prop: "wsm",
+  //   label: "仓库信息",
+  //   _slot_: "wsm",
+  // },
+
+  {
+    prop: 'total_fee',
+    label: '采购总成本',
+    span: 8
+  },
+  {
+    prop: 'good_price',
+    label: '销售订单价',
+    span: 8
+  },
+  {
+    prop: 'good_num',
+    label: '采购总数量',
+    span: 8
+  },
+  {
+    prop: 'send_num',
+    label: '已发货数量',
+    span: 8
+  },
+  {
+    prop: 'wsend_num',
+    label: '未发货数量',
+    span: 8
+  },
+  {
+    prop: 'addtime',
+    label: '创建时间',
+    span: 8
+  },
+  {
+    prop: 'addr_info',
+    label: '收货信息',
+    _slot_: 'addr_info',
+    span: 24
+  }
+]
+
+import { isSpecialSymbol, hasSpace } from '@/utils/validate'
+
+// 是否定制
+const options1 = [
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
+]
+// 专属类型
+const options2 = [
+  { id: '0', name: '非泰康' },
+  { id: '1', name: '泰康' }
+]
+// 销售权限
+const options3 = [
+  { id: '0', name: '无销售权限' },
+  { id: '1', name: '有销售权限' }
+]
+
+// 是否库存品
+const options4 = [
+  { id: '0', name: '系统商品' },
+  { id: '1', name: '库存品' }
+]
+// 是否启用实时金价
+const options5 = [
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
+]
+// 供货区域
+const options6 = [
+  { id: '1', name: '全国' },
+  { id: '2', name: '全国除偏远' }
+]
+// 是否启用阶梯
+const options7 = [
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
+]
+
+// 有无工差
+const options8 = [
+  { id: '0', name: '无工差' },
+  { id: '1', name: '有工差' }
+]
+// 配置要求
+const options9 = ['证书', '包装盒', '绒布袋', '标签', '其他']
+
+// 付款方式
+const options10 = [
+  { id: '0', name: '现结' },
+  { id: '1', name: '月清' },
+  { id: '2', name: '双月清' }
+]
+// 发货方式
+const options11 = [
+  { id: '0', name: '公司自提' },
+  { id: '1', name: '供应商包邮' }
+]
+
+const statusList = [
+  {
+    code: '0',
+    name: '新建待审核',
+    type: ''
+  },
+  {
+    code: '1',
+    name: '审核通过',
+    type: 'success'
+  },
+  {
+    code: '2',
+    name: '基础修改待审核',
+    type: ''
+  },
+  {
+    code: '3',
+    name: '成本修改待审核',
+    type: ''
+  },
+  {
+    code: '4',
+    name: '基础修改驳回',
+    type: 'danger'
+  },
+  {
+    code: '5',
+    name: '成本修改驳回',
+    type: 'danger'
+  },
+  {
+    code: '6',
+    name: '新建审核驳回',
+    type: 'danger'
+  },
+  {
+    code: '7',
+    name: '复制商品待编辑',
+    type: 'info'
+  },
+  {
+    code: '8',
+    name: '竞价商品待编辑',
+    type: 'info'
+  }
+]
+const listCol = [
+  { type: 'selection', fixed: 'left', _noset_: true },
+  {
+    prop: 'spuCode',
+    label: '编号',
+    width: '160px'
+  },
+  {
+    prop: 'status',
+    label: '状态',
+    _slot_: 'status',
+    width: '118px'
+  },
+  {
+    prop: 'good_thumb_img',
+    label: '图片',
+    _slot_: 'good_thumb_img',
+    width: '45px'
+  },
+  {
+    prop: 'good_name',
+    label: '名称',
+    'min-width': '160px'
+  },
+  {
+    prop: 'cat_name',
+    label: '分类'
+  },
+  {
+    prop: 'brand_name',
+    label: '品牌'
+  },
+  {
+    prop: 'isonline',
+    label: '是否上线',
+    _slot_: 'isonline',
+    width: '70px'
+  },
+  {
+    prop: 'supplierNo',
+    label: '供应商编号',
+    width: '110px'
+  },
+  {
+    prop: 'supplier_name',
+    label: '供应商名称',
+    width: '110px'
+  },
+  {
+    prop: 'companyNo',
+    label: '业务公司编号',
+    width: '110px'
+  },
+  {
+    prop: 'company',
+    label: '业务公司名称',
+    width: '110px'
+  },
+  // {
+  //   prop: "company_name",
+  //   label: "创建人部门",
+  //   minWidth: "150px",
+  // },
+  {
+    prop: 'creater',
+    label: '创建人',
+    width: '70px'
+  },
+
+  {
+    prop: 'addtime',
+    label: '创建时间',
+    width: '140px'
+  },
+  {
+    prop: '',
+    label: '操作',
+    fixed: 'right',
+    _noset_: true,
+    width: '200px',
+    _slot_: 'operation'
+  }
+]
+const validate_num = (rule, value, callback) => {
+  const { required } = rule
+  if (required && value === '') {
+    callback(new Error('不能为空!'))
+  } else {
+    callback()
+  }
+}
+const validate_num_0 = (rule, value, callback) => {
+  const { required } = rule
+  if (required && value === '') {
+    callback(new Error('不能为空!'))
+  } else if (
+    required &&
+    (value === '0' ||
+      value === '0.' ||
+      value === '0.0' ||
+      value === '0.00' ||
+      value === '0.000')
+  ) {
+    callback(new Error('不能为零!'))
+  } else {
+    callback()
+  }
+}
+const validate_good_img = (rule, value, callback) => {
+  const { required } = rule
+  if (required && value.length == 0) {
+    callback(new Error('请上传商品主图!'))
+  } else if (required && (value.length < 3 || value.length > 10)) {
+    callback(new Error('商品主图应为3~10张!'))
+  } else {
+    callback()
+  }
+}
+const validate_desc = (rule, value, callback) => {
+  const { required } = rule
+  if (required && value.length == 0) {
+    callback(new Error('不能为空!'))
+  } else if (isSpecialSymbol(value)) {
+    callback(new Error('不能使用英文特殊字符!'))
+  } else {
+    callback()
+  }
+}
+const validate_good_name = (rule, value, callback) => {
+  const { required } = rule
+  if (required && value.length == 0) {
+    callback(new Error('不能为空!'))
+  } else if (hasSpace(value)) {
+    callback(new Error('系统不允许输入转义字符,请检查后重新输入!'))
+  } else if (isSpecialSymbol(value)) {
+    callback(new Error('不能使用英文特殊字符!'))
+  } else {
+    callback()
+  }
+}
+const rules = {
+  // plat_orderCode: [
+  //   {
+  //     required:true,
+  //     message:'请输入供应商订单号',
+  //     trigger:'blur'
+  //   }
+  // ],
+  fill_url: [
+    {
+      required: true,
+      message: '请选择附件',
+      trigger: 'blur'
+    }
+  ],
+  companyName: [
+    {
+      required: true,
+      message: '客户名称不能为空',
+      trigger: 'blur'
+    }
+  ],
+  customerCode: [
+    {
+      required: true,
+      message: '业务公司不能为空',
+      trigger: 'blur'
+    }
+  ],
+
+  is_determine_price: [
+    {
+      required: true,
+      message: '请选择是否确定售价',
+      trigger: 'blur'
+    }
+  ],
+  expect_service_proportion: [
+    {
+      required: true,
+      message: '期望服务费比例不能为空',
+      trigger: 'blur'
+    }
+  ],
+  expect_service: [
+    {
+      required: true,
+      message: '预期服务费不能为空',
+      trigger: 'blur'
+    }
+  ],
+  num: [
+    {
+      required: true,
+      message: '销售数量不能为空',
+      trigger: 'blur'
+    }
+  ],
+  cat_id: [
+    {
+      type: 'array',
+      required: true,
+      message: '商品分类',
+      trigger: 'change'
+    }
+  ],
+  preservation_day: [
+    {
+      required: true,
+      validator: validate_num_0,
+      trigger: 'blur'
+    }
+  ],
+
+  supplierNo: [
+    {
+      type: 'array',
+      required: true,
+      message: '请选择供应商',
+      trigger: 'change'
+    }
+  ],
+  delivery_day: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+
+  pname: [
+    {
+      required: true,
+      validator: validate_good_name,
+      trigger: 'blur'
+    }
+  ],
+  make_day: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  model: [
+    {
+      required: true,
+      message: '型号不能为空',
+      trigger: 'blur'
+    }
+  ],
+
+  color: [
+    {
+      required: true,
+      message: '颜色不能为空',
+      trigger: 'blur'
+    }
+  ],
+  material: [
+    {
+      required: true,
+      message: '材质不能为空',
+      trigger: 'blur'
+    }
+  ],
+
+  brand_id: [
+    {
+      type: 'array',
+      required: true,
+      message: '商品品牌',
+      trigger: 'change'
+    }
+  ],
+  unit_id: [
+    {
+      type: 'array',
+      required: true,
+      message: '请输入商品单位',
+      trigger: 'blur'
+    }
+  ],
+  weight: [
+    {
+      required: true,
+      validator: validate_num_0,
+      trigger: 'blur'
+    }
+  ],
+  tax: [
+    {
+      required: true,
+      message: '请选择税率',
+      trigger: 'change'
+    }
+  ],
+  supply_area: [
+    {
+      required: true,
+      message: '请选择供货区域',
+      trigger: 'change'
+    }
+  ],
+  origin_place: [
+    {
+      type: 'array',
+      required: true,
+      message: '请选择产地',
+      trigger: 'change'
+    }
+  ],
+
+  delivery_place: [
+    {
+      type: 'array',
+      required: true,
+      message: '请选择发货地',
+      trigger: 'change'
+    }
+  ],
+  // 固定成本
+  cert_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  pakge_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  cost_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+
+  mark_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  demo_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+
+  open_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  delivery_fee: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  price: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  cgd_charge: [
+    {
+      required: true,
+      validator: validate_num,
+      trigger: 'blur'
+    }
+  ],
+  gold_weight: [
+    {
+      required: true,
+      validator: validate_num_0,
+      trigger: 'blur'
+    }
+  ],
+  noble_metal: [
+    {
+      required: true,
+      message: '请选择贵金属种类',
+      trigger: 'change'
+    }
+  ],
+  is_gold_price: [
+    {
+      required: true,
+      message: '请选择是否启用实时金价',
+      trigger: 'change'
+    }
+  ],
+  is_diff: [
+    {
+      required: true,
+      message: '请选择有无工差',
+      trigger: 'change'
+    }
+  ],
+  config: [
+    {
+      required: true,
+      type: 'array',
+      message: '请选择配置要求',
+      trigger: 'change'
+    }
+  ],
+  other_config: [
+    {
+      required: true,
+      message: '其他要求不能为空',
+      trigger: 'blur'
+    }
+  ],
+  pay_way: [
+    {
+      required: true,
+      message: '请选择付款方式',
+      trigger: 'change'
+    }
+  ],
+  send_way: [
+    {
+      required: true,
+      message: '请选择发货方式',
+      trigger: 'change'
+    }
+  ],
+  manager: [
+    {
+      required: true,
+      message: '请选择业务经理',
+      trigger: 'change'
+    }
+  ],
+  cost_desc: [
+    {
+      required: false,
+      validator: validate_desc,
+      trigger: 'blur'
+    }
+  ],
+  remark: [
+    {
+      required: true,
+      validator: validate_desc,
+      trigger: 'blur'
+    }
+  ],
+  good_img: [
+    {
+      required: true,
+      message: '商品图片不能为空',
+      trigger: 'change'
+    }
+  ],
+  good_name: [
+    {
+      required: true,
+      message: '商品名称不能为空',
+      trigger: 'change'
+    }
+  ]
+}
+const ruleForm = {
+  companyName: '',
+  supplierNo: [],
+  customerCode: [],
+  is_determine_price: '0',
+  num: '0',
+  cgd_charge: '0',
+  price: '0',
+  expect_service_proportion: '0',
+  expect_service: '0',
+  good_name: '',
+  origin_place: [],
+  delivery_place: [],
+  cat_id: [],
+  brand_id: [],
+  unit_id: [],
+  weight: '0.000',
+  tax: '',
+  supply_area: '',
+  pay_way: '',
+  send_way: '0',
+  preservation_day: 1, // 有效期
+  delivery_day: '0', // 物流时间
+  make_day: '0', // 生产工期
+  gold_weight: '0.000',
+  noble_metal: '',
+  config: [],
+  other_config: '',
+  remark: '',
+  cost_desc: '',
+  good_img: [],
+  total: 0,
+  type: '0'
+}
+const other_ruleForm = {
+  // infoNo: "",
+  // pname: "",
+  // color: "",
+  // model: "",
+  // material: "",
+  cert_fee: '0.00',
+  pakge_fee: '0.00',
+  cost_fee: '0.00',
+  mark_fee: '0.00',
+  demo_fee: '0.00',
+  open_fee: '0.00',
+  delivery_fee: '0.00',
+  is_gold_price: '0',
+  is_diff: '0'
+}
+const ruleForm1 = {
+  plat_orderCode:"",
+  customerName: '',
+  fill_url: '',
+  companyName: '',
+  supplierNo: [],
+  customerCode: [],
+  is_determine_price: '0',
+  num: '',
+  cgd_charge: '0',
+  price: '0',
+  expect_service_proportion: '0',
+  expect_service: '0',
+  good_name: '',
+  originPlace: [],
+  origin_place: [],
+  delivery_place: [],
+  deliveryPlace: [],
+  cat_id: [],
+  brand_id: [],
+  unit_id: [],
+  weight: '0',
+  tax: '',
+  supply_area: '',
+  pay_way: '',
+  send_way: '0',
+  preservation_day: '', // 有效期
+  delivery_day: '0', // 物流时间
+  make_day: '0', // 生产工期
+  gold_weight: '0.000',
+  noble_metal: '',
+  config: [],
+  other_config: '',
+  remark: '',
+  cost_desc: '',
+  good_img: [],
+  total: 0,
+  type: '0'
+}
+
+export {
+  options1,
+  options2,
+  options3,
+  options4,
+  options5,
+  options6,
+  options7,
+  options8,
+  options9,
+  options10,
+  options11,
+  listCol,
+  rules,
+  statusList,
+  columns,
+  statusOptions,
+  showColumns,
+  ruleForm,
+  ruleForm1,
+  other_ruleForm
+}

+ 233 - 0
src/views/sellOut/businessFiling/config/rules.js

@@ -0,0 +1,233 @@
+import { hasSpace, isAddr, isChinese, isEmoticon, isMobile, isnumber, isSpecialSymbol } from "@/utils/validate";
+
+export const addressRules = {
+  receipt_quantity: [
+    {
+      required: true,
+      trigger: "blur",
+      validator: (rule, value, callback) => {
+        if (value === "") {
+          callback(new Error("不能为空!"));
+        } else {
+          if (!isnumber(value)) {
+            callback(new Error("仅支持整数!"));
+          } else {
+            callback();
+          }
+        }
+      },
+    },
+  ],
+
+  contactor: [
+    {
+      required: true,
+      trigger: "blur",
+      validator: (rule, value, callback) => {
+        if (value === "") {
+          callback(new Error("联系人不能为空!"));
+        } else {
+          if (value.length < 2 || value.length > 10) {
+            callback(new Error("联系人规则为2~10位汉字!"));
+          } else {
+            if (!isChinese(value)) {
+              callback(new Error("联系人规则为2~10位汉字!"));
+            } else if (isEmoticon(value)) {
+              callback(new Error("联系人规则为2~10位汉字!"));
+            } else {
+              callback();
+            }
+          }
+        }
+      }
+    },
+  ],
+
+  mobile: [
+    {
+      required: true,
+      validator: (rule, value, callback) => {
+        if (value === "") {
+          callback(new Error("手机号不能为空!"));
+        } else {
+          if (!isMobile(value)) {
+            callback(new Error("手机号格式不正确!"));
+          } else {
+            callback();
+          }
+        }
+      },
+      trigger: "blur",
+    },
+  ],
+
+  // addr_code: [
+  //   {
+  //     type: "array",
+  //     required: false,
+  //     message: "收货省市区不能为空",
+  //     trigger: "change",
+  //   },
+  // ],
+  
+  addr: [
+    {
+      required: true,
+      trigger: "blur",
+      validator: (rule, value, callback) => {
+        if (value === "") {
+          callback(new Error("详细地址不能为空!"));
+        } else {
+          if (hasSpace(value)) {
+            callback(new Error("系统不允许输入转义字符,请检查后重新输入!"));
+          } else if (isSpecialSymbol(value)) {
+            callback(new Error("不能使用英文特殊字符!"));
+          } else if (isAddr(value)) {
+            callback();
+          } else {
+            callback(new Error("详细地址填写不规范!"));
+          }
+        }
+      }
+    },
+  ],
+};
+
+
+export const createRules = {
+  customerCode:{
+    required:true,
+    message:'业务公司不能为空',
+    trigger:'blur'
+  },
+  companyName:{
+    required:true,
+    message:'客户名称不能为空',
+    trigger:'blur'
+  },
+  num:{
+    required:true,
+    message:'销售数量不能为空',
+    trigger:'blur'
+  },
+  is_determine_price:{
+    required:true,
+    message:'销售价不能为空',
+    trigger:'blur'
+  },
+  price:{
+    required:true,
+    message:'采购价不能为空',
+    trigger:'blur'
+  },
+  service_proportion:{
+    required:true,
+    message:'服务费比例不能为空',
+    trigger:'blur'
+  },
+  expect_service:{
+    required:true,
+    message:'期望服务费不能为空',
+    trigger:'blur'
+  },
+  brand_id:{
+    required:true,
+    message:'请选择品牌',
+    trigger:'blur'
+  },
+  preservation_day:{
+    required:true,
+    message:'有效期不能为空',
+    trigger:'blur'
+  },
+  delivery_day:{
+    required:true,
+    message:'物流时间不能为空',
+    trigger:'blur'
+  },
+  make_day:{
+    required:true,
+    message:'生产工期不能为空',
+    trigger:'blur'
+  },
+  tax:{
+    required:true,
+    message:'税点不能为空',
+    trigger:'blur'
+  },
+  unit_id:{
+    required:true,
+    message:'请选择单位',
+    trigger:'blur'
+  },
+  cat_id:{
+    required:true,
+    message:'请选择分类',
+    trigger:'blur'
+  },
+  spec_list:{
+    required:true,
+    message:'请选择规格',
+    trigger:'blur'
+  },
+  good_name:{
+    required:true,
+    message:'商品名称不能为空',
+    trigger:'blur'
+  },
+  delivery_place:{
+    required:true,
+    message:'发货地不能为空',
+    trigger:'blur'
+  },
+  origin_place:{
+    required:true,
+    message:'产地不能为空',
+    trigger:'blur'
+  },
+  weight:{
+    required:true,
+    message:'总重量不能为空',
+    trigger:'blur'
+  },
+  supply_area:{
+    required:true,
+    message:'请选择供货区域',
+    trigger:'blur'
+  },
+  pay_way:{
+    required:true,
+    message:'请选择付款方式',
+    trigger:'blur'
+  },
+  config:{
+    required:true,
+    message:'配置要求不能为空',
+    trigger:'blur'
+  },
+  other_config:{
+    required:true,
+    message:'其他配置要求不能为空',
+    trigger:'blur'
+  },
+  remark:{
+    required:true,
+    message:'采购备注不能为空',
+    trigger:'blur'
+  },
+  cost_desc:{
+    required:true,
+    message:'工艺说明不能为空',
+    trigger:'blur'
+  },
+  good_img:{
+    required:true,
+    message:'请上传商品图片',
+    trigger:'blur'
+  },
+  supplierNo:{
+    required:true,
+    message:'供应商不能为空',
+    trigger:'blur'
+  }
+}

+ 69 - 0
src/views/sellOut/businessFiling/detail.vue

@@ -0,0 +1,69 @@
+<template>
+  <div class="business-container">
+    <ElTabs>
+      <ElTabPane label="新建业务报备" v-if="isAdd">
+        <CreateBusinessForm />
+      </ElTabPane>
+      <template v-else>
+        <ElTabPane label="业务报备详情">
+          <ElCollapse v-model="actives">
+            <ElCollapseItem title="业务报备详情" name="0">
+            </ElCollapseItem>
+
+            <ElCollapseItem title="商品详情" name="1">
+              <ShowGoodsDataTable
+                :type="'4'"
+                :skucode="'SN2303222038477600'"
+                :spucode="'SKU2303222034205711'"
+              />
+            </ElCollapseItem>
+            
+            <ElCollapseItem title="是否合规设置" name="2">
+              <ComplianceForm />
+            </ElCollapseItem>
+
+            <ElCollapseItem title="待转单" name="3">
+              <WaitTransferred />
+            </ElCollapseItem>
+          </ElCollapse>
+        </ElTabPane>
+      </template>
+    </ElTabs>
+  </div>
+</template>
+
+<script>
+import CreateBusinessForm from './components/createBusinessForm'
+import WaitTransferred from "./components/waitTransferred.vue"
+import ComplianceForm from "./components/complianceForm.vue"
+
+export default {
+  components: {
+    CreateBusinessForm,
+    WaitTransferred,
+    ComplianceForm
+  },
+  data(){
+    return {
+      actives:["0", "1",  "2", "3"]
+    }
+  },
+  computed:{
+    isAdd(){
+      return this.$route.query.type === "add";
+    },
+    powers(){
+      const { btnList } = this.$store.getters;
+      const tran = btnList.find(item => item.menu_route == "businessFilingDetail") || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.business-container {
+  padding: 10px;
+}
+</style>

+ 494 - 0
src/views/sellOut/businessFiling/index.vue

@@ -0,0 +1,494 @@
+<template>
+  <div class="purchaseOrder pagePadding">
+    <ex-table
+      v-loading="loading"
+      :table="table"
+      :data="tableData"
+      :columns="columns"
+      :page="pageInfo"
+      :size="size"
+      @page-curr-change="handlePageChange"
+      @page-size-change="handleSizeChange"
+      @screen-reset="
+        pageInfo.curr = 1;
+        parmValue.page = 1;
+        searchList();
+      "
+      @screen-submit="
+        pageInfo.curr = 1;
+        parmValue.page = 1;
+        searchList();
+      "
+      @selection="selection_change"
+    >
+      <template #table-header="{}">
+        <div style="width: 100%">
+          <el-row style="padding: 0 0 0 80px" :gutter="10">
+            <el-col :span="4" style="width: 303px; padding: 0 0 0 10px">
+              <period-date-picker
+                :type="1"
+                :width="'135px'"
+                :size="searchSize"
+                :start_date="timeOBJ.start_date"
+                :end_date="timeOBJ.end_date"
+                @timeReturned="handleTime"
+              />
+            </el-col>
+
+            <el-col :span="4">
+              <el-input
+                size="mini"
+                placeholder="报备单号"
+                v-model="parmValue.filingCode"
+                @blur="
+                  pageInfo.curr = 1;
+                  parmValue.page = 1;
+                  searchList();
+                "
+              />
+            </el-col>
+
+            <el-col :span="4">
+              <el-input
+                size="mini"
+                placeholder="商品名称"
+                v-model="parmValue.good_name"
+                @blur="
+                  pageInfo.curr = 1;
+                  parmValue.page = 1;
+                  searchList();
+                "
+              />
+            </el-col>
+
+            <el-col :span="3" style="width: 66px; float: right">
+              <el-button
+                :size="searchSize"
+                type="primary"
+                style="float: right; margin-left: 5px"
+                @click="searchList"
+              >刷新</el-button>
+            </el-col>
+            <el-col :span="4" style="width: 66px; float: right">
+              <el-button type="warning" class="fr" :size="searchSize" @click="restSearch">重置</el-button>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="3" class="fr" style="width: 66px; margin-top: 10px">
+              <el-button
+                v-if="powers.includes('003')"
+                :size="searchSize"
+                type="success"
+                style="float: right"
+                @click="
+                  routeGoto('/sellOut/businessFilingDetail', { id: 'add', type: 'add' })
+                "
+              >添加</el-button>
+            </el-col>
+            <el-col :span="4" style="margin-top: 15px">
+              <search-customer
+                size="mini"
+                :names="khName"
+                :is-detail="type !== 'add'"
+                :value="parmValue.companyCode"
+                placeholder="客户公司"
+                @searchChange="handleCustomerChange"
+              />
+            </el-col>
+
+            <el-col :span="4" style="margin-top: 15px;margin-left:10px">
+              <search-supplier
+                :size="'mini'"
+                :value="parmValue.supplierNo"
+                :disabled="false"
+                :placeholder="'供应商名称'"
+                :names="parmValue.supplierName"
+                :is-detail="true"
+                :no-disabled="true"
+                @searchChange="supplierChange"
+              />
+            </el-col>
+
+            <el-col :span="4" style="margin-top: 15px; margin-left: 10px">
+              <el-select
+                clearable
+                size="mini"
+                placeholder="状态"
+                v-model="parmValue.status"
+                @change="
+                  pageInfo.curr = 1;
+                  parmValue.page = 1;
+                  searchList();
+                "
+              >
+                <el-option
+                  v-for="status in statusOptions"
+                  :key="status.value"
+                  :value="status.value"
+                  :label="status.label"
+                />
+              </el-select>
+            </el-col>
+          </el-row>
+        </div>
+      </template>
+
+      <template #is_compliance="{ scope }">
+        {{scope.row.is_compliance === "0" ? "未填写" : scope.row.is_compliance === "1" ? "合规" : "不合规"}}
+      </template>
+
+      <template #good_img="{ scope }">
+        <div v-if="scope.row.good_img" style="width: 20px; height: 20px" class="hover" v-viewer>
+          <img
+            :src="scope.row.good_img"
+            style="display: inline-block; width: 100%; height: 100%"
+            alt
+          />
+        </div>
+      </template>
+
+      <template #company="{scope}">
+        <div style="display:flex;align-items:center">
+          <el-tooltip :content="'企业客户编码 : ' + (scope.row.companyCode || '--')" placement="top">
+            <i
+              v-if="scope.row.companyName"
+              class="el-icon-warning-outline"
+              style="margin-right:2px;cursor:pointer"
+            />
+          </el-tooltip>
+          {{scope.row.companyName}}
+        </div>
+      </template>
+
+      <template #customer="{scope}">
+        <div style="display:flex;align-items: center">
+          <el-tooltip :content="'业务公司编码 : ' + (scope.row.customerCode || '--')" placement="top">
+            <i class="el-icon-warning-outline" style="margin-right:2px;cursor:pointer" />
+          </el-tooltip>
+          {{ scope.row.customerName }}
+        </div>
+      </template>
+
+      <template #supplier="{scope}">
+        <div style="display:flex; align-items:center">
+          <el-tooltip :content="'供应商公司编码 : ' + (scope.row.supplierNo || '--')" placement="top">
+            <i class="el-icon-warning-outline" style="margin-right:2px;cursor:pointer" />
+          </el-tooltip>
+          {{scope.row.supplierName}}
+        </div>
+      </template>
+
+      <template #status="{ scope }">
+        <el-tag
+          :size="tablebtnSize"
+          v-text="
+            (statusOptions.find((item) => item.value == scope.row.status) || {}).label || '--'
+          "
+        ></el-tag>
+      </template>
+
+      <template #operation="{ scope }">
+        <el-tooltip effect="dark" content="详情" placement="top">
+          <i class="el-icon-view tb-icon" @click="getRouter('/sellOut/filingDetail', scope.row.id)"></i>
+        </el-tooltip>
+
+        <el-tooltip effect="dark" content="修改" placement="top">
+          <i
+            v-if="String(scope.row.status) === '1' && !isSupertube && powers.includes('005') && Number(scope.row.wsm_has_account) === 0"
+            class="el-icon-edit tb-icon"
+            @click="getRouter('/sellOut/filingDetail', scope.row.id, 'edit')"
+          />
+        </el-tooltip>
+
+        <el-tooltip effect="dark" content="取消转单" placement="top">
+          <i
+            v-if="
+              String(scope.row.status) !== '4' 
+              && String(scope.row.status) !== '5' 
+              && Number(scope.row.wsm_has_account) === 0
+              && powers.includes('005')
+            "
+            class="el-icon-refresh-right tb-icon"
+            @click="handleCancel(scope.row.id)"
+          ></i>
+        </el-tooltip>
+      </template>
+    </ex-table>
+  </div>
+</template>
+<script>
+import asyncRequest from "@/apis/service/sellOut/businessFiling";
+import { cg_order_type_options } from "@/assets/js/statusList";
+import { columns, statusOptions } from "./config/columns";
+import mixinPage from "@/mixins/elPaginationHandle";
+import companyHelper from "@/mixins/companyHelper";
+import urlConfig from "@/apis/url-config";
+import resToken from "@/mixins/resToken";
+import { mapGetters } from "vuex";
+
+export default {
+  name: "purchaseOrder",
+  mixins: [mixinPage, resToken, companyHelper],
+  components: {},
+  computed: {
+    ...mapGetters([
+      "business_companyNo",
+      "tablebtnSize",
+      "isSupertube",
+      "searchSize",
+      "size"
+    ]),
+    powers() {
+      const { btnList } = this.$store.getters;
+      const tran = btnList.find(item => item.menu_route == "businessFiling") || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    },
+    _process() {
+      const { roleProcess } = this.$store.getters;
+      const tran = roleProcess.find(i => i.process_type === "BBD") || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    },
+    maxNo() {
+      return this.business_companyNo;
+    }
+  },
+
+  watch: {
+    maxNo(val, oldval) {
+      this.restSearch();
+    }
+  },
+  data() {
+    return {
+      //入库公司
+      supplierName: "",
+      cg_order_type_options,
+      //入库仓库
+      stockName: "",
+      changeList: [],
+      fileUrl: urlConfig.baseURL,
+      sitem: null,
+      select: "1",
+      input: "",
+      timeOBJ: {
+        start_date: "", //起始时间
+        end_date: "" // 结束时间
+      },
+      // 状态
+      statusOptions: statusOptions,
+      loading: false,
+      showModel: false,
+      isDetail: false,
+      modelId: 0,
+      wsm_code: [],
+      wsm_supplierNo: [],
+      parmValue: {
+        supplierNo: [],
+        companyCode: [],
+        start_date: "", //新建起始时间
+        end_date: "" // 新建结束时间
+      },
+      tableData: [],
+      passwordModel: false,
+      passwordModelId: 0,
+      isPasswordDetail: false,
+      // 表格 - 数据
+      tableData: [],
+      // 表格 - 参数
+      table: {
+        stripe: true,
+        border: true,
+        _defaultHeader_: ["setcol"]
+      },
+      // 表格 - 分页
+      pageInfo: {
+        size: 15,
+        total: 0,
+        curr: 1
+      },
+      // 表格 - 列参数
+      columns: columns
+    };
+  },
+  mounted() {
+    const { back } = this.$route.query;
+    if (back) {
+      this.parmValue = JSON.parse(back);
+      console.log(this.parmValue);
+      const { page, size, start_date, end_date } = this.parmValue;
+
+      this.pageInfo = {
+        size: this.pageInfo.size,
+        curr: page,
+        total: 0
+      };
+      //多选条件
+      this.select = this.parmValue.select;
+    } else {
+      this.select = "1";
+    }
+    this.searchList();
+  },
+
+  methods: {
+    async handleCancel(id) {
+      const { code, message } = await asyncRequest.cancel({ id });
+      if (Number(code) === 0) {
+        this.searchList();
+      } else {
+        this.$message.warning(message);
+      }
+    },
+    async supplierChange(e) {
+      const { code, label } = e;
+      this.parmValue.supplierNo = code ? [code] : [];
+      this.searchList();
+    },
+    getRouter(toRouter, queryId, type) {
+      console.log(toRouter, queryId);
+      if (toRouter && queryId) {
+        let model = {
+          id: queryId,
+          type
+        };
+
+        //有多选框的条件
+        this.parmValue.select = this.select;
+        this.parmValue.sselect = this.sselect;
+        this.parmValue.input = this.input;
+
+        let routerModel = {
+          options: JSON.parse(JSON.stringify(this.parmValue)),
+          router: this.$route.path
+        };
+        model.preModel = JSON.stringify(routerModel);
+        this.routeGoto(toRouter, model);
+      } else {
+        this.$message.warning("暂未找到相关流程!");
+      }
+    },
+    async handleCancel(id) {
+      const { code, message } = await asyncRequest.cancel({ id });
+      if (Number(code) === 0) {
+        this.searchList();
+      } else {
+        this.$message.warning(message);
+      }
+    },
+    //选中触发函数
+    selection_change(e) {
+      const { list } = e;
+      //选中的数组集合
+      this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
+    },
+    showal(list, message, code) {
+      let htmlList = "<ul>";
+      list.forEach(v => {
+        htmlList += `<li>${code !== "" ? v[code] : v}</li>`;
+      });
+      htmlList += "</ul>";
+      this.$notify({
+        title: message,
+        dangerouslyUseHTMLString: true,
+        message: htmlList
+      });
+    },
+    restSearch() {
+      this.select = "1";
+      this.input = "";
+      this.wsm_code = [];
+      this.wsm_supplierNo = [];
+      this.timeOBJ = {
+        start_date: "", //起始时间
+        end_date: "" // 结束时间
+      };
+      this.parmValue = {
+        filingCode: "", // 报备单编码
+        wsm_in_code: "", // 入库单号
+        cgdNo: "", // 销售订单编码
+        apply_name: "", // 申请人
+        good_name: "", // 产品名称
+        good_code: "", // 产品属性编号
+        status: "", //状态
+        wsm_code: "", //入货仓库编码
+        start_date: "", //新建起始时间
+        end_date: "", // 新建结束时间
+        last_start_date: "", //最后入库时间开始
+        last_end_date: "", //最后入库时间结束
+        orderCode: "", //订单编号
+        company_name: "", //部门
+        page: 1, // 页码
+        size: 15 // 每页显示条数
+      };
+      // 表格 - 分页
+      this.pageInfo = {
+        size: 15,
+        curr: 1,
+        total: 0
+      };
+      this.searchList();
+    },
+    handleCustomerChange(e) {
+      this.parmValue.companyCode = e.code ? [e.code] : "";
+      this.customerName = e.label;
+      this.searchList();
+    },
+    async searchList() {
+      if (this.loading) return;
+
+      if (
+        (this.timeOBJ.start_date !== "" && this.timeOBJ.end_date === "") ||
+        (this.timeOBJ.start_date === "" && this.timeOBJ.end_date !== "")
+      ) {
+        this.$message.warning("时间区间不完整!");
+        return;
+      }
+
+      this.loading = true;
+
+      const res = await asyncRequest.list({
+        ...this.parmValue,
+        ...this.timeOBJ,
+        ...this.pageInfo,
+        customerCode: this.currentCompany,
+        supplierNo: Array.isArray(this.parmValue.supplierNo)
+          ? this.parmValue.supplierNo[0]
+          : this.parmValue.supplierNo,
+        companyCode: Array.isArray(this.parmValue.companyCode)
+          ? this.parmValue.companyCode[0]
+          : this.parmValue.companyCode,
+        noRelation: true
+      });
+      const { code, data } = await this.useResHandle(res);
+      if (code === 0) {
+        const { list, count } = data;
+        this.tableData = list;
+        this.pageInfo.total = Number(count);
+      } else {
+        this.tableData = [];
+        this.pageInfo.total = 0;
+      }
+      this.loading = false;
+    },
+    // 时间
+    async handleTime(e) {
+      this.timeOBJ.start_date = e?.startTime ?? "";
+      this.timeOBJ.end_date = e?.endTime ?? "";
+
+      if (e.startTime && e.endTime) {
+        this.pageInfo.curr = 1;
+        this.parmValue.page = 1;
+        this.searchList();
+      }
+    }
+  }
+};
+</script>
+<style lang="scss" scoped>
+.purchaseOrder {
+  // text-align: right;
+}
+</style>