chenhaozhe
8 天以前 723793a0aa8d69cbbb463830a3344dbd6655cee5
src/views/sell/XsSeOutStockBill.vue
@@ -88,9 +88,8 @@
                  <el-col :span="6" style="padding: 0 10px">
                    <el-select v-model="queryParams.Comparator2" placeholder="请选择" @change="riqiChange"
                      class="ForFilteringSchemes">
                      <span v-for="(item, index) in btList" :key="index">
                        <el-option :label="item.field" :value="item.field" v-if="!item.hide"></el-option>
                      </span>
                      <el-option v-for="(item, index) in comparatorList" :key="index" :label="item.label"
                        :value="item.value"></el-option>
                    </el-select>
                  </el-col>
                  <el-col :span="11">
@@ -104,8 +103,9 @@
                  <el-col :span="7">
                    <el-select v-model="queryParams.ColName" placeholder="请选择" @change="riqiChange"
                      class="ForFilteringSchemes">
                      <el-option v-for="(item, index) in btList" :key="index" :label="item.field"
                        :value="item.field"></el-option>
                      <span v-for="(item, index) in btList" :key="index">
                        <el-option :label="item.field" :value="item.field" v-if="!item.hide"></el-option>
                      </span>
                    </el-select>
                  </el-col>
                  <el-col :span="6" style="padding: 0 10px">
@@ -696,7 +696,7 @@
      if (this.pageSize == 0) {
        this.pageSize = 50;
      }
      if (this.openPage && this.propsHOrgID) {
      if (this.openPage && this.propsHOrgID && this.queryParams.HOrgID == "") {
        this.queryParams.HOrgID = this.propsHOrgID
      }
      // this.queryParams.HOrgID = 100038
@@ -706,6 +706,9 @@
      if (this.sTime && this.eTime) {
        this.sWhere += " and CONVERT(varchar(100),日期, 23) >= '" + this.sTime + "'";
        this.sWhere += " and CONVERT(varchar(100),日期, 23) <= '" + this.eTime + "'";
      }
      if (this.queryParams.HOrgID) {
        this.sWhere += " and HOrgID = '" + this.queryParams.HOrgID + "'";
      }
      let Organization = this.organizationList.find(
        (e) => e.ID == this.queryParams.HOrgID
@@ -990,6 +993,9 @@
        this.rowForm = selection[0];
      }
      this.selRowList = selection
      if (this.openPage) {
        this.$emit('deptEmit', this.selRowList, 12)
      }
    },
    //打开侧边搜索弹窗
    handleSearch() {
@@ -1070,9 +1076,8 @@
      }
      if (this.queryParams.HBillNo) {
        this.sWhere += " and 单据号 like '%" + this.queryParams.HNumber + "%'";
        this.sWhere += " and 单据号 like '%" + this.queryParams.HBillNo + "%'";
      }
      if (this.queryParams.HProjectNumber) {
        this.sWhere += " and 项目编码 like '%" + this.queryParams.HProjectNumber + "%'";
      }