Pārlūkot izejas kodu

Merge branch 'master' of http://git.shengws.com/csx/Vue_New into 20200710_pc_vue_new_branch

csx 4 gadus atpakaļ
vecāks
revīzija
fa2a1eb9dc

+ 19 - 0
src/api/dialysis.js Parādīt failu

@@ -272,3 +272,22 @@ export function CreateDryWeight(params) {
272 272
 
273 273
   })
274 274
 }
275
+
276
+export function GetDialysisgoods(params) {
277
+  return request({
278
+    url: '/api/dialysisgoods/get',
279
+    method: 'get',
280
+    params: params,
281
+
282
+  })
283
+}
284
+
285
+
286
+export function GetDialysisGoodStatistics(params) {
287
+  return request({
288
+    url: '/api/goodstatistics/get',
289
+    method: 'get',
290
+    params: params,
291
+
292
+  })
293
+}

+ 296 - 161
src/xt_pages/dialysis/components/consumables.vue Parādīt failu

@@ -1,190 +1,325 @@
1 1
 <template>
2
-    <div class="page_consumables">
3
-      <div class="cell clearfix">
4
-        <label class="title"> <span class="name">排班班次</span> : </label>
5
-        <div class="time">
6
-          <ul class>
7
-            <li
8
-              :class="item.value == schedulType ? 'active' : ''"
9
-              @click="selectSchedulType(item.value)"
10
-              v-for="item in schedulArr"
11
-              :key="item.value"
12
-            >
13
-              {{ item.label }}
14
-            </li>
15
-          </ul>
16
-        </div>
17
-
18
-        <label class="title"><span class="name">日期查询</span> : </label>
19
-        <el-date-picker size="small" v-model="selected_date" prefix-icon="el-icon-date" @change="handleScheduleDateChange" :editable="false" :clearable="false" style="width: 196px;margin-right:10px;" type="date" placeholder="选择日期时间" align="right" ></el-date-picker>
20
-        <el-input size="small" style="width: 180px;" @keyup.enter.native='searchAction' v-model.trim="search_input" class="filter-item"/>
21
-        <el-button size="small" class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
2
+  <div class="page_consumables">
3
+    <div class="cell clearfix">
4
+      <label class="title"> <span class="name">排班班次</span> : </label>
5
+      <div class="time">
6
+        <ul class>
7
+          <li
8
+            :class="item.value == schedulType ? 'active' : ''"
9
+            @click="selectSchedulType(item.value)"
10
+            v-for="item in schedulArr"
11
+            :key="item.value"
12
+          >
13
+            {{ item.label }}
14
+          </li>
15
+        </ul>
22 16
       </div>
23
-      <div class="cell clearfix" style="justify-content: space-between;">
24
-        <div style="display:flex;">
25
-          <label class="title"> <span class="name">分区</span> : </label>
26
-          <div class="time">
17
+
18
+      <label class="title"><span class="name">日期查询</span> : </label>
19
+      <el-date-picker size="small" v-model="selected_date" prefix-icon="el-icon-date" @change="handleScheduleDateChange"
20
+                      :editable="false" :clearable="false" style="width: 196px;margin-right:10px;" type="date"
21
+                      format="yyyy-MM-dd"
22
+                      value-format="yyyy-MM-dd"
23
+                      placeholder="选择日期时间" align="right"></el-date-picker>
24
+      <!--<el-input size="small" style="width: 180px;" @keyup.enter.native='searchAction' v-model.trim="search_input"-->
25
+                <!--class="filter-item"/>-->
26
+      <!--<el-button size="small" class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>-->
27
+    </div>
28
+    <div class="cell clearfix" style="justify-content: space-between;">
29
+      <div style="display:flex;">
30
+        <label class="title"> <span class="name">分区</span> : </label>
31
+        <div class="time">
27 32
           <ul class>
28 33
             <li
29
-            :class="item.id == partitionType ? 'active' : ''"
30
-            @click="selectPartitionType(item.id)"
31
-            v-for="item in partitionArr"
32
-            :key="item.id"
34
+              :class="item.id == partitionType ? 'active' : ''"
35
+              @click="selectPartitionType(item.id)"
36
+              v-for="item in partitionArr"
37
+              :key="item.id"
33 38
             >
34
-            {{ item.name }}
39
+              {{ item.name }}
35 40
             </li>
36 41
           </ul>
37
-          </div>
38
-        </div>
39
-        <div>
40
-            <el-button size="small" icon="el-icon-printer" type="primary">打印</el-button>
41
-            <el-button size="small" type="primary" @click="statistics">统计表</el-button>
42 42
         </div>
43 43
       </div>
44 44
       <div>
45
-          <el-table
46
-            :data="tableData"
47
-            height="350"
48
-            border
49
-            style="width: 100%">
50
-            <el-table-column
51
-            align="center"
52
-            type="selection"
53
-            width="55">
54
-            </el-table-column>
55
-            <el-table-column
56
-            align="center"
57
-            prop="date"
58
-            label="日期"
59
-            width="180">
60
-            </el-table-column>
61
-            <el-table-column
62
-            align="center"
63
-            prop="name"
64
-            label="姓名"
65
-            width="180">
66
-            </el-table-column>
67
-            <el-table-column
68
-            align="center"
69
-            prop="address"
70
-            label="地址">
71
-            </el-table-column>
72
-        </el-table>
45
+        <!--<el-button size="small" icon="el-icon-printer" type="primary">打印</el-button>-->
46
+        <el-button size="small" type="primary" @click="statistics">统计表</el-button>
73 47
       </div>
48
+    </div>
49
+    <div>
50
+      <el-table
51
+        :data="list"
52
+        height="350"
53
+        border
54
+      >
55
+        <el-table-column
56
+          align="center"
57
+          type="selection"
58
+          width="55">
59
+        </el-table-column>
60
+        <el-table-column
61
+          align="center"
62
+          prop="name"
63
+          v-for="item,index in good_types"
64
+          :key="index"
65
+          :label="item"
66
+        >
67
+          <template slot-scope="scope">
68
+            <span>{{scope.row.good_type[index].name}}</span>
69
+          </template>
74 70
 
75
-      <consumables-dialog ref="consumables"></consumables-dialog>
71
+        </el-table-column>
72
+
73
+      </el-table>
76 74
     </div>
75
+
76
+    <el-pagination
77
+      @size-change="handleSizeChange"
78
+      @current-change="handleCurrentChange"
79
+      :page-sizes="[10, 50, 100]"
80
+      :page-size="10"
81
+      background
82
+      align="right"
83
+      style="margin-top:20px;"
84
+      layout="total, sizes, prev, pager, next, jumper"
85
+      :total="total"
86
+    >
87
+    </el-pagination>
88
+
89
+    <consumables-dialog ref="consumables" :list="new_list"></consumables-dialog>
90
+  </div>
77 91
 </template>
78 92
 
79 93
 
80 94
 <script>
81
-import { GetAllZone } from "@/api/dialysis";
82
-import consumablesDialog from './consumablesDialog'
83
-export default {
84
-    components:{
85
-        consumablesDialog
95
+  import { GetAllZone,GetDialysisgoods } from '@/api/dialysis'
96
+  import consumablesDialog from './consumablesDialog'
97
+  import { uParseTime } from "@/utils/tools";
98
+
99
+  export default {
100
+    components: {
101
+      consumablesDialog
86 102
     },
87
-    data(){
88
-        return{
89
-            schedulType: 0,
90
-            schedulArr: [
91
-                { value: 0, label: "全部" },
92
-                { value: 1, label: "上午" },
93
-                { value: 2, label: "下午" },
94
-                { value: 3, label: "晚上" }
95
-            ],
96
-            selected_date:new Date(),
97
-            partitionArr:[],
98
-            partitionType: 0,
99
-            tableData: [{
100
-                date: '2016-05-03',
101
-                name: '王小虎',
102
-                address: '上海市普陀区金沙江路 1518 弄'
103
-                }, {
104
-                date: '2016-05-02',
105
-                name: '王小虎',
106
-                address: '上海市普陀区金沙江路 1518 弄'
107
-                }, {
108
-                date: '2016-05-04',
109
-                name: '王小虎',
110
-                address: '上海市普陀区金沙江路 1518 弄'
111
-                }, {
112
-                date: '2016-05-01',
113
-                name: '王小虎',
114
-                address: '上海市普陀区金沙江路 1518 弄'
115
-                }, {
116
-                date: '2016-05-08',
117
-                name: '王小虎',
118
-                address: '上海市普陀区金沙江路 1518 弄'
119
-                }, {
120
-                date: '2016-05-06',
121
-                name: '王小虎',
122
-                address: '上海市普陀区金沙江路 1518 弄'
123
-                }, {
124
-                date: '2016-05-07',
125
-                name: '王小虎',
126
-                address: '上海市普陀区金沙江路 1518 弄'
127
-                },{
128
-                date: '2016-05-01',
129
-                name: '王小虎',
130
-                address: '上海市普陀区金沙江路 1518 弄'
131
-                }, {
132
-                date: '2016-05-08',
133
-                name: '王小虎',
134
-                address: '上海市普陀区金沙江路 1518 弄'
135
-                }, {
136
-                date: '2016-05-06',
137
-                name: '王小虎',
138
-                address: '上海市普陀区金沙江路 1518 弄'
139
-                }, {
140
-                date: '2016-05-07',
141
-                name: '王小虎',
142
-                address: '上海市普陀区金沙江路 1518 弄'
143
-                }
144
-            ],
145
-            search_input:"",
146
-            searchAction:"",
103
+    data() {
104
+      return {
105
+        query:{
106
+          total:"",
107
+          schedule_date:"",
108
+          schedule_type:0,
109
+          partition_id:0,
110
+          page:1,
111
+          limit:10,
112
+        },
113
+        schedulType: 0,
114
+        schedulArr: [
115
+          { value: 0, label: '全部' },
116
+          { value: 1, label: '上午' },
117
+          { value: 2, label: '下午' },
118
+          { value: 3, label: '晚上' }
119
+        ],
120
+        selected_date: new Date(),
121
+        partitionArr: [],
122
+        partitionType: 0,
123
+        tableData: [{
124
+          date: '2016-05-03',
125
+          name: '王小虎',
126
+          address: '上海市普陀区金沙江路 1518 弄'
147 127
         }
128
+        ],
129
+        search_input: '',
130
+        searchAction: '',
131
+        allGoodInfo:[],
132
+        list:[],
133
+        new_list:[],
134
+
135
+        good_types: [],
136
+
137
+      }
148 138
     },
149
-    created(){
150
-        this.getAllZone()
139
+    created() {
140
+      this.getAllZone()
141
+      let date = uParseTime(new Date(), "{y}-{m}-{d}")
142
+      var newDate = new Date();
143
+      var y = newDate.getFullYear();
144
+      var m = newDate.getMonth() + 1;
145
+      var d = newDate.getDate();
146
+      var schedule_date =
147
+        y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
148
+
149
+      this.query.schedule_date = schedule_date
150
+      this.query.schedule_type = 0
151
+      this.query.partition_id = 0
152
+      this.query.page = 1
153
+      this.GetDialysisgoods()
151 154
     },
152
-    methods:{
153
-        selectSchedulType(scheduleType) {
154
-            this.schedulType = scheduleType;
155
-        },
156
-        selectPartitionType(partitionType) {
157
-            this.partitionType = partitionType;
158
-        },
159
-        getAllZone: function() {
160
-            GetAllZone().then(response => {
161
-                if (response.data.state == 0) {
162
-                this.$message.error(response.data.msg);
163
-                return false;
164
-                } else {
165
-                this.partitionArr = response.data.data.zone;
166
-                this.partitionArr.unshift({ id: 0, name: "全部" });
167
-                }
168
-            });
169
-        },
170
-        statistics(){
171
-            this.$refs.consumables.show();
172
-        },
173
-        handleScheduleDateChange(){
155
+    methods: { handleSizeChange(val) {
156
+        this.query.limit = val;
157
+        this.GetDialysisgoods();
158
+      },
159
+      handleCurrentChange(val) {
160
+        this.query.page = val;
161
+        this.GetDialysisgoods();
162
+      },
174 163
 
175
-        },
176
-        search(){
177
-          
164
+      calCount(query_warehouseout_info) {
165
+        let total = 0
166
+        var array = []
167
+        array = query_warehouseout_info
168
+        for (let i = 0; i < array.length; i++) {
169
+          total = total + array[i].count
170
+        }
171
+        return total
172
+
173
+      },
174
+      getGoodUserInfo(good_type_id,good_user,last_good_user) {
175
+        if (good_user != null && good_user.length > 0) {
176
+          let desc = ""
177
+          for (let b = 0; b < good_user.length; b++){
178
+            if(good_type_id == good_user[b].good_type_id)
179
+              desc = desc + "\n" + good_user[b].info.specification_name +"*" +good_user[b].count
180
+          }
181
+          console.log(desc)
182
+
183
+          return desc
184
+        } else if (good_user != null && good_user.length <= 0) {
185
+          if (last_good_user != null && last_good_user.length > 0) {
186
+            let desc = ""
187
+            for (let b = 0; b < last_good_user.length; b++){
188
+              if(good_type_id == last_good_user[b].good_type_id)
189
+                desc = desc+ "\n" + last_good_user[b].info.specification_name +"*" +last_good_user[b].count
190
+            }
191
+            console.log(desc)
192
+
193
+            return desc
194
+
195
+          }
196
+          return ""
178 197
         }
198
+      },
199
+      GetDialysisgoods() {
200
+        GetDialysisgoods(this.query).then(response => {
201
+          if (response.data.state == 0) {
202
+            this.$message.error(response.data.msg)
203
+            return false
204
+          } else {
205
+
206
+            this.list = []
207
+            this.good_types = []
208
+            this.allGoodInfo = []
209
+
210
+            var res = response.data
211
+            this.total = res.data.total
212
+            this.good_types.push("姓名")
213
+            for (let a = 0; a <  res.data.good_type.length; a++){
214
+              this.good_types.push(res.data.good_type[a].type_name)
215
+            }
216
+            this.allGoodInfo = res.data.dialysis_goods
217
+
218
+            for(let i = 0; i < res.data.dialysis_goods.length; i++){
219
+              let arr =[]
220
+              let obj = {
221
+                id:0,
222
+                name:  res.data.dialysis_goods[i].patient.name
223
+
224
+              }
225
+              arr.push(obj)
226
+
227
+              for (let a = 0; a <  res.data.good_type.length; a++){
228
+                let obj = {
229
+                  id:res.data.good_type[a].id,
230
+                  name:""
231
+
232
+                }
233
+                arr.push(obj)
234
+
235
+
236
+              }
237
+
238
+
239
+
240
+              let newObj = {
241
+                "good_type":arr,
242
+                "good_user":res.data.dialysis_goods[i].good_user,
243
+                "last_good_user":res.data.dialysis_goods[i].last_good_user,
244
+                "good_user_detail":res.data.dialysis_goods[i].good_user_detail,
245
+                "last_good_user_detail":res.data.dialysis_goods[i].last_good_user_detail,
246
+              }
247
+              this.list.push(newObj)
248
+            }
249
+
250
+
251
+            for (let a = 0; a <  this.list.length; a++){
252
+              for (let b = 0; b <  this.list[a].good_type.length; b++){
253
+
254
+                if(this.list[a].good_type[b].id > 0){
255
+                  this.list[a].good_type[b].name = this.getGoodUserInfo(this.list[a].good_type[b].id,this.list[a].good_user,this.list[a].last_good_user)
256
+                }
257
+
258
+              }
259
+            }
260
+
261
+          }
262
+
263
+
264
+
265
+        })
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+      },
275
+      selectSchedulType(scheduleType) {
276
+        this.schedulType = scheduleType
277
+        this.query.schedule_type = scheduleType
278
+        this.query.page = 1
279
+        this.GetDialysisgoods()
280
+
281
+      },
282
+      selectPartitionType(partitionType) {
283
+        this.partitionType = partitionType
284
+        this.query.partition_id = partitionType
285
+        this.query.page = 1
286
+
287
+        this.GetDialysisgoods()
288
+
289
+      },
290
+      getAllZone: function() {
291
+        GetAllZone().then(response => {
292
+          if (response.data.state == 0) {
293
+            this.$message.error(response.data.msg)
294
+            return false
295
+          } else {
296
+            this.partitionArr = response.data.data.zone
297
+            this.partitionArr.unshift({ id: 0, name: '全部' })
298
+          }
299
+        })
300
+      },
301
+      statistics() {
302
+        this.$refs.consumables.show()
303
+      },
304
+      handleScheduleDateChange(val) {
305
+        this.query.schedule_date = val
306
+        this.query.page = 1
307
+        this.GetDialysisgoods()
308
+      },
309
+      search() {
310
+
311
+      }
179 312
     }
180
-}
313
+  }
181 314
 </script>
182 315
 
183 316
 
184 317
 <style lang="scss" scoped>
185
-.page_consumables{
186
-   .clearfix:after{
187
-       content:none;
188
-   }
189
-}
318
+  .page_consumables {
319
+
320
+  .clearfix:after {
321
+    content: none;
322
+  }
323
+
324
+  }
190 325
 </style>

+ 110 - 74
src/xt_pages/dialysis/components/consumablesDialog.vue Parādīt failu

@@ -1,110 +1,146 @@
1 1
 <template>
2
-    <el-dialog
2
+  <el-dialog
3 3
     title="统计表"
4 4
     width="800px"
5 5
     :visible.sync="visible"
6 6
     :before-close="_close"
7
-    >
7
+  >
8 8
     <div>
9
-        <el-date-picker
9
+      <el-date-picker
10 10
         style="width:150px;margin-right:10px"
11 11
         v-model="startTime"
12 12
         type="date"
13 13
         placeholder="选择日期"
14 14
         @change="selectStartime">
15
-        </el-date-picker>
16
-       <el-date-picker
15
+      </el-date-picker>
16
+      <el-date-picker
17 17
         style="width:150px;margin-right:10px"
18 18
         v-model="endTime"
19 19
         type="date"
20 20
         placeholder="选择日期"
21 21
         @change="selectEndtime">
22
-        </el-date-picker>
23
-        <el-button icon="el-icon-printer" type="primary" @click="toPrint">打印</el-button>
24
-        
22
+      </el-date-picker>
23
+      <el-button icon="el-icon-printer" type="primary" @click="toPrint">打印</el-button>
24
+
25 25
     </div>
26 26
     <div style="margin-top:10px;">
27
-        <el-table :data="tableData" border style="width: 100%" height="100%">
28
-            <el-table-column align="center" prop="date" label="商品类型" width="180">
29
-                <template slot-scope="scope">
30
-                     {{scope.row.type_name}}
31
-                </template>
32
-            </el-table-column>
33
-            <el-table-column align="center" prop="name" label="规格名称" width="180">
34
-                <template slot-scope="scope">
35
-                    {{scope.row.specification_name}}
36
-                </template>
37
-            </el-table-column>
38
-            <el-table-column align="center" prop="address" label="数量">
39
-               <template slot-scope="scope">
40
-                  {{scope.row.count}}
41
-              </template>
42
-            </el-table-column>
43
-        </el-table>
27
+      <el-table :data="tableData" border style="width: 100%" height="100%">
28
+        <el-table-column align="center" prop="date" label="商品类型" width="180">
29
+          <template slot-scope="scope">
30
+            {{scope.row.good_type_name}}
31
+          </template>
32
+        </el-table-column>
33
+        <el-table-column align="center" prop="name" label="规格名称" width="180">
34
+          <template slot-scope="scope">
35
+            {{scope.row.good_name}}
36
+          </template>
37
+        </el-table-column>
38
+        <el-table-column align="center" prop="address" label="数量">
39
+          <template slot-scope="scope">
40
+            {{scope.row.count}}
41
+          </template>
42
+        </el-table-column>
43
+      </el-table>
44 44
     </div>
45 45
   </el-dialog>
46 46
 </template>
47 47
 
48 48
 
49
-
50 49
 <script>
51
-const moment = require('moment')
52
-import {getWareHouseOutList} from "@/api/consumable"
53
-import { parseTime } from "@/utils";
54
-export default {
55
-    data(){
56
-        return{
57
-            visible: false,
58
-            startTime: moment(new Date()).add('year',0).format("YYYY-MM-DD"),
59
-            endTime:   moment(new Date()).add('year',0).format("YYYY-MM-DD"),
60
-            schedulArr: [
61
-                {value: 0, label: '全部班'},
62
-                {value: 1, label: '上午'},
63
-                {value: 2, label: '中午'},
64
-                {value: 3, label: '下午'},
65
-            ],
66
-            schedulType: 0,
67
-            partitionArr:[],
68
-            partitionType: 0,
69
-            tableData: [],
70
-            start_time:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
71
-            end_time:moment(new Date()).add('year',0).format("YYYY-MM-DD")
72
-        }
73
-    },
74
-    created(){
75
-       //统计今日出库的耗材
76
-       this.getlist()
50
+  const moment = require('moment')
51
+  import { GetDialysisGoodStatistics } from '@/api/dialysis'
52
+  import { parseTime } from '@/utils'
53
+
54
+  export default {
55
+    props: {
56
+      list: Array
77 57
     },
78
-    methods:{
79
-        _close: function(done) {
80
-            done();
81
-        },
82
-        show() {
83
-            this.visible = true;
58
+    data() {
59
+      return {
60
+        query:{
61
+          start_time: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
62
+          end_time:moment(new Date()).add('year', 0).format('YYYY-MM-DD')
84 63
         },
85
-       getlist(){
86
-         var params = {
87
-            start_time:this.startTime,
88
-            end_time:this.endTime 
64
+        visible: false,
65
+        startTime: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
66
+        endTime: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
67
+        schedulArr: [
68
+          { value: 0, label: '全部班' },
69
+          { value: 1, label: '上午' },
70
+          { value: 2, label: '中午' },
71
+          { value: 3, label: '下午' }
72
+        ],
73
+
74
+        schedulType: 0,
75
+        partitionArr: [],
76
+        partitionType: 0,
77
+        tableData: [],
78
+        start_time: moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
79
+        end_time: moment(new Date()).add('year', 0).format('YYYY-MM-DD')
80
+      }
81
+    },
82
+    created() {
83
+      //统计今日出库的耗材
84
+
85
+    },
86
+    methods: {
87
+      calCount(query_warehouseout_info) {
88
+        let total = 0
89
+        var array = []
90
+        array = query_warehouseout_info
91
+        for (let i = 0; i < array.length; i++) {
92
+          total = total + array[i].count
93
+        }
94
+        return total
95
+
96
+      },
97
+      GetDialysisGoodStatistics(){
98
+        GetDialysisGoodStatistics(this.query).then(response => {
99
+          if (response.data.state == 0) {
100
+            this.$message.error(response.data.msg)
101
+            return false
102
+          } else {
103
+            this.tableData = []
104
+            for (let i = 0; i < response.data.data.stock_out.length; i++) {
105
+              let obj = {
106
+                good_name: response.data.data.stock_out[i].specification_name,
107
+                good_type_name: response.data.data.stock_out[i].type.type_name,
108
+                count:this.calCount(response.data.data.stock_out[i].query_warehouseout_info)
109
+              }
110
+              this.tableData.push(obj)
111
+            }
112
+
89 113
           }
90
-        getWareHouseOutList(params).then(response=>{
91
-           if(response.data.state == 1){
92
-             var wareoutlist = response.data.data.wareoutlist
93
-             console.log("wareoutlist",wareoutlist)
94
-             this.tableData = wareoutlist
95
-           }
114
+
115
+
96 116
         })
97
-       },
98
-      selectStartime(){
117
+      },
118
+
119
+      _close: function(done) {
120
+        done()
121
+      },
122
+      show() {
123
+        this.GetDialysisGoodStatistics()
124
+
125
+        this.visible = true
126
+      },
127
+
128
+      selectStartime() {
99 129
         this.start_time = parseTime(this.startTime, '{y}-{m}-{d}')
130
+        this.query.start_time = parseTime(this.startTime, '{y}-{m}-{d}')
131
+        this.GetDialysisGoodStatistics()
132
+
100 133
       },
101
-      selectEndtime(){
134
+      selectEndtime() {
102 135
         this.end_time = parseTime(this.endTime, '{y}-{m}-{d}')
136
+        this.query.end_time = parseTime(this.endTime, '{y}-{m}-{d}')
137
+        this.GetDialysisGoodStatistics()
138
+
103 139
       },
104
-      toPrint(){
105
-        this.$router.push("/dialysis/consumables_print?startime="+this.start_time+"&endtime="+this.end_time)
140
+      toPrint() {
141
+        this.$router.push('/dialysis/consumables_print?startime=' + this.start_time + '&endtime=' + this.end_time)
106 142
       }
107 143
 
108 144
     }
109
-}
145
+  }
110 146
 </script>

+ 54 - 9
src/xt_pages/dialysis/consumables_print.vue Parādīt failu

@@ -12,11 +12,14 @@
12 12
             <div id="print_content">
13 13
                 <div class="print_main_content">
14 14
                     <div class="order_title_panl">
15
-                        <span class="main_title">透析参数统计表</span>
15
+                        <span class="main_title">耗材统计表</span>
16 16
                     </div>
17 17
                     <div style="display:flex;justify-content: space-between;margin-bottom:10px;">
18
-                        <p>统计时间:{{start_time}} - {{end_time}}</p>
18
+                        <p>统计时间:{{query.start_time}} - {{query.end_time}}</p>
19 19
                     </div>
20
+                  <div style="display:flex;justify-content: space-between;margin-bottom:10px;">
21
+                    <p>印单日期:{{print_time}}</p>
22
+                  </div>
20 23
                     <div class="table_panel">
21 24
                         <table class="table">
22 25
                             <thead>
@@ -30,13 +33,15 @@
30 33
                             <tbody>
31 34
                                 <tr v-for='(item,index) in this.tableData' :key="index">
32 35
                                     <td>{{index + 1}}</td>
33
-                                    <td>{{item.type_name}}</td>
34
-                                    <td>{{item.specification_name}}</td>
36
+                                    <td>{{item.good_type_name}}</td>
37
+                                    <td>{{item.good_name}}</td>
35 38
                                     <td>{{item.count}}</td>
36 39
                                 </tr>
37 40
                             </tbody>
38 41
                         </table>
39 42
                     </div>
43
+
44
+
40 45
                 </div>
41 46
             </div>
42 47
         </div>
@@ -46,14 +51,22 @@
46 51
 <script>
47 52
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
48 53
 import print from 'print-js'
54
+const moment = require('moment')
55
+
49 56
 import {getWareHouseOutList} from "@/api/consumable"
50 57
 import { parseTime } from "@/utils";
58
+import { GetDialysisGoodStatistics } from '@/api/dialysis'
59
+
51 60
 export default {
52 61
     components:{
53 62
         BreadCrumb
54 63
     },
55 64
     data(){
56 65
         return{
66
+          query:{
67
+            start_time:0,
68
+            end_time:0
69
+          },
57 70
             crumbs: [
58 71
                 { path: false, name: '耗材药品' },
59 72
                 { path: false, name: '药品打印' }
@@ -61,9 +74,41 @@ export default {
61 74
             start_time:"",
62 75
             end_time:"",
63 76
             tableData:[],
64
-        }  
77
+           print_time:moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
78
+        }
65 79
     },
66 80
     methods:{
81
+      calCount(query_warehouseout_info) {
82
+        let total = 0
83
+        var array = []
84
+        array = query_warehouseout_info
85
+        for (let i = 0; i < array.length; i++) {
86
+          total = total + array[i].count
87
+        }
88
+        return total
89
+
90
+      },
91
+      GetDialysisGoodStatistics(){
92
+        GetDialysisGoodStatistics(this.query).then(response => {
93
+          if (response.data.state == 0) {
94
+            this.$message.error(response.data.msg)
95
+            return false
96
+          } else {
97
+            this.tableData = []
98
+            for (let i = 0; i < response.data.data.stock_out.length; i++) {
99
+              let obj = {
100
+                good_name: response.data.data.stock_out[i].specification_name,
101
+                good_type_name: response.data.data.stock_out[i].type.type_name,
102
+                count:this.calCount(response.data.data.stock_out[i].query_warehouseout_info)
103
+              }
104
+              this.tableData.push(obj)
105
+            }
106
+
107
+          }
108
+
109
+
110
+        })
111
+      },
67 112
         printAction: function() {
68 113
             const style = '@media print { .print_main_content { background-color: white; width:960px;  margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 20px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 18px; padding: 10px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
69 114
 
@@ -78,7 +123,7 @@ export default {
78 123
         getlist(){
79 124
          var params = {
80 125
             start_time:this.start_time,
81
-            end_time:this.end_time 
126
+            end_time:this.end_time
82 127
           }
83 128
         getWareHouseOutList(params).then(response=>{
84 129
            if(response.data.state == 1){
@@ -91,10 +136,10 @@ export default {
91 136
     },
92 137
     created(){
93 138
       var startime = this.$route.query.startime
94
-       this.start_time = startime
139
+       this.query.start_time = startime
95 140
       var endtime =  this.$route.query.endtime
96
-      this.end_time = endtime
97
-      this.getlist()
141
+      this.query.end_time = endtime
142
+      this.GetDialysisGoodStatistics()
98 143
     }
99 144
 }
100 145
 </script>

+ 243 - 243
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Parādīt failu

@@ -482,265 +482,265 @@
482 482
           <!--          </el-col>-->
483 483
 
484 484
           <!--透析耗材-->
485
-          <el-col
486
-            :span="8"
487
-            v-if="isShows('血液透析干粉') && config.is_open == 1"
488
-          >
489
-            <el-form-item label="血液透析干粉:">
490
-              <el-select
491
-                v-model="dialysisPrescription.niprocart"
492
-                placeholder="请选择"
493
-              >
494
-                <el-option :key="0" label="请选择" :value="0"></el-option>
495
-                <el-option
496
-                  v-for="(option, index) in niprocart_info"
497
-                  :key="index + 'p'"
498
-                  :label="option.GoodInfo.specification_name"
499
-                  :value="option.GoodInfo.id"
500
-                ></el-option>
501
-              </el-select>
502
-            </el-form-item>
503
-          </el-col>
504
-
505
-          <el-col
506
-            :span="8"
507
-            v-if="isShows('一次性使用动静脉穿刺针') && config.is_open == 1"
508
-          >
509
-            <el-form-item label="一次性使用动静脉穿刺针:">
510
-              <el-select
511
-                v-model="dialysisPrescription.jms"
512
-                placeholder="请选择"
513
-              >
514
-                <el-option :key="0" label="请选择" :value="0"></el-option>
515
-
516
-                <el-option
517
-                  v-for="(option, index) in jms_info"
518
-                  :key="index + 'a'"
519
-                  :label="option.GoodInfo.specification_name"
520
-                  :value="option.GoodInfo.id"
521
-                ></el-option>
522
-              </el-select>
523
-            </el-form-item>
524
-          </el-col>
525
-
526
-          <el-col
527
-            :span="8"
528
-            v-if="isShows('内瘘管翼状针') && config.is_open == 1"
529
-          >
530
-            <el-form-item label="内瘘管翼状针:">
531
-              <el-select
532
-                v-model="dialysisPrescription.fistula_needle_set"
533
-                placeholder="请选择"
534
-              >
535
-                <el-option :key="0" label="请选择" :value="0"></el-option>
536
-
537
-                <el-option
538
-                  v-for="(option, index) in fistula_needle_set_info"
539
-                  :key="index + 's'"
540
-                  :label="option.GoodInfo.specification_name"
541
-                  :value="option.GoodInfo.id"
542
-                ></el-option>
543
-              </el-select>
544
-            </el-form-item>
545
-          </el-col>
546
-
547
-          <el-col
548
-            :span="8"
549
-            v-if="isShows('内瘘管翼状针16G') && config.is_open == 1"
550
-          >
551
-            <el-form-item label="内瘘管翼状针16G:">
552
-              <el-select
553
-                v-model="dialysisPrescription.fistula_needle_set_16"
554
-                placeholder="请选择"
555
-              >
556
-                <el-option :key="0" label="请选择" :value="0"></el-option>
557
-
558
-                <el-option
559
-                  v-for="(option, index) in fistula_needle_set_16_info"
560
-                  :key="index + 'd'"
561
-                  :label="option.GoodInfo.specification_name"
562
-                  :value="option.GoodInfo.id"
563
-                ></el-option>
564
-              </el-select>
565
-            </el-form-item>
566
-          </el-col>
567
-
568
-          <el-col
569
-            :span="8"
570
-            v-if="isShows('一次性使用血液灌流器') && config.is_open == 1"
571
-          >
572
-            <el-form-item label="一次性使用血液灌流器:">
573
-              <el-select
574
-                v-model="dialysisPrescription.hemoperfusion"
575
-                placeholder="请选择"
576
-              >
577
-                <el-option :key="0" label="请选择" :value="0"></el-option>
578
-
579
-                <el-option
580
-                  v-for="(option, index) in hemoperfusion_info"
581
-                  :key="index + 'f'"
582
-                  :label="option.GoodInfo.specification_name"
583
-                  :value="option.GoodInfo.id"
584
-                ></el-option>
585
-              </el-select>
586
-            </el-form-item>
587
-          </el-col>
485
+          <!--<el-col-->
486
+            <!--:span="8"-->
487
+            <!--v-if="isShows('血液透析干粉') && config.is_open == 1"-->
488
+          <!--&gt;-->
489
+            <!--<el-form-item label="血液透析干粉:">-->
490
+              <!--<el-select-->
491
+                <!--v-model="dialysisPrescription.niprocart"-->
492
+                <!--placeholder="请选择"-->
493
+              <!--&gt;-->
494
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
495
+                <!--<el-option-->
496
+                  <!--v-for="(option, index) in niprocart_info"-->
497
+                  <!--:key="index + 'p'"-->
498
+                  <!--:label="option.GoodInfo.specification_name"-->
499
+                  <!--:value="option.GoodInfo.id"-->
500
+                <!--&gt;</el-option>-->
501
+              <!--</el-select>-->
502
+            <!--</el-form-item>-->
503
+          <!--</el-col>-->
504
+
505
+          <!--<el-col-->
506
+            <!--:span="8"-->
507
+            <!--v-if="isShows('一次性使用动静脉穿刺针') && config.is_open == 1"-->
508
+          <!--&gt;-->
509
+            <!--<el-form-item label="一次性使用动静脉穿刺针:">-->
510
+              <!--<el-select-->
511
+                <!--v-model="dialysisPrescription.jms"-->
512
+                <!--placeholder="请选择"-->
513
+              <!--&gt;-->
514
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
588 515
 
589
-          <el-col
590
-            :span="8"
591
-            v-if="isShows('空心纤维血液透析器') && config.is_open == 1"
592
-          >
593
-            <el-form-item label="空心纤维血液透析器:">
594
-              <el-select
595
-                v-model="dialysisPrescription.dialyser_sterilised"
596
-                placeholder="请选择"
597
-              >
598
-                <el-option :key="0" label="请选择" :value="0"></el-option>
516
+                <!--<el-option-->
517
+                  <!--v-for="(option, index) in jms_info"-->
518
+                  <!--:key="index + 'a'"-->
519
+                  <!--:label="option.GoodInfo.specification_name"-->
520
+                  <!--:value="option.GoodInfo.id"-->
521
+                <!--&gt;</el-option>-->
522
+              <!--</el-select>-->
523
+            <!--</el-form-item>-->
524
+          <!--</el-col>-->
525
+
526
+          <!--<el-col-->
527
+            <!--:span="8"-->
528
+            <!--v-if="isShows('内瘘管翼状针') && config.is_open == 1"-->
529
+          <!--&gt;-->
530
+            <!--<el-form-item label="内瘘管翼状针:">-->
531
+              <!--<el-select-->
532
+                <!--v-model="dialysisPrescription.fistula_needle_set"-->
533
+                <!--placeholder="请选择"-->
534
+              <!--&gt;-->
535
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
599 536
 
600
-                <el-option
601
-                  v-for="(option, index) in dialyser_sterilised_info"
602
-                  :key="index + 'g'"
603
-                  :label="option.GoodInfo.specification_name"
604
-                  :value="option.GoodInfo.id"
605
-                ></el-option>
606
-              </el-select>
607
-            </el-form-item>
608
-          </el-col>
537
+                <!--<el-option-->
538
+                  <!--v-for="(option, index) in fistula_needle_set_info"-->
539
+                  <!--:key="index + 's'"-->
540
+                  <!--:label="option.GoodInfo.specification_name"-->
541
+                  <!--:value="option.GoodInfo.id"-->
542
+                <!--&gt;</el-option>-->
543
+              <!--</el-select>-->
544
+            <!--</el-form-item>-->
545
+          <!--</el-col>-->
546
+
547
+          <!--<el-col-->
548
+            <!--:span="8"-->
549
+            <!--v-if="isShows('内瘘管翼状针16G') && config.is_open == 1"-->
550
+          <!--&gt;-->
551
+            <!--<el-form-item label="内瘘管翼状针16G:">-->
552
+              <!--<el-select-->
553
+                <!--v-model="dialysisPrescription.fistula_needle_set_16"-->
554
+                <!--placeholder="请选择"-->
555
+              <!--&gt;-->
556
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
609 557
 
610
-          <el-col
611
-            :span="8"
612
-            v-if="isShows('中空纤维透析器') && config.is_open == 1"
613
-          >
614
-            <el-form-item label="中空纤维透析器:">
615
-              <el-select
616
-                v-model="dialysisPrescription.filtryzer"
617
-                placeholder="请选择"
618
-              >
619
-                <el-option :key="0" label="请选择" :value="0"></el-option>
558
+                <!--<el-option-->
559
+                  <!--v-for="(option, index) in fistula_needle_set_16_info"-->
560
+                  <!--:key="index + 'd'"-->
561
+                  <!--:label="option.GoodInfo.specification_name"-->
562
+                  <!--:value="option.GoodInfo.id"-->
563
+                <!--&gt;</el-option>-->
564
+              <!--</el-select>-->
565
+            <!--</el-form-item>-->
566
+          <!--</el-col>-->
567
+
568
+          <!--<el-col-->
569
+            <!--:span="8"-->
570
+            <!--v-if="isShows('一次性使用血液灌流器') && config.is_open == 1"-->
571
+          <!--&gt;-->
572
+            <!--<el-form-item label="一次性使用血液灌流器:">-->
573
+              <!--<el-select-->
574
+                <!--v-model="dialysisPrescription.hemoperfusion"-->
575
+                <!--placeholder="请选择"-->
576
+              <!--&gt;-->
577
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
620 578
 
621
-                <el-option
622
-                  v-for="(option, index) in filtryzer_info"
623
-                  :key="index + 'h'"
624
-                  :label="option.GoodInfo.specification_name"
625
-                  :value="option.GoodInfo.id"
626
-                ></el-option>
627
-              </el-select>
628
-            </el-form-item>
629
-          </el-col>
579
+                <!--<el-option-->
580
+                  <!--v-for="(option, index) in hemoperfusion_info"-->
581
+                  <!--:key="index + 'f'"-->
582
+                  <!--:label="option.GoodInfo.specification_name"-->
583
+                  <!--:value="option.GoodInfo.id"-->
584
+                <!--&gt;</el-option>-->
585
+              <!--</el-select>-->
586
+            <!--</el-form-item>-->
587
+          <!--</el-col>-->
588
+
589
+          <!--<el-col-->
590
+            <!--:span="8"-->
591
+            <!--v-if="isShows('空心纤维血液透析器') && config.is_open == 1"-->
592
+          <!--&gt;-->
593
+            <!--<el-form-item label="空心纤维血液透析器:">-->
594
+              <!--<el-select-->
595
+                <!--v-model="dialysisPrescription.dialyser_sterilised"-->
596
+                <!--placeholder="请选择"-->
597
+              <!--&gt;-->
598
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
630 599
 
631
-          <el-col :span="8" v-if="isShows('透析器') && config.is_open == 1">
632
-            <el-form-item label="透析器:">
633
-              <el-select
634
-                v-model="dialysisPrescription.dialyzers"
635
-                placeholder="请选择"
636
-              >
637
-                <el-option :key="0" label="请选择" :value="0"></el-option>
600
+                <!--<el-option-->
601
+                  <!--v-for="(option, index) in dialyser_sterilised_info"-->
602
+                  <!--:key="index + 'g'"-->
603
+                  <!--:label="option.GoodInfo.specification_name"-->
604
+                  <!--:value="option.GoodInfo.id"-->
605
+                <!--&gt;</el-option>-->
606
+              <!--</el-select>-->
607
+            <!--</el-form-item>-->
608
+          <!--</el-col>-->
609
+
610
+          <!--<el-col-->
611
+            <!--:span="8"-->
612
+            <!--v-if="isShows('中空纤维透析器') && config.is_open == 1"-->
613
+          <!--&gt;-->
614
+            <!--<el-form-item label="中空纤维透析器:">-->
615
+              <!--<el-select-->
616
+                <!--v-model="dialysisPrescription.filtryzer"-->
617
+                <!--placeholder="请选择"-->
618
+              <!--&gt;-->
619
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
638 620
 
639
-                <el-option
640
-                  v-for="(option, index) in dialyzers_info"
641
-                  :key="index + 1"
642
-                  :label="option.GoodInfo.specification_name"
643
-                  :value="option.GoodInfo.id"
644
-                ></el-option>
645
-              </el-select>
646
-            </el-form-item>
647
-          </el-col>
621
+                <!--<el-option-->
622
+                  <!--v-for="(option, index) in filtryzer_info"-->
623
+                  <!--:key="index + 'h'"-->
624
+                  <!--:label="option.GoodInfo.specification_name"-->
625
+                  <!--:value="option.GoodInfo.id"-->
626
+                <!--&gt;</el-option>-->
627
+              <!--</el-select>-->
628
+            <!--</el-form-item>-->
629
+          <!--</el-col>-->
648 630
 
649
-          <el-col :span="8" v-if="isShows('注射器') && config.is_open == 1">
650
-            <el-form-item label="注射器:">
651
-              <el-select
652
-                v-model="dialysisPrescription.injector"
653
-                placeholder="请选择"
654
-              >
655
-                <el-option :key="0" label="请选择" :value="0"></el-option>
631
+          <!--<el-col :span="8" v-if="isShows('透析器') && config.is_open == 1">-->
632
+            <!--<el-form-item label="透析器:">-->
633
+              <!--<el-select-->
634
+                <!--v-model="dialysisPrescription.dialyzers"-->
635
+                <!--placeholder="请选择"-->
636
+              <!--&gt;-->
637
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
656 638
 
657
-                <el-option
658
-                  v-for="(option, index) in injector_info"
659
-                  :key="index + 'j'"
660
-                  :label="option.GoodInfo.specification_name"
661
-                  :value="option.GoodInfo.id"
662
-                ></el-option>
663
-              </el-select>
664
-            </el-form-item>
665
-          </el-col>
639
+                <!--<el-option-->
640
+                  <!--v-for="(option, index) in dialyzers_info"-->
641
+                  <!--:key="index + 1"-->
642
+                  <!--:label="option.GoodInfo.specification_name"-->
643
+                  <!--:value="option.GoodInfo.id"-->
644
+                <!--&gt;</el-option>-->
645
+              <!--</el-select>-->
646
+            <!--</el-form-item>-->
647
+          <!--</el-col>-->
666 648
 
667
-          <el-col
668
-            :span="8"
669
-            v-if="isShows('体外循环血路管') && config.is_open == 1"
670
-          >
671
-            <el-form-item label="体外循环血路管:">
672
-              <el-select
673
-                v-model="dialysisPrescription.bloodlines"
674
-                placeholder="请选择"
675
-              >
676
-                <el-option :key="0" label="请选择" :value="0"></el-option>
649
+          <!--<el-col :span="8" v-if="isShows('注射器') && config.is_open == 1">-->
650
+            <!--<el-form-item label="注射器:">-->
651
+              <!--<el-select-->
652
+                <!--v-model="dialysisPrescription.injector"-->
653
+                <!--placeholder="请选择"-->
654
+              <!--&gt;-->
655
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
677 656
 
678
-                <el-option
679
-                  v-for="(option, index) in bloodlines_info"
680
-                  :key="index + 'k'"
681
-                  :label="option.GoodInfo.specification_name"
682
-                  :value="option.GoodInfo.id"
683
-                ></el-option>
684
-              </el-select>
685
-            </el-form-item>
686
-          </el-col>
657
+                <!--<el-option-->
658
+                  <!--v-for="(option, index) in injector_info"-->
659
+                  <!--:key="index + 'j'"-->
660
+                  <!--:label="option.GoodInfo.specification_name"-->
661
+                  <!--:value="option.GoodInfo.id"-->
662
+                <!--&gt;</el-option>-->
663
+              <!--</el-select>-->
664
+            <!--</el-form-item>-->
665
+          <!--</el-col>-->
666
+
667
+          <!--<el-col-->
668
+            <!--:span="8"-->
669
+            <!--v-if="isShows('体外循环血路管') && config.is_open == 1"-->
670
+          <!--&gt;-->
671
+            <!--<el-form-item label="体外循环血路管:">-->
672
+              <!--<el-select-->
673
+                <!--v-model="dialysisPrescription.bloodlines"-->
674
+                <!--placeholder="请选择"-->
675
+              <!--&gt;-->
676
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
687 677
 
688
-          <el-col
689
-            :span="8"
690
-            v-if="isShows('血液净化补液管路(置换管)') && config.is_open == 1"
691
-          >
692
-            <el-form-item label="血液净化补液管路(置换管):">
693
-              <el-select
694
-                v-model="dialysisPrescription.tubing_hemodialysis"
695
-                placeholder="请选择"
696
-              >
697
-                <el-option :key="0" label="请选择" :value="0"></el-option>
678
+                <!--<el-option-->
679
+                  <!--v-for="(option, index) in bloodlines_info"-->
680
+                  <!--:key="index + 'k'"-->
681
+                  <!--:label="option.GoodInfo.specification_name"-->
682
+                  <!--:value="option.GoodInfo.id"-->
683
+                <!--&gt;</el-option>-->
684
+              <!--</el-select>-->
685
+            <!--</el-form-item>-->
686
+          <!--</el-col>-->
687
+
688
+          <!--<el-col-->
689
+            <!--:span="8"-->
690
+            <!--v-if="isShows('血液净化补液管路(置换管)') && config.is_open == 1"-->
691
+          <!--&gt;-->
692
+            <!--<el-form-item label="血液净化补液管路(置换管):">-->
693
+              <!--<el-select-->
694
+                <!--v-model="dialysisPrescription.tubing_hemodialysis"-->
695
+                <!--placeholder="请选择"-->
696
+              <!--&gt;-->
697
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
698 698
 
699
-                <el-option
700
-                  v-for="(option, index) in tubingHemodialysis_info"
701
-                  :key="index + 'x'"
702
-                  :label="option.GoodInfo.specification_name"
703
-                  :value="option.GoodInfo.id"
704
-                ></el-option>
705
-              </el-select>
706
-            </el-form-item>
707
-          </el-col>
699
+                <!--<el-option-->
700
+                  <!--v-for="(option, index) in tubingHemodialysis_info"-->
701
+                  <!--:key="index + 'x'"-->
702
+                  <!--:label="option.GoodInfo.specification_name"-->
703
+                  <!--:value="option.GoodInfo.id"-->
704
+                <!--&gt;</el-option>-->
705
+              <!--</el-select>-->
706
+            <!--</el-form-item>-->
707
+          <!--</el-col>-->
708 708
 
709
-          <el-col :span="8" v-if="isShows('护理包') && config.is_open == 1">
710
-            <el-form-item label="护理包:">
711
-              <el-select
712
-                v-model="dialysisPrescription.package"
713
-                placeholder="请选择"
714
-              >
715
-                <el-option :key="0" label="请选择" :value="0"></el-option>
709
+          <!--<el-col :span="8" v-if="isShows('护理包') && config.is_open == 1">-->
710
+            <!--<el-form-item label="护理包:">-->
711
+              <!--<el-select-->
712
+                <!--v-model="dialysisPrescription.package"-->
713
+                <!--placeholder="请选择"-->
714
+              <!--&gt;-->
715
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
716 716
 
717
-                <el-option
718
-                  v-for="(option, index) in safe_package_info"
719
-                  :key="index + 'z'"
720
-                  :label="option.GoodInfo.specification_name"
721
-                  :value="option.GoodInfo.id"
722
-                ></el-option>
723
-              </el-select>
724
-            </el-form-item>
725
-          </el-col>
717
+                <!--<el-option-->
718
+                  <!--v-for="(option, index) in safe_package_info"-->
719
+                  <!--:key="index + 'z'"-->
720
+                  <!--:label="option.GoodInfo.specification_name"-->
721
+                  <!--:value="option.GoodInfo.id"-->
722
+                <!--&gt;</el-option>-->
723
+              <!--</el-select>-->
724
+            <!--</el-form-item>-->
725
+          <!--</el-col>-->
726 726
 
727
-          <el-col :span="8" v-if="isShows('A液') && config.is_open == 1">
728
-            <el-form-item label="A液:">
729
-              <el-select
730
-                v-model="dialysisPrescription.a_liquid"
731
-                placeholder="请选择"
732
-              >
733
-                <el-option :key="0" label="请选择" :value="0"></el-option>
727
+          <!--<el-col :span="8" v-if="isShows('A液') && config.is_open == 1">-->
728
+            <!--<el-form-item label="A液:">-->
729
+              <!--<el-select-->
730
+                <!--v-model="dialysisPrescription.a_liquid"-->
731
+                <!--placeholder="请选择"-->
732
+              <!--&gt;-->
733
+                <!--<el-option :key="0" label="请选择" :value="0"></el-option>-->
734 734
 
735
-                <el-option
736
-                  v-for="(option, index) in aliquid_info"
737
-                  :key="index + 'c'"
738
-                  :label="option.GoodInfo.specification_name"
739
-                  :value="option.GoodInfo.id"
740
-                ></el-option>
741
-              </el-select>
742
-            </el-form-item>
743
-          </el-col>
735
+                <!--<el-option-->
736
+                  <!--v-for="(option, index) in aliquid_info"-->
737
+                  <!--:key="index + 'c'"-->
738
+                  <!--:label="option.GoodInfo.specification_name"-->
739
+                  <!--:value="option.GoodInfo.id"-->
740
+                <!--&gt;</el-option>-->
741
+              <!--</el-select>-->
742
+            <!--</el-form-item>-->
743
+          <!--</el-col>-->
744 744
 
745 745
 
746 746
 

+ 99 - 300
src/xt_pages/stock/cancelStockOrderAdd.vue Parādīt failu

@@ -25,14 +25,14 @@
25 25
     </div>
26 26
 
27 27
     <div class="app-container">
28
-      <sales-return-dialog
28
+
29
+      <stock-in-dialog
29 30
         ref="dialog"
30 31
         :propForm="propForm"
31 32
         :visibility="isVisibility"
32 33
         v-on:dialog-comfirm="comfirm"
33 34
         v-on:dialog-cancle="cancle"
34
-      ></sales-return-dialog>
35
-
35
+      ></stock-in-dialog>
36 36
       <div class="filter-container">
37 37
         <div class="cell clearfix">
38 38
           <label class="title"><span class="name">退库时间</span> : </label>
@@ -192,12 +192,12 @@
192 192
 
193 193
 <script>
194 194
 import { uParseTime } from "@/utils/tools";
195
-import { getCancelStockConfig, postCancelStock } from "@/api/stock";
196
-import SalesReturnDialog from "./Dialog/salesReturnDialog";
195
+import { getCancelStockConfig, postCancelStock,GetAllConfig,GetAllGoodInfoByID } from "@/api/stock";
197 196
 import BreadCrumb from "../components/bread-crumb";
197
+import StockInDialog from './Dialog/stockInDialog'
198 198
 
199 199
 export default {
200
-  components: { BreadCrumb, SalesReturnDialog },
200
+  components: { StockInDialog, BreadCrumb },
201 201
   name: "salesReturnOrderAdd",
202 202
 
203 203
   data() {
@@ -247,37 +247,35 @@ export default {
247 247
       warehouseOutInfoList: [],
248 248
       manufacturer: [],
249 249
       dealer: [],
250
-      goodType: []
250
+      goodType: [],
251
+      goodInfo:[],
251 252
     };
252 253
   },
253 254
   methods: {
254 255
     comfirm: function(val) {
255
-      this.$refs.dialog.hide();
256
+      this.propForm.goodType = []
257
+      this.propForm.goods = []
258
+
259
+      this.$refs.dialog.hide()
256 260
       if (val.selectedGoodInfo.length > 0) {
257
-        for (let i = val.selectedGoodInfo.length - 1; ; i--) {
261
+        for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
258 262
           if (i == 0) {
259
-            this.recordInfo.recordData[this.currentIndex].good_type_id =
260
-              val.goodTypeId;
261
-            this.recordInfo.recordData[this.currentIndex].good_id =
262
-              val.selectedGoodInfo[i].id;
263
+            this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
264
+            this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
265
+
263 266
           } else {
264
-            const tempForm = {};
265
-            tempForm["good_type_id"] = val.goodTypeId;
266
-            tempForm["good_id"] = val.selectedGoodInfo[i].id;
267
+            const tempForm = {}
268
+            tempForm['good_type_id'] =val.selectedGoodInfo[i].good_type_id
269
+            tempForm['good_id'] = val.selectedGoodInfo[i].id
267 270
             tempForm["return_count"] = "";
268
-            this.recordInfo.recordData.splice(
269
-              this.currentIndex + 1,
270
-              0,
271
-              tempForm
272
-            );
271
+            this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
273 272
           }
274 273
         }
275 274
       }
275
+      this.currentIndex = -1
276 276
 
277
-      this.propForm.goodType = [];
278
-
279
-      this.currentIndex = -1;
280 277
     },
278
+
281 279
     cancle: function() {
282 280
       this.$refs.dialog.hide();
283 281
       this.propForm.goodType = [];
@@ -285,87 +283,32 @@ export default {
285 283
     GetConfigInfo: function() {
286 284
       const loading = this.$loading({
287 285
         lock: true,
288
-        text: "Loading",
289
-        spinner: "el-icon-loading",
290
-        background: "rgba(0, 0, 0, 0.7)"
291
-      });
286
+        text: 'Loading',
287
+        spinner: 'el-icon-loading',
288
+        background: 'rgba(0, 0, 0, 0.7)'
289
+      })
292 290
 
293
-      const params = {
294
-        type: this.$route.query.type
295
-      };
296
-      getCancelStockConfig(params).then(response => {
291
+      GetAllConfig().then(response => {
297 292
         if (response.data.state == 0) {
298
-          loading.close();
299
-          this.$message.error(response.data.msg);
300
-          return false;
293
+          this.$message.error(response.data.msg)
294
+          return false
301 295
         } else {
302
-          loading.close();
303
-          var warehouseOutInfoList = response.data.data.warehouseOutInfoList;
304
-          this.warehouseOutInfoList = response.data.data.warehouseOutInfoList;
305
-          for (let i = 0; i < warehouseOutInfoList.length; i++) {
306
-            if (warehouseOutInfoList[i].info.manufacturers.id > 0) {
307
-              this.manufacturer.push(
308
-                warehouseOutInfoList[i].info.manufacturers
309
-              );
310
-            }
311
-            if (warehouseOutInfoList[i].info.dealers.id > 0) {
312
-              this.dealer.push(warehouseOutInfoList[i].info.dealers);
313
-            }
314
-          }
315
-          for (let i = 0; i < warehouseOutInfoList.length; i++) {
316
-            this.goodType.push(warehouseOutInfoList[i].info.type);
317
-          }
318
-          for (let i = 0; i < warehouseOutInfoList.length; i++) {
319
-            this.propForm.goodType.push(warehouseOutInfoList[i].info.type);
320
-          }
321
-
322
-          for (let i = 0; i < warehouseOutInfoList.length; i++) {
323
-            this.propForm.goodInfo.push(warehouseOutInfoList[i].info);
324
-          }
325
-
326
-          const obj = {};
327
-          const obj2 = {};
328
-          const obj3 = {};
329
-          const obj4 = {};
330
-          const obj5 = {};
331
-
332
-          // 去重复
333
-          this.manufacturer = this.manufacturer.reduce((cur, next) => {
334
-            obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
335
-            return cur;
336
-          }, []);
337
-          // 去重复
338
-          this.dealer = this.dealer.reduce((cur, next) => {
339
-            obj2[next.id] ? "" : (obj2[next.id] = true && cur.push(next));
340
-            return cur;
341
-          }, []);
342
-          this.goodType = this.goodType.reduce((cur, next) => {
343
-            obj3[next.id] ? "" : (obj3[next.id] = true && cur.push(next));
344
-            return cur;
345
-          }, []);
346
-          this.propForm.goodInfo = this.propForm.goodInfo.reduce(
347
-            (cur, next) => {
348
-              obj4[next.id] ? "" : (obj4[next.id] = true && cur.push(next));
349
-              return cur;
350
-            },
351
-            []
352
-          );
353
-
354
-          this.propForm.goodType = this.propForm.goodType.reduce(
355
-            (cur, next) => {
356
-              obj5[next.id] ? "" : (obj5[next.id] = true && cur.push(next));
357
-              return cur;
358
-            },
359
-            []
360
-          );
361
-
362
-          this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
363
-          this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
364
-          this.form.manufacturer = 0;
365
-          this.form.dealer = 0;
296
+          this.manufacturer = response.data.data.manufacturer
297
+          this.dealer = response.data.data.dealer
298
+          this.goodType = response.data.data.goodType
299
+          this.goodInfo = response.data.data.goodInfo
300
+          this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
301
+          this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
302
+          this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
303
+          this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
304
+          this.form.manufacturer = 0
305
+          this.form.dealer = 0
366 306
         }
367
-      });
307
+        loading.close()
308
+      })
309
+
368 310
     },
311
+
369 312
     typeName: function(good_type_id) {
370 313
       let name = "";
371 314
       for (let i = 0; i < this.goodType.length; i++) {
@@ -376,13 +319,13 @@ export default {
376 319
       return name;
377 320
     },
378 321
     specificationName: function(good_info_id) {
379
-      let name = "";
380
-      for (let i = 0; i < this.propForm.goodInfo.length; i++) {
381
-        if (this.propForm.goodInfo[i].id == good_info_id) {
382
-          name = this.propForm.goodInfo[i].specification_name;
322
+      let name = ''
323
+      for (let i = 0; i < this.goodInfo.length; i++) {
324
+        if (this.goodInfo[i].id == good_info_id) {
325
+          name = this.goodInfo[i].specification_name
383 326
         }
384 327
       }
385
-      return name;
328
+      return name
386 329
     },
387 330
     handleEdit: function(index, row) {
388 331
       const tempObj = {};
@@ -414,216 +357,72 @@ export default {
414 357
       }
415 358
     },
416 359
     showDialog(index, row) {
417
-      this.currentIndex = index;
418
-      this.propForm.goodType = [];
419
-      this.propForm.goods = [];
420
-
421
-      if (this.form.manufacturer == -1 && this.form.dealer == -1) {
422
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
423
-          if (
424
-            this.warehouseOutInfoList[i].info.dealers.id == 0 &&
425
-            this.warehouseOutInfoList[i].info.manufacturers.id == 0
426
-          ) {
427
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
428
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
429
-          }
430
-        }
431
-      }
432
-
433
-      if (this.form.manufacturer == -1 && this.form.dealer == 0) {
434
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
435
-          if (this.warehouseOutInfoList[i].info.manufacturers.id == 0) {
436
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
437
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
438
-          }
439
-        }
440
-      }
441
-
442
-      if (this.form.manufacturer == -1 && this.form.dealer != 0) {
443
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
444
-          if (
445
-            this.warehouseOutInfoList[i].info.manufacturers.id == 0 &&
446
-            this.warehouseOutInfoList[i].info.dealers.id == this.form.dealer
447
-          ) {
448
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
449
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
450
-          }
451
-        }
452
-      }
453
-
454
-      if (this.form.manufacturer == 0 && this.form.dealer == 0) {
455
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
456
-          this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
457
-          this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
458
-        }
459
-      }
460
-
461
-      if (this.form.manufacturer == 0 && this.form.dealer == -1) {
462
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
463
-          if (this.warehouseOutInfoList[i].info.dealers.id == 0) {
464
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
465
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
466
-          }
467
-        }
360
+      const loading = this.$loading({
361
+        lock: true,
362
+        text: 'Loading',
363
+        spinner: 'el-icon-loading',
364
+        background: 'rgba(0, 0, 0, 0.7)'
365
+      })
366
+      this.currentIndex = index
367
+      this.isVisibility = true
368
+      const params = {
369
+        manufacturer_id: this.form.manufacturer,
370
+        dealer_id: this.form.dealer
468 371
       }
372
+      GetAllGoodInfoByID(params).then(response => {
373
+          if (response.data.state == 0) {
374
+            this.$message.error(response.data.msg)
375
+            return false
376
+            loading.close()
469 377
 
470
-      if (this.form.manufacturer != 0 && this.form.dealer == -1) {
471
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
472
-          if (
473
-            this.warehouseOutInfoList[i].info.dealers.id == 0 &&
474
-            this.warehouseOutInfoList[i].info.manufacturers.id ==
475
-              this.form.manufacturer
476
-          ) {
477
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
478
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
479
-          }
480
-        }
481
-      }
378
+          } else {
379
+            loading.close()
482 380
 
483
-      if (this.form.manufacturer != 0 && this.form.dealer != 0) {
484
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
485
-          if (
486
-            this.warehouseOutInfoList[i].info.manufacturers.id ==
487
-              this.form.manufacturer &&
488
-            this.warehouseOutInfoList[i].info.dealers.id == this.form.dealer
489
-          ) {
490
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
491
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
381
+            if (response.data.data.goodInfo.length <= 0) {
382
+              this.$message.error('该厂商或经销商没有物品信息')
383
+              return
384
+            }
385
+            this.$refs.dialog.show()
386
+            for (let i = 0; i < response.data.data.goodInfo.length; i++) {
387
+              this.propForm.goodType.push(response.data.data.goodInfo[i].GoodsType)
388
+            }
389
+            const obj = {}
390
+            this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
391
+              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
392
+              return cur
393
+            }, []) // 设置cur默认类型为数组,并且初始值为空的数组
492 394
           }
493
-        }
494
-      }
495 395
 
496
-      if (this.form.manufacturer == 0 && this.form.dealer != 0) {
497
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
498
-          if (
499
-            this.warehouseOutInfoList[i].info.dealers.id == this.form.dealer
500
-          ) {
501
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
502
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
503
-          }
504
-        }
505
-      }
506
-      if (this.form.manufacturer != 0 && this.form.dealer == 0) {
507
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
508
-          if (
509
-            this.warehouseOutInfoList[i].info.manufacturers.id ==
510
-            this.form.manufacturer
511
-          ) {
512
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type);
513
-            this.propForm.goodInfo.push(this.warehouseOutInfoList[i].info);
514
-          }
515
-        }
516
-      }
396
+          for (let i = 0; i < this.propForm.goodType.length; i++) {
397
+            let goodInfo = []
398
+            let goodObj = {}
517 399
 
518
-      // if (this.form.manufacturer == 0 && this.form.dealer == 0) {
519
-      //   for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
520
-      //     this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type)
521
-      //   }
522
-      //   const obj3 = {}
523
-      //   this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
524
-      //     obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
525
-      //     return cur
526
-      //   }, [])
527
-      //
528
-      // } else {
529
-      //   if(this.form.manufacturer == 0 && this.form.dealer != 0){
530
-      //     for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
531
-      //       if(this.warehouseOutInfoList[i].info.dealers.id == this.form.dealer){
532
-      //         this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type)
533
-      //       }
534
-      //     }
535
-      //   }
536
-      //   if(this.form.manufacturer != 0 && this.form.dealer == 0){
537
-      //     for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
538
-      //       if(this.warehouseOutInfoList[i].info.manufacturers.id == this.form.manufacturer){
539
-      //         this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type)
540
-      //       }
541
-      //     }
542
-      //   }
543
-      //   if(this.form.manufacturer != 0 && this.form.dealer != 0){
544
-      //     for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
545
-      //       if(this.warehouseOutInfoList[i].info.dealers.id == this.form.dealer && this.warehouseOutInfoList[i].info.manufacturers.id == this.form.manufacturer){
546
-      //         this.propForm.goodType.push(this.warehouseOutInfoList[i].info.type)
547
-      //       }
548
-      //     }
549
-      //   }
550
-      //   const obj3 = {}
551
-      //   this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
552
-      //     obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
553
-      //     return cur
554
-      //   }, [])
555
-      // }
556
-
557
-      const obj3 = {};
558
-      this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
559
-        obj3[next.id] ? "" : (obj3[next.id] = true && cur.push(next));
560
-        return cur;
561
-      }, []);
562
-      const obj4 = {};
563
-      this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
564
-        obj4[next.id] ? "" : (obj4[next.id] = true && cur.push(next));
565
-        return cur;
566
-      }, []);
567
-
568
-      for (let i = 0; i < this.propForm.goodType.length; i++) {
569
-        let goodInfo = [];
570
-        let goodObj = {};
571
-
572
-        for (let a = 0; a < this.propForm.goodInfo.length; a++) {
573
-          var respObj = this.propForm.goodInfo[a];
574
-          respObj["isSelected"] = false;
575
-          if (
576
-            respObj.type.id == this.propForm.goodType[i].id &&
577
-            respObj.id != 0
578
-          ) {
579
-            console.log(respObj.id);
580
-            goodInfo.push(respObj);
400
+            for (let a = 0; a < response.data.data.goodInfo.length; a++) {
401
+              var respObj = response.data.data.goodInfo[a]
402
+              respObj['isSelected'] = false
403
+              if (respObj.GoodsType.id == this.propForm.goodType[i].id) {
404
+                goodInfo.push(respObj)
405
+              }
406
+            }
407
+            const obj = {}
408
+            goodInfo = goodInfo.reduce((cur, next) => {
409
+              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
410
+              return cur
411
+            }, []) // 设置cur默认类型为数组,并且初始值为空的数组
412
+
413
+            this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
414
+            this.propForm.goods.push(goodObj)
581 415
           }
582 416
         }
583
-        const obj = {};
584
-        goodInfo = goodInfo.reduce((cur, next) => {
585
-          obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
586
-          return cur;
587
-        }, []); // 设置cur默认类型为数组,并且初始值为空的数组
588
-
589
-        if (goodInfo.length != 0) {
590
-          this.$set(goodObj, this.propForm.goodType[i].id, goodInfo);
591
-          this.propForm.goods.push(goodObj);
592
-        }
593
-      }
594
-      console.log(this.propForm.goods);
595
-
596
-      this.$refs.dialog.show();
597
-      // }
598
-
599
-      // this.currentIndex = index
600
-      // if (this.form.manufacturer == '' || this.form.manufacturer == 0) {
601
-      //
602
-      // } else {
603
-      //   this.$refs.dialog.show()
604
-      //
605
-      //   for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
606
-      //     if (this.warehouseOutInfoList[i].manufacturer == this.form.manufacturer) {
607
-      //       this.propForm.goodType.push(this.warehouseOutInfoList[i].GoodInfo.GoodsType)
608
-      //     }
609
-      //   }
610
-      //   const obj3 = {}
611
-      //   this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
612
-      //     obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
613
-      //     return cur
614
-      //   }, [])
615
-      // }
417
+      )
616 418
     },
419
+
617 420
     back() {
618 421
       this.$router.go(-1);
619 422
     },
620 423
     submit() {
621 424
       this.$refs["tableForm"].validate(valid => {
622 425
         if (valid) {
623
-          if (this.form.manufacturer == 0) {
624
-            this.$message.error("厂商不能为空");
625
-            return;
626
-          }
627 426
           const array = this.recordInfo.recordData;
628 427
           let total = 0;
629 428
           for (let i = 0; i < array.length; i++) {

+ 97 - 82
src/xt_pages/stock/cancelStockOrderEdit.vue Parādīt failu

@@ -9,11 +9,12 @@
9 9
       </div>
10 10
     </div>
11 11
     <div class="app-container">
12
-      <sales-return-dialog ref="dialog" :propForm="propForm"
13
-                           :visibility="isVisibility"
14
-                           v-on:dialog-comfirm="comfirm"
15
-                           v-on:dialog-cancle="cancle"></sales-return-dialog>
16
-
12
+      <stock-in-dialog
13
+        ref="dialog" :propForm="propForm"
14
+        :visibility="isVisibility"
15
+        v-on:dialog-comfirm="comfirm"
16
+        v-on:dialog-cancle="cancle"
17
+      ></stock-in-dialog>
17 18
       <div class="cell clearfix">
18 19
 
19 20
         <label class="title"><span class="name">退库时间</span> : </label>
@@ -135,12 +136,12 @@
135 136
 <script>
136 137
   import { uParseTime } from '@/utils/tools'
137 138
 
138
-  import { deleteCancelStockInfo, editCancelStockInfo, getCancelStockConfig, getCancelStockInfo } from '@/api/stock'
139
-  import SalesReturnDialog from './Dialog/salesReturnDialog'
139
+  import { deleteCancelStockInfo, editCancelStockInfo, getCancelStockConfig, getCancelStockInfo,GetAllGoodInfoByID,GetAllConfig  } from '@/api/stock'
140 140
   import BreadCrumb from '../components/bread-crumb'
141
+  import StockInDialog from './Dialog/stockInDialog'
141 142
 
142 143
   export default {
143
-    components: { BreadCrumb, SalesReturnDialog },
144
+    components: { StockInDialog, BreadCrumb },
144 145
     name: 'cancelStockOrderEdit',
145 146
 
146 147
     data() {
@@ -185,10 +186,12 @@
185 186
         // prop
186 187
         isVisibility: false,
187 188
         propForm: {
189
+          goods: [],
188 190
           goodType: [],
189 191
           goodInfo: [],
190 192
           goodUnit: [],
191
-          title: '入库'
193
+          manufacturer: 0,
194
+          dealer: 0
192 195
         },
193 196
 
194 197
         form: {
@@ -199,7 +202,8 @@
199 202
         cancelStock: {},
200 203
         manufacturer: [],
201 204
         dealer: [],
202
-        goodType: []
205
+        goodType: [],
206
+        goodInfo:[],
203 207
       }
204 208
     },
205 209
     methods: {
@@ -209,12 +213,12 @@
209 213
         if (val.selectedGoodInfo.length > 0) {
210 214
           for (let i = val.selectedGoodInfo.length - 1; ; i--) {
211 215
             if (i == 0) {
212
-              this.recordInfo.recordData[this.currentIndex].good_type_id = val.goodTypeId
216
+              this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
213 217
               this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
214 218
             } else {
215 219
               const tempForm = {}
216 220
               tempForm['id'] = 0
217
-              tempForm['good_type_id'] = val.goodTypeId
221
+              tempForm['good_type_id'] =val.selectedGoodInfo[i].good_type_id
218 222
               tempForm['good_id'] = val.selectedGoodInfo[i].id
219 223
               tempForm['count'] = ''
220 224
               this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
@@ -225,75 +229,37 @@
225 229
         this.currentIndex = -1
226 230
       }, cancle: function() {
227 231
         this.$refs.dialog.hide()
228
-      }, GetConfigInfo: function() {
229
-        const params = {
230
-          type: this.$route.query.type
231
-        }
232
+      },
233
+      GetConfigInfo: function() {
232 234
         const loading = this.$loading({
233 235
           lock: true,
234 236
           text: 'Loading',
235 237
           spinner: 'el-icon-loading',
236 238
           background: 'rgba(0, 0, 0, 0.7)'
237 239
         })
238
-        getCancelStockConfig(params).then(response => {
239 240
 
241
+        GetAllConfig().then(response => {
240 242
           if (response.data.state == 0) {
241
-            loading.close()
242 243
             this.$message.error(response.data.msg)
243 244
             return false
244 245
           } else {
245
-            loading.close()
246
-            var warehouseOutInfoList = response.data.data.warehouseOutInfoList
247
-            this.warehouseOutInfoList = response.data.data.warehouseOutInfoList
248
-            for (let i = 0; i < warehouseOutInfoList.length; i++) {
249
-              if (warehouseOutInfoList[i].info.manufacturers.id > 0) {
250
-                this.manufacturer.push(warehouseOutInfoList[i].info.manufacturers)
251
-              }
252
-              if (warehouseOutInfoList[i].info.dealers.id > 0) {
253
-                this.dealer.push(warehouseOutInfoList[i].info.dealers)
254
-              }
255
-            }
256
-            for (let i = 0; i < warehouseOutInfoList.length; i++) {
257
-              this.goodType.push(warehouseOutInfoList[i].info.type)
258
-            }
259
-
260
-
261
-            for (let i = 0; i < warehouseOutInfoList.length; i++) {
262
-              this.propForm.goodInfo.push(warehouseOutInfoList[i].info)
263
-            }
264
-
265
-            const obj = {}
266
-            const obj2 = {}
267
-            const obj3 = {}
268
-            const obj4 = {}
269
-            // 去重复
270
-            this.manufacturer = this.manufacturer.reduce((cur, next) => {
271
-              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
272
-              return cur
273
-            }, [])
274
-            // 去重复
275
-            this.dealer = this.dealer.reduce((cur, next) => {
276
-              obj2[next.id] ? '' : obj2[next.id] = true && cur.push(next)
277
-              return cur
278
-            }, [])
279
-            this.goodType = this.goodType.reduce((cur, next) => {
280
-              obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
281
-              return cur
282
-            }, [])
283
-            this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
284
-              obj4[next.id] ? '' : obj4[next.id] = true && cur.push(next)
285
-              return cur
286
-            }, [])
287
-
246
+            this.manufacturer = response.data.data.manufacturer
247
+            this.dealer = response.data.data.dealer
248
+            this.goodType = response.data.data.goodType
249
+            this.goodInfo = response.data.data.goodInfo
288 250
             this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
289 251
             this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
290
-
291
-
292
-            console.log(this.goodType)
293
-
252
+            this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
253
+            this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
254
+            this.form.manufacturer = 0
255
+            this.form.dealer = 0
294 256
           }
257
+          loading.close()
295 258
         })
296
-      }, typeName: function(good_type_id) {
259
+
260
+      },
261
+
262
+      typeName: function(good_type_id) {
297 263
         let name = ''
298 264
         for (let i = 0; i < this.goodType.length; i++) {
299 265
           if (this.goodType[i].id == good_type_id) {
@@ -301,11 +267,11 @@
301 267
           }
302 268
         }
303 269
         return name
304
-      }, specificationName: function(good_info_id) {
270
+      },  specificationName: function(good_info_id) {
305 271
         let name = ''
306
-        for (let i = 0; i < this.propForm.goodInfo.length; i++) {
307
-          if (this.propForm.goodInfo[i].id == good_info_id) {
308
-            name = this.propForm.goodInfo[i].specification_name
272
+        for (let i = 0; i < this.goodInfo.length; i++) {
273
+          if (this.goodInfo[i].id == good_info_id) {
274
+            name = this.goodInfo[i].specification_name
309 275
           }
310 276
         }
311 277
         return name
@@ -346,20 +312,69 @@
346 312
         } else {
347 313
           return ''
348 314
         }
349
-      }, showDialog(index, row) {
315
+      },
316
+      showDialog(index, row) {
317
+        const loading = this.$loading({
318
+          lock: true,
319
+          text: 'Loading',
320
+          spinner: 'el-icon-loading',
321
+          background: 'rgba(0, 0, 0, 0.7)'
322
+        })
350 323
         this.currentIndex = index
351
-        for (let i = 0; i < this.warehouseOutInfoList.length; i++) {
352
-          if (this.warehouseOutInfoList[i].manufacturer == this.form.manufacturer) {
353
-            this.propForm.goodType.push(this.warehouseOutInfoList[i].GoodInfo.GoodsType)
354
-          }
324
+        this.isVisibility = true
325
+        const params = {
326
+          manufacturer_id: this.form.manufacturer,
327
+          dealer_id: this.form.dealer
355 328
         }
356
-        const obj3 = {}
357
-        this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
358
-          obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
359
-          return cur
360
-        }, [])
361
-        this.$refs.dialog.show()
362
-      }, back() {
329
+        GetAllGoodInfoByID(params).then(response => {
330
+            if (response.data.state == 0) {
331
+              this.$message.error(response.data.msg)
332
+              return false
333
+              loading.close()
334
+
335
+            } else {
336
+              loading.close()
337
+
338
+              if (response.data.data.goodInfo.length <= 0) {
339
+                this.$message.error('该厂商或经销商没有物品信息')
340
+                return
341
+              }
342
+              this.$refs.dialog.show()
343
+              for (let i = 0; i < response.data.data.goodInfo.length; i++) {
344
+                this.propForm.goodType.push(response.data.data.goodInfo[i].GoodsType)
345
+              }
346
+              const obj = {}
347
+              this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
348
+                obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
349
+                return cur
350
+              }, []) // 设置cur默认类型为数组,并且初始值为空的数组
351
+            }
352
+
353
+            for (let i = 0; i < this.propForm.goodType.length; i++) {
354
+              let goodInfo = []
355
+              let goodObj = {}
356
+
357
+              for (let a = 0; a < response.data.data.goodInfo.length; a++) {
358
+                var respObj = response.data.data.goodInfo[a]
359
+                respObj['isSelected'] = false
360
+                if (respObj.GoodsType.id == this.propForm.goodType[i].id) {
361
+                  goodInfo.push(respObj)
362
+                }
363
+              }
364
+              const obj = {}
365
+              goodInfo = goodInfo.reduce((cur, next) => {
366
+                obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
367
+                return cur
368
+              }, []) // 设置cur默认类型为数组,并且初始值为空的数组
369
+
370
+              this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
371
+              this.propForm.goods.push(goodObj)
372
+            }
373
+          }
374
+        )
375
+      },
376
+
377
+      back() {
363 378
         this.$router.go(-1)
364 379
       }, submit() {
365 380
         this.$refs['tableForm'].validate((valid) => {

+ 4 - 28
src/xt_pages/stock/config/goodType.vue Parādīt failu

@@ -76,22 +76,13 @@
76 76
                 placement="top"
77 77
               >
78 78
                 <el-button
79
-                  v-if="scope.row.type == 0"
80 79
                   size="small"
81 80
                   type="primary"
82 81
                   icon="el-icon-edit-outline"
83 82
                   @click="handleEdit(scope.$index, scope.row)"
84 83
                 >
85 84
                 </el-button>
86
-                <el-button
87
-                  v-if="scope.row.type == 1"
88
-                  size="small"
89
-                  type="info"
90
-                  plain
91
-                  icon="el-icon-edit-outline"
92
-                  @click="handleEdit(scope.$index, scope.row)"
93
-                >
94
-                </el-button>
85
+
95 86
               </el-tooltip>
96 87
               <el-tooltip
97 88
                 class="item"
@@ -100,22 +91,13 @@
100 91
                 placement="top"
101 92
               >
102 93
                 <el-button
103
-                  v-if="scope.row.type == 0"
104 94
                   size="small"
105 95
                   type="danger"
106 96
                   icon="el-icon-delete"
107 97
                   @click="handleDelete(scope.$index, scope.row)"
108 98
                 >
109 99
                 </el-button>
110
-                <el-button
111
-                  v-if="scope.row.type == 1"
112
-                  size="small"
113
-                  type="info"
114
-                  plain
115
-                  icon="el-icon-delete"
116
-                  @click="handleDelete(scope.$index, scope.row)"
117
-                >
118
-                </el-button>
100
+
119 101
               </el-tooltip>
120 102
             </template>
121 103
           </el-table-column>
@@ -258,10 +240,7 @@ export default {
258 240
       this.getList();
259 241
     },
260 242
     handleEdit: function(index, row) {
261
-      if (row.type == 1) {
262
-        this.$message.error("该记录为系统配置,无法编辑");
263
-        return;
264
-      }
243
+
265 244
       this.goodType.editTypeId = row.id;
266 245
       this.goodType.editTypeIndex = index;
267 246
       let params = {
@@ -283,10 +262,7 @@ export default {
283 262
       });
284 263
     },
285 264
     handleDelete: function(index, row) {
286
-      if (row.type == 1) {
287
-        this.$message.error("该记录为系统配置,无法删除");
288
-        return;
289
-      }
265
+
290 266
       this.$confirm("确认删除这条商品类型?", "删除商品类型", {
291 267
         confirmButtonText: "确定",
292 268
         cancelButtonText: "取消",

+ 91 - 244
src/xt_pages/stock/salesReturnEdit.vue Parādīt failu

@@ -10,10 +10,17 @@
10 10
 
11 11
   <div class="app-container">
12 12
 
13
-    <sales-return-dialog ref="dialog" :propForm="propForm"
14
-                     :visibility="isVisibility"
15
-                     v-on:dialog-comfirm="comfirm"
16
-                     v-on:dialog-cancle="cancle"></sales-return-dialog>
13
+    <!--<sales-return-dialog ref="dialog" :propForm="propForm"-->
14
+                     <!--:visibility="isVisibility"-->
15
+                     <!--v-on:dialog-comfirm="comfirm"-->
16
+                     <!--v-on:dialog-cancle="cancle"></sales-return-dialog>-->
17
+    <stock-in-dialog
18
+      ref="dialog"
19
+      :propForm="propForm"
20
+      :visibility="isVisibility"
21
+      v-on:dialog-comfirm="comfirm"
22
+      v-on:dialog-cancle="cancle"
23
+    ></stock-in-dialog>
17 24
 
18 25
     <div class="cell clearfix">
19 26
             <label class="title"><span class="name">退货时间</span> : </label>
@@ -137,16 +144,18 @@
137 144
   import { uParseTime } from '@/utils/tools'
138 145
 
139 146
   import {
147
+    GetAllConfig,
140 148
     deleteSalesReturnInfo,
141 149
     getReturnList,
142 150
     getSalesReturnConfig,
143
-    editSalesReturnInfo
151
+    editSalesReturnInfo,
152
+    GetAllGoodInfoByID
144 153
   } from '@/api/stock'
145
-  import SalesReturnDialog from './Dialog/salesReturnDialog'
146 154
   import BreadCrumb from '../components/bread-crumb'
155
+  import StockInDialog from './Dialog/stockInDialog'
147 156
 
148 157
   export default {
149
-    components: { BreadCrumb, SalesReturnDialog },
158
+    components: { StockInDialog, BreadCrumb },
150 159
     name: 'salesReturnEdit',
151 160
 
152 161
     data() {
@@ -224,77 +233,30 @@
224 233
         this.$refs.dialog.hide()
225 234
         this.propForm.goodType = []
226 235
 
227
-      }, GetConfigInfo: function() {
228
-        const params = {
229
-          type: this.$route.query.type
230
-
231
-        }
236
+      },
237
+      GetConfigInfo: function() {
232 238
         const loading = this.$loading({
233 239
           lock: true,
234
-          text: 'Loading',
235
-          spinner: 'el-icon-loading',
236
-          background: 'rgba(0, 0, 0, 0.7)'
237
-        })
238
-        getSalesReturnConfig(params).then(response => {
240
+          text: "Loading",
241
+          spinner: "el-icon-loading",
242
+          background: "rgba(0, 0, 0, 0.7)"
243
+        });
244
+        GetAllConfig().then(response => {
239 245
           if (response.data.state == 0) {
240
-            loading.close()
241
-
242
-            this.$message.error(response.data.msg)
243
-            return false
246
+            this.$message.error(response.data.msg);
247
+            return false;
244 248
           } else {
245
-            loading.close()
246
-
247
-            var warehouseInfoList = response.data.data.warehouseInfoList
248
-            this.warehouseInfoList = response.data.data.warehouseInfoList
249
-            for (let i = 0; i < warehouseInfoList.length; i++) {
250
-              if (warehouseInfoList[i].info.manufacturers.id > 0) {
251
-                this.manufacturer.push(warehouseInfoList[i].info.manufacturers)
252
-              }
253
-              if (warehouseInfoList[i].info.dealers.id > 0) {
254
-                this.dealer.push(warehouseInfoList[i].info.dealers)
255
-              }
256
-            }
257
-
258
-            for (let i = 0; i < this.warehouseInfoList.length; i++) {
259
-              this.goodType.push(this.warehouseInfoList[i].info.type)
260
-            }
261
-
262
-
263
-            for (let i = 0; i < this.warehouseInfoList.length; i++) {
264
-              this.goodInfo.push(this.warehouseInfoList[i].info)
265
-            }
266
-
267
-
268
-            const obj = {}
269
-            const obj2 = {}
270
-            const obj3 = {}
271
-
272
-
273
-            // 去重复
274
-            this.manufacturer = this.manufacturer.reduce((cur, next) => {
275
-              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
276
-              return cur
277
-            }, [])
278
-            // 去重复
279
-            this.dealer = this.dealer.reduce((cur, next) => {
280
-              obj2[next.id] ? '' : obj2[next.id] = true && cur.push(next)
281
-              return cur
282
-            }, [])
283
-
284
-            this.goodType = this.goodType.reduce((cur, next) => {
285
-              obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
286
-              return cur
287
-            }, [])
288
-
289
-            this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
290
-            this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
291
-            this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
292
-            this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
293
-
294
-
249
+            this.manufacturer = response.data.data.manufacturer;
250
+            this.dealer = response.data.data.dealer;
251
+            this.goodType = response.data.data.goodType;
252
+            this.goodInfo = response.data.data.goodInfo;
253
+            this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
254
+            this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
295 255
           }
296
-        })
297
-      }, typeName: function(good_type_id) {
256
+          loading.close();
257
+        });
258
+      },
259
+      typeName: function(good_type_id) {
298 260
         let name = ''
299 261
         for (let i = 0; i < this.goodType.length; i++) {
300 262
           if (this.goodType[i].id == good_type_id) {
@@ -348,185 +310,70 @@
348 310
         } else {
349 311
           return ''
350 312
         }
351
-      }, showDialog(index, row) {
352
-        this.currentIndex = index
353
-        this.propForm.goodType = []
354
-        this.propForm.goods = []
355
-
356
-
357
-        if (this.form.manufacturer == -1 && this.form.dealer == -1) {
358
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
359
-            if (this.warehouseInfoList[i].info.dealers.id == 0 && this.warehouseInfoList[i].info.manufacturers.id == 0) {
360
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
361
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
362
-            }
363
-          }
364
-        }
365
-
366
-        if (this.form.manufacturer == -1 && this.form.dealer == 0) {
367
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
368
-            if (this.warehouseInfoList[i].info.manufacturers.id == 0) {
369
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
370
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
371
-            }
372
-          }
373
-        }
374
-
375
-        if (this.form.manufacturer == -1 && this.form.dealer != 0) {
376
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
377
-            if (this.warehouseInfoList[i].info.manufacturers.id == 0 && this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
378
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
379
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
380
-
381
-            }
382
-          }
383
-        }
384
-
385
-        if (this.form.manufacturer == 0 && this.form.dealer == 0) {
386
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
387
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
388
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
389
-
390
-          }
391
-        }
392
-
393
-        if (this.form.manufacturer == 0 && this.form.dealer == -1) {
394
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
395
-            if (this.warehouseInfoList[i].info.dealers.id == 0) {
396
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
397
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
398
-
399
-            }
400
-          }
401
-        }
402
-
403
-        if (this.form.manufacturer != 0 && this.form.dealer == -1) {
404
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
405
-            if (this.warehouseInfoList[i].info.dealers.id == 0 && this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer) {
406
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
407
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
408
-
409
-            }
410
-          }
411
-        }
412
-
413
-        if (this.form.manufacturer != 0 && this.form.dealer != 0) {
414
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
415
-            if (this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer && this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
416
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
417
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
418
-
419
-            }
420
-          }
421
-        }
422
-
423
-        if (this.form.manufacturer == 0 && this.form.dealer != 0) {
424
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
425
-            if (this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
426
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
427
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
313
+      },
314
+      showDialog(index, row) {
315
+        this.currentIndex = index;
316
+        const loading = this.$loading({
317
+          lock: true,
318
+          text: "Loading",
319
+          spinner: "el-icon-loading",
320
+          background: "rgba(0, 0, 0, 0.7)"
321
+        });
428 322
 
323
+        const params = {
324
+          manufacturer_id: this.form.manufacturer,
325
+          dealer_id: this.form.dealer
326
+        };
327
+        GetAllGoodInfoByID(params).then(response => {
328
+          if (response.data.state == 0) {
329
+            this.$message.error(response.data.msg);
330
+            return false;
331
+          } else {
332
+            if (response.data.data.goodInfo.length <= 0) {
333
+              this.$message.error("该厂商或经销商没有物品信息");
334
+              return;
429 335
             }
430
-          }
431
-        }
432
-        if (this.form.manufacturer != 0 && this.form.dealer == 0) {
433
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
434
-            if (this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer) {
435
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
436
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
336
+            this.$refs.dialog.show();
337
+            for (let i = 0; i < response.data.data.goodInfo.length; i++) {
338
+              this.propForm.goodType.push(
339
+                response.data.data.goodInfo[i].GoodsType
340
+              );
437 341
             }
342
+            const obj = {};
343
+            this.propForm.goodType = this.propForm.goodType.reduce(
344
+              (cur, next) => {
345
+                obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
346
+                return cur;
347
+              },
348
+              []
349
+            ); // 设置cur默认类型为数组,并且初始值为空的数组
438 350
           }
439
-        }
440
-
441
-        const obj3 = {}
442
-        this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
443
-          obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
444
-          return cur
445
-        }, [])
446
-        const obj4 = {}
447
-        this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
448
-          obj4[next.id] ? '' : obj4[next.id] = true && cur.push(next)
449
-          return cur
450
-        }, [])
451
-
452 351
 
352
+          for (let i = 0; i < this.propForm.goodType.length; i++) {
353
+            let goodInfo = [];
354
+            let goodObj = {};
453 355
 
454
-
455
-
456
-        for (let i = 0; i < this.propForm.goodType.length; i++) {
457
-          let goodInfo = []
458
-          let goodObj = {}
459
-
460
-          for (let a = 0; a < this.propForm.goodInfo.length; a++) {
461
-            var respObj = this.propForm.goodInfo[a]
462
-            respObj['isSelected'] = false
463
-            if (respObj.type.id == this.propForm.goodType[i].id) {
464
-              goodInfo.push(respObj)
356
+            for (let a = 0; a < response.data.data.goodInfo.length; a++) {
357
+              var respObj = response.data.data.goodInfo[a];
358
+              respObj["isSelected"] = false;
359
+              if (respObj.GoodsType.id == this.propForm.goodType[i].id) {
360
+                goodInfo.push(respObj);
361
+              }
465 362
             }
363
+            const obj = {};
364
+            goodInfo = goodInfo.reduce((cur, next) => {
365
+              obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
366
+              return cur;
367
+            }, []); // 设置cur默认类型为数组,并且初始值为空的数组
368
+
369
+            this.$set(goodObj, this.propForm.goodType[i].id, goodInfo);
370
+            this.propForm.goods.push(goodObj);
466 371
           }
467
-          const obj = {}
468
-          goodInfo = goodInfo.reduce((cur, next) => {
469
-            obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
470
-            return cur
471
-          }, []) // 设置cur默认类型为数组,并且初始值为空的数组
472
-
473
-          this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
474
-          this.propForm.goods.push(goodObj)
475
-
476
-        }
477
-
478
-
479
-
480
-        // if (this.form.manufacturer == 0 && this.form.dealer == 0) {
481
-        //   for (let i = 0; i < this.warehouseInfoList.length; i++) {
482
-        //     this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
483
-        //   }
484
-        //   const obj3 = {}
485
-        //   this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
486
-        //     obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
487
-        //     return cur
488
-        //   }, [])
489
-        // } else {
490
-        //
491
-        //
492
-        //   if(this.form.manufacturer == 0 && this.form.dealer != 0){
493
-        //
494
-        //     for (let i = 0; i < this.warehouseInfoList.length; i++) {
495
-        //       if(this.warehouseInfoList[i].info.dealers.id == this.form.dealer){
496
-        //         this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
497
-        //       }
498
-        //     }
499
-        //   }
500
-        //   if(this.form.manufacturer != 0 && this.form.dealer == 0){
501
-        //     console.log(this.warehouseInfoList)
502
-        //
503
-        //     for (let i = 0; i < this.warehouseInfoList.length; i++) {
504
-        //       if(this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer){
505
-        //         this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
506
-        //       }
507
-        //     }
508
-        //
509
-        //   }
510
-        //   if(this.form.manufacturer != 0 && this.form.dealer != 0){
511
-        //
512
-        //     for (let i = 0; i < this.warehouseInfoList.length; i++) {
513
-        //       if(this.warehouseInfoList[i].info.dealers.id == this.form.dealer && this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer){
514
-        //         this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
515
-        //       }
516
-        //     }
517
-        //
518
-        //   }
519
-        //   const obj3 = {}
520
-        //   this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
521
-        //     obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
522
-        //     return cur
523
-        //   }, [])
524
-        // }
525
-        this.$refs.dialog.show()
526
-
527
-
528
-
529
-      }, back() {
372
+          console.log(this.propForm)
373
+          loading.close();
374
+        });
375
+      },
376
+      back() {
530 377
         this.$router.go(-1)
531 378
       }, submit() {
532 379
         this.$refs['tableForm'].validate((valid) => {

+ 80 - 179
src/xt_pages/stock/salesReturnOrderAdd.vue Parādīt failu

@@ -12,10 +12,12 @@
12 12
     </div>
13 13
 
14 14
     <div class="app-container">
15
-      <sales-return-dialog ref="dialog" :propForm="propForm"
16
-                           :visibility="isVisibility"
17
-                           v-on:dialog-comfirm="comfirm"
18
-                           v-on:dialog-cancle="cancle"></sales-return-dialog>
15
+      <stock-in-dialog
16
+        ref="dialog" :propForm="propForm"
17
+        :visibility="isVisibility"
18
+        v-on:dialog-comfirm="comfirm"
19
+        v-on:dialog-cancle="cancle"
20
+      ></stock-in-dialog>
19 21
       <div class="cell clearfix">
20 22
         <label class="title"><span class="name">退货时间</span> : </label>
21 23
         <el-date-picker size="small" v-model="return_time" prefix-icon="el-icon-date" :editable="false"
@@ -137,12 +139,13 @@
137 139
 
138 140
 <script>
139 141
   import { uParseTime } from '@/utils/tools'
140
-  import { getSalesReturnConfig, postSalesReturn } from '@/api/stock'
142
+  import { getSalesReturnConfig, postSalesReturn,GetAllGoodInfoByID,GetAllConfig } from '@/api/stock'
141 143
   import SalesReturnDialog from './Dialog/salesReturnDialog'
142 144
   import BreadCrumb from '../components/bread-crumb'
145
+  import StockInDialog from './Dialog/stockInDialog'
143 146
 
144 147
   export default {
145
-    components: { BreadCrumb, SalesReturnDialog },
148
+    components: { StockInDialog, BreadCrumb, SalesReturnDialog },
146 149
     name: 'salesReturnOrderAdd',
147 150
 
148 151
     data() {
@@ -218,10 +221,8 @@
218 221
         this.$refs.dialog.hide()
219 222
         this.propForm.goodType = []
220 223
 
221
-      }, GetConfigInfo: function() {
222
-        const params = {
223
-          type: this.type
224
-        }
224
+      },
225
+      GetConfigInfo: function() {
225 226
         const loading = this.$loading({
226 227
           lock: true,
227 228
           text: 'Loading',
@@ -229,55 +230,27 @@
229 230
           background: 'rgba(0, 0, 0, 0.7)'
230 231
         })
231 232
 
232
-        getSalesReturnConfig(params).then(response => {
233
+        GetAllConfig().then(response => {
233 234
           if (response.data.state == 0) {
234
-            loading.close()
235
-
236 235
             this.$message.error(response.data.msg)
237 236
             return false
238 237
           } else {
239
-            loading.close()
240
-            var warehouseInfoList = response.data.data.warehouseInfoList
241
-            this.warehouseInfoList = response.data.data.warehouseInfoList
242
-            for (let i = 0; i < warehouseInfoList.length; i++) {
243
-              if (warehouseInfoList[i].info.manufacturers.id > 0) {
244
-                this.manufacturer.push(warehouseInfoList[i].info.manufacturers)
245
-              }
246
-              if (warehouseInfoList[i].info.dealers.id > 0) {
247
-                this.dealer.push(warehouseInfoList[i].info.dealers)
248
-              }
249
-            }
250
-
251
-            for (let i = 0; i < this.warehouseInfoList.length; i++) {
252
-              this.goodType.push(this.warehouseInfoList[i].info.type)
253
-            }
254
-            const obj = {}
255
-            const obj2 = {}
256
-            const obj3 = {}
257
-            // 去重复
258
-            this.manufacturer = this.manufacturer.reduce((cur, next) => {
259
-              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
260
-              return cur
261
-            }, [])
262
-            // 去重复
263
-            this.dealer = this.dealer.reduce((cur, next) => {
264
-              obj2[next.id] ? '' : obj2[next.id] = true && cur.push(next)
265
-              return cur
266
-            }, [])
267
-
268
-            this.goodType = this.goodType.reduce((cur, next) => {
269
-              obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
270
-              return cur
271
-            }, [])
272
-            this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
273
-            this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
238
+            this.manufacturer = response.data.data.manufacturer
239
+            this.dealer = response.data.data.dealer
240
+            this.goodType = response.data.data.goodType
241
+            this.goodInfo = response.data.data.goodInfo
274 242
             this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
275 243
             this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
276
-
277
-
244
+            this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
245
+            this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
246
+            this.form.manufacturer = 0
247
+            this.form.dealer = 0
278 248
           }
249
+          loading.close()
279 250
         })
280
-      }, typeName: function(good_type_id) {
251
+
252
+      },
253
+      typeName: function(good_type_id) {
281 254
         let name = ''
282 255
         for (let i = 0; i < this.goodType.length; i++) {
283 256
           if (this.goodType[i].id == good_type_id) {
@@ -287,9 +260,9 @@
287 260
         return name
288 261
       }, specificationName: function(good_info_id) {
289 262
         let name = ''
290
-        for (let i = 0; i < this.propForm.goodInfo.length; i++) {
291
-          if (this.propForm.goodInfo[i].id == good_info_id) {
292
-            name = this.propForm.goodInfo[i].specification_name
263
+        for (let i = 0; i < this.goodInfo.length; i++) {
264
+          if (this.goodInfo[i].id == good_info_id) {
265
+            name = this.goodInfo[i].specification_name
293 266
           }
294 267
         }
295 268
         return name
@@ -319,141 +292,69 @@
319 292
         } else {
320 293
           return ''
321 294
         }
322
-      }, showDialog(index, row) {
295
+      },
296
+      showDialog(index, row) {
297
+        const loading = this.$loading({
298
+          lock: true,
299
+          text: 'Loading',
300
+          spinner: 'el-icon-loading',
301
+          background: 'rgba(0, 0, 0, 0.7)'
302
+        })
323 303
         this.currentIndex = index
324
-        this.propForm.goodType = []
325
-        this.propForm.goods = []
326
-
327
-        //根据选择经销商和厂商过滤商品类型
328
-
329
-        if (this.form.manufacturer == -1 && this.form.dealer == -1) {
330
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
331
-            if (this.warehouseInfoList[i].info.dealers.id == 0 && this.warehouseInfoList[i].info.manufacturers.id == 0) {
332
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
333
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
334
-            }
335
-          }
336
-        }
337
-
338
-        if (this.form.manufacturer == -1 && this.form.dealer == 0) {
339
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
340
-            if (this.warehouseInfoList[i].info.manufacturers.id == 0) {
341
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
342
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
343
-            }
344
-          }
345
-        }
346
-
347
-        if (this.form.manufacturer == -1 && this.form.dealer != 0) {
348
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
349
-            if (this.warehouseInfoList[i].info.manufacturers.id == 0 && this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
350
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
351
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
352
-
353
-            }
354
-          }
355
-        }
356
-
357
-        if (this.form.manufacturer == 0 && this.form.dealer == 0) {
358
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
359
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
360
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
361
-
362
-          }
363
-        }
364
-
365
-        if (this.form.manufacturer == 0 && this.form.dealer == -1) {
366
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
367
-            if (this.warehouseInfoList[i].info.dealers.id == 0) {
368
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
369
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
370
-
371
-            }
372
-          }
373
-        }
374
-
375
-        if (this.form.manufacturer != 0 && this.form.dealer == -1) {
376
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
377
-            if (this.warehouseInfoList[i].info.dealers.id == 0 && this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer) {
378
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
379
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
380
-
381
-            }
382
-          }
383
-        }
384
-
385
-        if (this.form.manufacturer != 0 && this.form.dealer != 0) {
386
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
387
-            if (this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer && this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
388
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
389
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
390
-
391
-            }
392
-          }
304
+        this.isVisibility = true
305
+        const params = {
306
+          manufacturer_id: this.form.manufacturer,
307
+          dealer_id: this.form.dealer
393 308
         }
309
+        GetAllGoodInfoByID(params).then(response => {
310
+            if (response.data.state == 0) {
311
+              this.$message.error(response.data.msg)
312
+              return false
313
+              loading.close()
394 314
 
395
-        if (this.form.manufacturer == 0 && this.form.dealer != 0) {
396
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
397
-            if (this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
398
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
399
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
315
+            } else {
316
+              loading.close()
400 317
 
318
+              if (response.data.data.goodInfo.length <= 0) {
319
+                this.$message.error('该厂商或经销商没有物品信息')
320
+                return
321
+              }
322
+              this.$refs.dialog.show()
323
+              for (let i = 0; i < response.data.data.goodInfo.length; i++) {
324
+                this.propForm.goodType.push(response.data.data.goodInfo[i].GoodsType)
325
+              }
326
+              const obj = {}
327
+              this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
328
+                obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
329
+                return cur
330
+              }, []) // 设置cur默认类型为数组,并且初始值为空的数组
401 331
             }
402
-          }
403
-        }
404
-        if (this.form.manufacturer != 0 && this.form.dealer == 0) {
405
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
406
-            if (this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer) {
407
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
408
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
409
-            }
410
-          }
411
-        }
412 332
 
413
-        const obj3 = {}
414
-        this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
415
-          obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
416
-          return cur
417
-        }, [])
418
-        const obj4 = {}
419
-        this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
420
-          obj4[next.id] ? '' : obj4[next.id] = true && cur.push(next)
421
-          return cur
422
-        }, [])
333
+            for (let i = 0; i < this.propForm.goodType.length; i++) {
334
+              let goodInfo = []
335
+              let goodObj = {}
423 336
 
424
-
425
-
426
-
427
-        for (let i = 0; i < this.propForm.goodType.length; i++) {
428
-          let goodInfo = []
429
-          let goodObj = {}
430
-
431
-          for (let a = 0; a < this.propForm.goodInfo.length; a++) {
432
-            var respObj = this.propForm.goodInfo[a]
433
-            respObj['isSelected'] = false
434
-            if (respObj.type.id == this.propForm.goodType[i].id) {
435
-              goodInfo.push(respObj)
337
+              for (let a = 0; a < response.data.data.goodInfo.length; a++) {
338
+                var respObj = response.data.data.goodInfo[a]
339
+                respObj['isSelected'] = false
340
+                if (respObj.GoodsType.id == this.propForm.goodType[i].id) {
341
+                  goodInfo.push(respObj)
342
+                }
343
+              }
344
+              const obj = {}
345
+              goodInfo = goodInfo.reduce((cur, next) => {
346
+                obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
347
+                return cur
348
+              }, []) // 设置cur默认类型为数组,并且初始值为空的数组
349
+
350
+              this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
351
+              this.propForm.goods.push(goodObj)
436 352
             }
437 353
           }
438
-          const obj = {}
439
-          goodInfo = goodInfo.reduce((cur, next) => {
440
-            obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
441
-            return cur
442
-          }, []) // 设置cur默认类型为数组,并且初始值为空的数组
443
-
444
-          this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
445
-          this.propForm.goods.push(goodObj)
446
-
447
-        }
448
-
449
-
450
-
451
-
452
-
453
-
354
+        )
355
+      },
454 356
 
455
-        this.$refs.dialog.show()
456
-      }, back() {
357
+      back() {
457 358
         this.$router.go(-1)
458 359
       }, submit() {
459 360
         this.$refs['tableForm'].validate((valid) => {

+ 2 - 1
src/xt_pages/stock/stockInOrderAdd.vue Parādīt failu

@@ -482,7 +482,8 @@
482 482
         } else {
483 483
           return ''
484 484
         }
485
-      }, showDialog(index, row) {
485
+      },
486
+      showDialog(index, row) {
486 487
         const loading = this.$loading({
487 488
           lock: true,
488 489
           text: 'Loading',

+ 175 - 195
src/xt_pages/stock/stockOutOrderAdd.vue Parādīt failu

@@ -25,13 +25,24 @@
25 25
     </div>
26 26
 
27 27
     <div class="app-container">
28
-      <sales-return-dialog
29
-        ref="dialog"
30
-        :propForm="propForm"
28
+    <!---->
29
+      <!--<stock-in-dialog-->
30
+        <!--ref="dialog" :propForm="propForm"-->
31
+        <!--:visibility="isVisibility"-->
32
+        <!--v-on:dialog-comfirm="comfirm"-->
33
+        <!--v-on:dialog-cancle="cancle"-->
34
+      <!--&gt;</stock-in-dialog>-->
35
+
36
+      <stock-in-dialog
37
+        ref="dialog" :propForm="propForm"
31 38
         :visibility="isVisibility"
32 39
         v-on:dialog-comfirm="comfirm"
33 40
         v-on:dialog-cancle="cancle"
34
-      ></sales-return-dialog>
41
+      >
42
+
43
+
44
+      </stock-in-dialog>
45
+
35 46
 
36 47
       <div class="cell clearfix">
37 48
         <label class="title"><span class="name">出库时间</span> : </label>
@@ -221,12 +232,13 @@
221 232
 
222 233
 <script>
223 234
 import { uParseTime } from "@/utils/tools";
224
-import { getSalesReturnConfig, postWarehouseOut } from "@/api/stock";
225
-import SalesReturnDialog from "./Dialog/salesReturnDialog";
235
+import { getSalesReturnConfig, postWarehouseOut,GetAllConfig,GetAllGoodInfoByID } from "@/api/stock";
236
+
226 237
 import BreadCrumb from "../components/bread-crumb";
238
+import StockInDialog from './Dialog/stockInDialog'
227 239
 
228 240
 export default {
229
-  components: { BreadCrumb, SalesReturnDialog },
241
+  components: { StockInDialog,  BreadCrumb },
230 242
   name: "salesReturnOrderAdd",
231 243
 
232 244
   data() {
@@ -274,51 +286,78 @@ export default {
274 286
       warehouseInfoList: [],
275 287
       manufacturer: [],
276 288
       dealer: [],
277
-      goodType: []
289
+      goodType: [],
290
+      goodInfo:[]
278 291
     };
279 292
   },
280 293
   methods: {
281 294
     comfirm: function(val) {
282
-      this.$refs.dialog.hide();
283
-      this.propForm.goodType = [];
295
+      this.propForm.goodType = []
296
+      this.propForm.goods = []
297
+
298
+      this.$refs.dialog.hide()
299
+      console.log(val)
284 300
       if (val.selectedGoodInfo.length > 0) {
285 301
         for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
286 302
           if (i == 0) {
287
-            this.recordInfo.recordData[this.currentIndex].good_type_id =
288
-              val.selectedGoodInfo[i].good_type_id;
289
-            this.recordInfo.recordData[this.currentIndex].good_id =
290
-              val.selectedGoodInfo[i].id;
291
-            this.recordInfo.recordData[
292
-              this.currentIndex
293
-            ].price = val.selectedGoodInfo[i].buy_price.toString();
303
+            this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
304
+            this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
305
+            this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].buy_price.toString()
306
+
294 307
           } else {
295
-            console.log(val.selectedGoodInfo[i].buy_price.toString());
296
-            const tempForm = {};
297
-            tempForm["good_type_id"] = val.selectedGoodInfo[i].good_type_id;
298
-            tempForm["good_id"] = val.selectedGoodInfo[i].id;
299
-            tempForm["count"] = "";
300
-            tempForm["price"] = val.selectedGoodInfo[i].buy_price.toString();
301
-            tempForm["remark"] = "";
302
-            this.recordInfo.recordData.splice(
303
-              this.currentIndex + 1,
304
-              0,
305
-              tempForm
306
-            );
308
+            const tempForm = {}
309
+            tempForm['good_type_id'] =val.selectedGoodInfo[i].good_type_id
310
+            tempForm['good_id'] = val.selectedGoodInfo[i].id
311
+            tempForm['count'] = ''
312
+            tempForm['price'] = val.selectedGoodInfo[i].buy_price.toString()
313
+            tempForm['remark'] = ''
314
+            this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
307 315
           }
308 316
         }
309 317
       }
310 318
 
311
-      this.currentIndex = -1;
319
+      this.currentIndex = -1
320
+
321
+      // this.$refs.dialog.hide();
322
+      // this.propForm.goodType = [];
323
+      // if (val.selectedGoodInfo.length > 0) {
324
+      //   for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
325
+      //     if (i == 0) {
326
+      //       this.recordInfo.recordData[this.currentIndex].good_type_id =
327
+      //         val.selectedGoodInfo[i].good_type_id;
328
+      //       this.recordInfo.recordData[this.currentIndex].good_id =
329
+      //         val.selectedGoodInfo[i].id;
330
+      //       this.recordInfo.recordData[
331
+      //         this.currentIndex
332
+      //       ].price = val.selectedGoodInfo[i].buy_price.toString();
333
+      //     } else {
334
+      //       console.log(val.selectedGoodInfo[i].buy_price.toString());
335
+      //       const tempForm = {};
336
+      //       tempForm["good_type_id"] = val.selectedGoodInfo[i].good_type_id;
337
+      //       tempForm["good_id"] = val.selectedGoodInfo[i].id;
338
+      //       tempForm["count"] = "";
339
+      //       tempForm["price"] = val.selectedGoodInfo[i].buy_price.toString();
340
+      //       tempForm["remark"] = "";
341
+      //       this.recordInfo.recordData.splice(
342
+      //         this.currentIndex + 1,
343
+      //         0,
344
+      //         tempForm
345
+      //       );
346
+      //     }
347
+      //   }
348
+      // }
349
+      //
350
+      // this.currentIndex = -1;
312 351
     },
313 352
     cancle: function() {
314 353
       this.$refs.dialog.hide();
315 354
       this.propForm.goodType = [];
355
+      this.propForm.goods = []
356
+
316 357
     },
317 358
     GetConfigInfo: function() {
318
-      const params = {
319
-        type: this.$route.query.type
320
-      };
321
-      getSalesReturnConfig(params).then(response => {
359
+
360
+      GetAllConfig().then(response => {
322 361
         const loading = this.$loading({
323 362
           lock: true,
324 363
           text: "Loading",
@@ -331,42 +370,54 @@ export default {
331 370
           return false;
332 371
         } else {
333 372
           loading.close();
334
-          var warehouseInfoList = response.data.data.warehouseInfoList;
335
-          this.warehouseInfoList = response.data.data.warehouseInfoList;
336
-          for (let i = 0; i < warehouseInfoList.length; i++) {
337
-            if (warehouseInfoList[i].info.manufacturers.id > 0) {
338
-              this.manufacturer.push(warehouseInfoList[i].info.manufacturers);
339
-            }
340
-            if (warehouseInfoList[i].info.dealers.id > 0) {
341
-              this.dealer.push(warehouseInfoList[i].info.dealers);
342
-            }
343
-          }
344
-
345
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
346
-            this.goodType.push(this.warehouseInfoList[i].info.type);
347
-          }
348
-
349
-          const obj = {};
350
-          const obj2 = {};
351
-          const obj3 = {};
352
-          // 去重复
353
-          this.manufacturer = this.manufacturer.reduce((cur, next) => {
354
-            obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
355
-            return cur;
356
-          }, []);
357
-          // 去重复
358
-          this.dealer = this.dealer.reduce((cur, next) => {
359
-            obj2[next.id] ? "" : (obj2[next.id] = true && cur.push(next));
360
-            return cur;
361
-          }, []);
362
-
363
-          this.goodType = this.goodType.reduce((cur, next) => {
364
-            obj3[next.id] ? "" : (obj3[next.id] = true && cur.push(next));
365
-            return cur;
366
-          }, []);
367
-
368
-          this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
369
-          this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
373
+          // var warehouseInfoList = response.data.data.warehouseInfoList;
374
+          // this.warehouseInfoList = response.data.data.warehouseInfoList;
375
+          // for (let i = 0; i < warehouseInfoList.length; i++) {
376
+          //   if (warehouseInfoList[i].info.manufacturers.id > 0) {
377
+          //     this.manufacturer.push(warehouseInfoList[i].info.manufacturers);
378
+          //   }
379
+          //   if (warehouseInfoList[i].info.dealers.id > 0) {
380
+          //     this.dealer.push(warehouseInfoList[i].info.dealers);
381
+          //   }
382
+          // }
383
+          //
384
+          // for (let i = 0; i < this.warehouseInfoList.length; i++) {
385
+          //   this.goodType.push(this.warehouseInfoList[i].info.type);
386
+          // }
387
+
388
+
389
+          this.manufacturer = response.data.data.manufacturer
390
+          this.dealer = response.data.data.dealer
391
+          this.goodType = response.data.data.goodType
392
+          this.goodInfo = response.data.data.goodInfo
393
+          this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
394
+          this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
395
+          this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
396
+          this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
397
+
398
+
399
+
400
+          // const obj = {};
401
+          // const obj2 = {};
402
+          // const obj3 = {};
403
+          // // 去重复
404
+          // this.manufacturer = this.manufacturer.reduce((cur, next) => {
405
+          //   obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
406
+          //   return cur;
407
+          // }, []);
408
+          // // 去重复
409
+          // this.dealer = this.dealer.reduce((cur, next) => {
410
+          //   obj2[next.id] ? "" : (obj2[next.id] = true && cur.push(next));
411
+          //   return cur;
412
+          // }, []);
413
+          //
414
+          // this.goodType = this.goodType.reduce((cur, next) => {
415
+          //   obj3[next.id] ? "" : (obj3[next.id] = true && cur.push(next));
416
+          //   return cur;
417
+          // }, []);
418
+          //
419
+          // this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
420
+          // this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
370 421
         }
371 422
       });
372 423
     },
@@ -380,13 +431,13 @@ export default {
380 431
       return name;
381 432
     },
382 433
     specificationName: function(good_info_id) {
383
-      let name = "";
384
-      for (let i = 0; i < this.propForm.goodInfo.length; i++) {
385
-        if (this.propForm.goodInfo[i].id == good_info_id) {
386
-          name = this.propForm.goodInfo[i].specification_name;
434
+      let name = ''
435
+      for (let i = 0; i < this.goodInfo.length; i++) {
436
+        if (this.goodInfo[i].id == good_info_id) {
437
+          name = this.goodInfo[i].specification_name
387 438
         }
388 439
       }
389
-      return name;
440
+      return name
390 441
     },
391 442
     handleEdit: function(index, row) {
392 443
       const tempObj = {};
@@ -423,136 +474,65 @@ export default {
423 474
       }
424 475
     },
425 476
     showDialog(index, row) {
426
-      this.currentIndex = index;
427
-      this.propForm.goodType = [];
428
-      this.propForm.goods = [];
429
-
430
-      if (this.form.manufacturer == -1 && this.form.dealer == -1) {
431
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
432
-          if (
433
-            this.warehouseInfoList[i].info.dealers.id == 0 &&
434
-            this.warehouseInfoList[i].info.manufacturers.id == 0
435
-          ) {
436
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
437
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
438
-          }
439
-        }
440
-      }
441
-
442
-      if (this.form.manufacturer == -1 && this.form.dealer == 0) {
443
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
444
-          if (this.warehouseInfoList[i].info.manufacturers.id == 0) {
445
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
446
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
447
-          }
448
-        }
449
-      }
450
-
451
-      if (this.form.manufacturer == -1 && this.form.dealer != 0) {
452
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
453
-          if (
454
-            this.warehouseInfoList[i].info.manufacturers.id == 0 &&
455
-            this.warehouseInfoList[i].info.dealers.id == this.form.dealer
456
-          ) {
457
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
458
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
459
-          }
460
-        }
477
+      const loading = this.$loading({
478
+        lock: true,
479
+        text: 'Loading',
480
+        spinner: 'el-icon-loading',
481
+        background: 'rgba(0, 0, 0, 0.7)'
482
+      })
483
+      this.currentIndex = index
484
+      const params = {
485
+        manufacturer_id: this.form.manufacturer,
486
+        dealer_id: this.form.dealer
461 487
       }
488
+      GetAllGoodInfoByID(params).then(response => {
489
+          if (response.data.state == 0) {
490
+            this.$message.error(response.data.msg)
491
+            return false
492
+            loading.close()
462 493
 
463
-      if (this.form.manufacturer == 0 && this.form.dealer == 0) {
464
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
465
-          this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
466
-          this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
467
-        }
468
-      }
494
+          } else {
495
+            loading.close()
469 496
 
470
-      if (this.form.manufacturer == 0 && this.form.dealer == -1) {
471
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
472
-          if (this.warehouseInfoList[i].info.dealers.id == 0) {
473
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
474
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
497
+            if (response.data.data.goodInfo.length <= 0) {
498
+              this.$message.error('该厂商或经销商没有物品信息')
499
+              return
500
+            }
501
+            this.$refs.dialog.show()
502
+            for (let i = 0; i < response.data.data.goodInfo.length; i++) {
503
+              this.propForm.goodType.push(response.data.data.goodInfo[i].GoodsType)
504
+            }
505
+            const obj = {}
506
+            this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
507
+              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
508
+              return cur
509
+            }, []) // 设置cur默认类型为数组,并且初始值为空的数组
475 510
           }
476
-        }
477
-      }
478 511
 
479
-      if (this.form.manufacturer != 0 && this.form.dealer == -1) {
480
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
481
-          if (
482
-            this.warehouseInfoList[i].info.dealers.id == 0 &&
483
-            this.warehouseInfoList[i].info.manufacturers.id ==
484
-              this.form.manufacturer
485
-          ) {
486
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
487
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
488
-          }
489
-        }
490
-      }
512
+          for (let i = 0; i < this.propForm.goodType.length; i++) {
513
+            let goodInfo = []
514
+            let goodObj = {}
491 515
 
492
-      if (this.form.manufacturer != 0 && this.form.dealer != 0) {
493
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
494
-          if (
495
-            this.warehouseInfoList[i].info.manufacturers.id ==
496
-              this.form.manufacturer &&
497
-            this.warehouseInfoList[i].info.dealers.id == this.form.dealer
498
-          ) {
499
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
500
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
501
-          }
502
-        }
503
-      }
516
+            for (let a = 0; a < response.data.data.goodInfo.length; a++) {
517
+              var respObj = response.data.data.goodInfo[a]
518
+              respObj['isSelected'] = false
519
+              if (respObj.GoodsType.id == this.propForm.goodType[i].id) {
520
+                goodInfo.push(respObj)
521
+              }
522
+            }
523
+            const obj = {}
524
+            goodInfo = goodInfo.reduce((cur, next) => {
525
+              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
526
+              return cur
527
+            }, []) // 设置cur默认类型为数组,并且初始值为空的数组
504 528
 
505
-      if (this.form.manufacturer == 0 && this.form.dealer != 0) {
506
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
507
-          if (this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
508
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
509
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
510
-          }
511
-        }
512
-      }
513
-      if (this.form.manufacturer != 0 && this.form.dealer == 0) {
514
-        for (let i = 0; i < this.warehouseInfoList.length; i++) {
515
-          if (
516
-            this.warehouseInfoList[i].info.manufacturers.id ==
517
-            this.form.manufacturer
518
-          ) {
519
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type);
520
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info);
521
-          }
522
-        }
523
-      }
529
+            this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
530
+            this.propForm.goods.push(goodObj)
524 531
 
525
-      const obj3 = {};
526
-      this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
527
-        obj3[next.id] ? "" : (obj3[next.id] = true && cur.push(next));
528
-        return cur;
529
-      }, []);
530
-      const obj4 = {};
531
-      this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
532
-        obj4[next.id] ? "" : (obj4[next.id] = true && cur.push(next));
533
-        return cur;
534
-      }, []);
535
-
536
-      for (let i = 0; i < this.propForm.goodType.length; i++) {
537
-        let goodInfo = [];
538
-        let goodObj = {};
539
-
540
-        for (let a = 0; a < this.propForm.goodInfo.length; a++) {
541
-          var respObj = this.propForm.goodInfo[a];
542
-          respObj["isSelected"] = false;
543
-          if (respObj.type.id == this.propForm.goodType[i].id) {
544
-            goodInfo.push(respObj);
545 532
           }
533
+          console.log( this.propForm.goods)
546 534
         }
547
-        const obj = {};
548
-        goodInfo = goodInfo.reduce((cur, next) => {
549
-          obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
550
-          return cur;
551
-        }, []); // 设置cur默认类型为数组,并且初始值为空的数组
552
-
553
-        this.$set(goodObj, this.propForm.goodType[i].id, goodInfo);
554
-        this.propForm.goods.push(goodObj);
555
-      }
535
+      )
556 536
 
557 537
       this.$refs.dialog.show();
558 538
     },

+ 128 - 210
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -13,10 +13,21 @@
13 13
 
14 14
     <div class="app-container">
15 15
 
16
-      <sales-return-dialog ref="dialog" :propForm="propForm"
17
-                           :visibility="isVisibility"
18
-                           v-on:dialog-comfirm="comfirm"
19
-                           v-on:dialog-cancle="cancle"></sales-return-dialog>
16
+      <!--<stock-in-dialog-->
17
+        <!--ref="dialog"-->
18
+        <!--:propForm="propForm"-->
19
+        <!--:visibility="isVisibility"-->
20
+        <!--v-on:dialog-comfirm="comfirm"-->
21
+        <!--v-on:dialog-cancle="cancle"-->
22
+      <!--&gt;</stock-in-dialog>-->
23
+      <stock-in-dialog
24
+        ref="dialog"
25
+        :propForm="propForm"
26
+        :visibility="isVisibility"
27
+        v-on:dialog-comfirm="comfirm"
28
+        v-on:dialog-cancle="cancle"
29
+      >
30
+      </stock-in-dialog>
20 31
 
21 32
       <div class="cell clearfix">
22 33
         <label class="title"><span class="name">出库时间</span> : </label>
@@ -159,12 +170,12 @@
159 170
 <script>
160 171
   import { uParseTime } from '@/utils/tools'
161 172
 
162
-  import { deleteWarehouseOutInfo, editWarehouseoutInfo, getSalesReturnConfig, getWarehouseOutInfo } from '@/api/stock'
163
-  import SalesReturnDialog from './Dialog/salesReturnDialog'
173
+  import { deleteWarehouseOutInfo, editWarehouseoutInfo, getSalesReturnConfig, getWarehouseOutInfo,GetAllConfig,GetAllGoodInfoByID } from '@/api/stock'
164 174
   import BreadCrumb from '../components/bread-crumb'
175
+  import StockInDialog from './Dialog/stockInDialog'
165 176
 
166 177
   export default {
167
-    components: { BreadCrumb, SalesReturnDialog },
178
+    components: { StockInDialog, BreadCrumb},
168 179
     name: 'salesReturnEdit',
169 180
 
170 181
     data() {
@@ -224,117 +235,86 @@
224 235
         warehouseOut: {},
225 236
         manufacturer: [],
226 237
         dealer: [],
227
-        goodType: []
238
+        goodType: [],
239
+        goodInfo:[],
228 240
       }
229 241
     },
230 242
     methods: {
231 243
       comfirm: function(val) {
232
-        this.$refs.dialog.hide()
244
+        this.$refs.dialog.hide();
245
+        this.propForm.goodType = [];
246
+        this.propForm.goods = [];
233 247
 
234 248
         if (val.selectedGoodInfo.length > 0) {
235
-          for (let i = val.selectedGoodInfo.length - 1;i >= 0 ; i--) {
249
+          for (let i = val.selectedGoodInfo.length - 1; ; i--) {
236 250
             if (i == 0) {
237
-              this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
238
-              this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
239
-
251
+              this.recordInfo.recordData[this.currentIndex].good_type_id =
252
+                val.selectedGoodInfo[i].good_type_id;
253
+              this.recordInfo.recordData[this.currentIndex].good_id =
254
+                val.selectedGoodInfo[i].id;
255
+              this.recordInfo.recordData[
256
+                this.currentIndex
257
+                ].price = val.selectedGoodInfo[i].buy_price.toString();
240 258
             } else {
241
-              const tempForm = {}
242
-              tempForm['id'] = 0
243
-              tempForm['good_type_id'] = val.selectedGoodInfo[i].good_type_id
244
-              tempForm['good_id'] = val.selectedGoodInfo[i].id
245
-              tempForm['count'] = ''
246
-              tempForm['price'] = val.selectedGoodInfo[i].buy_price.toString()
247
-
248
-              tempForm['remark'] = ''
249
-              this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
259
+              const tempForm = {};
260
+              tempForm["id"] = 0;
261
+              tempForm["good_type_id"] = val.selectedGoodInfo[i].good_type_id;
262
+              tempForm["good_id"] = val.selectedGoodInfo[i].id;
263
+              tempForm["count"] = "";
264
+              tempForm["price"] = val.selectedGoodInfo[i].buy_price.toString();
265
+              tempForm["remark"] = "";
266
+              this.recordInfo.recordData.splice(
267
+                this.currentIndex + 1,
268
+                0,
269
+                tempForm
270
+              );
250 271
             }
251 272
           }
252 273
         }
253
-
254
-        this.currentIndex = -1
255
-      }, cancle: function() {
274
+        this.currentIndex = -1;
275
+      },
276
+      cancle: function() {
256 277
         this.$refs.dialog.hide()
257
-      }, GetConfigInfo: function() {
258
-        const params = {
259
-          type: this.$route.query.type
260
-        }
261
-        getSalesReturnConfig(params).then(response => {
262
-          const loading = this.$loading({
263
-            lock: true,
264
-            text: 'Loading',
265
-            spinner: 'el-icon-loading',
266
-            background: 'rgba(0, 0, 0, 0.7)'
267
-          })
278
+        this.propForm.goods = [];
268 279
 
280
+        this.propForm.goodType = [];
281
+      }, GetConfigInfo: function() {
282
+        const loading = this.$loading({
283
+          lock: true,
284
+          text: "Loading",
285
+          spinner: "el-icon-loading",
286
+          background: "rgba(0, 0, 0, 0.7)"
287
+        });
288
+        GetAllConfig().then(response => {
269 289
           if (response.data.state == 0) {
270
-            this.$message.error(response.data.msg)
271
-            return false
290
+            this.$message.error(response.data.msg);
291
+            return false;
272 292
           } else {
273
-            loading.close()
274
-            var warehouseInfoList = response.data.data.warehouseInfoList
275
-            this.warehouseInfoList = response.data.data.warehouseInfoList
276
-            for (let i = 0; i < warehouseInfoList.length; i++) {
277
-              if (warehouseInfoList[i].info.manufacturers.id > 0) {
278
-                this.manufacturer.push(warehouseInfoList[i].info.manufacturers)
279
-              }
280
-              if (warehouseInfoList[i].info.dealers.id > 0) {
281
-                this.dealer.push(warehouseInfoList[i].info.dealers)
282
-              }
283
-            }
284
-
285
-            for (let i = 0; i < this.warehouseInfoList.length; i++) {
286
-              this.goodType.push(this.warehouseInfoList[i].info.type)
287
-            }
288
-
289
-            for (let i = 0; i < this.warehouseInfoList.length; i++) {
290
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
291
-            }
292
-            const obj = {}
293
-            const obj2 = {}
294
-            const obj3 = {}
295
-
296
-            const obj4 = {}
297
-            // 去重复
298
-            this.manufacturer = this.manufacturer.reduce((cur, next) => {
299
-              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
300
-              return cur
301
-            }, [])
302
-            // 去重复
303
-            this.dealer = this.dealer.reduce((cur, next) => {
304
-              obj2[next.id] ? '' : obj2[next.id] = true && cur.push(next)
305
-              return cur
306
-            }, [])
307
-            this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
308
-              obj4[next.id] ? '' : obj4[next.id] = true && cur.push(next)
309
-              return cur
310
-            }, [])
311
-
312
-            this.goodType = this.goodType.reduce((cur, next) => {
313
-              obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
314
-              return cur
315
-            }, [])
316
-
317
-            this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
318
-            this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
319
-
293
+            this.manufacturer = response.data.data.manufacturer;
294
+            this.dealer = response.data.data.dealer;
295
+            this.goodType = response.data.data.goodType;
296
+            this.goodInfo = response.data.data.goodInfo;
297
+            this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
298
+            this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
320 299
           }
321
-        })
300
+          loading.close();
301
+        });
322 302
       }, typeName: function(good_type_id) {
323
-        let name = ''
303
+        let name = "";
324 304
         for (let i = 0; i < this.goodType.length; i++) {
325 305
           if (this.goodType[i].id == good_type_id) {
326
-            name = this.goodType[i].type_name
306
+            name = this.goodType[i].type_name;
327 307
           }
328 308
         }
329
-        return name
309
+        return name;
330 310
       }, specificationName: function(good_info_id) {
331
-        let name = ''
332
-        for (let i = 0; i < this.propForm.goodInfo.length; i++) {
333
-          if (this.propForm.goodInfo[i].id == good_info_id) {
334
-            name = this.propForm.goodInfo[i].specification_name
311
+        let name = "";
312
+        for (let i = 0; i < this.goodInfo.length; i++) {
313
+          if (this.goodInfo[i].id == good_info_id) {
314
+            name = this.goodInfo[i].specification_name;
335 315
           }
336 316
         }
337
-        return name
317
+        return name;
338 318
       }, handleEdit: function(index, row) {
339 319
         const tempObj = {}
340 320
         tempObj['id'] = 0
@@ -351,7 +331,7 @@
351 331
           const params = {
352 332
             id: row.id
353 333
           }
354
-          this.$confirm('确认删除该退货商品信息记录?', '删除退货商品信息记录', {
334
+          this.$confirm('确认删除该出库商品信息记录?', '删除出库商品信息记录', {
355 335
             confirmButtonText: '确定',
356 336
             cancelButtonText: '取消',
357 337
             type: 'warning'
@@ -375,132 +355,70 @@
375 355
         } else {
376 356
           return ''
377 357
         }
378
-      }, showDialog(index, row) {
379
-        this.currentIndex = index
380
-        this.propForm.goodType = []
381
-        this.propForm.goods = []
382
-
383
-        if (this.form.manufacturer == -1 && this.form.dealer == -1) {
384
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
385
-            if (this.warehouseInfoList[i].info.dealers.id == 0 && this.warehouseInfoList[i].info.manufacturers.id == 0) {
386
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
387
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
388
-            }
389
-          }
390
-        }
391
-
392
-        if (this.form.manufacturer == -1 && this.form.dealer == 0) {
393
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
394
-            if (this.warehouseInfoList[i].info.manufacturers.id == 0) {
395
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
396
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
397
-            }
398
-          }
399
-        }
400
-
401
-        if (this.form.manufacturer == -1 && this.form.dealer != 0) {
402
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
403
-            if (this.warehouseInfoList[i].info.manufacturers.id == 0 && this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
404
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
405
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
406
-
407
-            }
408
-          }
409
-        }
410
-
411
-        if (this.form.manufacturer == 0 && this.form.dealer == 0) {
412
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
413
-            this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
414
-            this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
415
-
416
-          }
417
-        }
418
-
419
-        if (this.form.manufacturer == 0 && this.form.dealer == -1) {
420
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
421
-            if (this.warehouseInfoList[i].info.dealers.id == 0) {
422
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
423
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
424
-
425
-            }
426
-          }
427
-        }
428
-
429
-        if (this.form.manufacturer != 0 && this.form.dealer == -1) {
430
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
431
-            if (this.warehouseInfoList[i].info.dealers.id == 0 && this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer) {
432
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
433
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
434
-
435
-            }
436
-          }
437
-        }
438
-
439
-        if (this.form.manufacturer != 0 && this.form.dealer != 0) {
440
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
441
-            if (this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer && this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
442
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
443
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
444
-
445
-            }
446
-          }
447
-        }
448
-
449
-        if (this.form.manufacturer == 0 && this.form.dealer != 0) {
450
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
451
-            if (this.warehouseInfoList[i].info.dealers.id == this.form.dealer) {
452
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
453
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
358
+      },
359
+      showDialog(index, row) {
360
+        this.currentIndex = index;
361
+        const loading = this.$loading({
362
+          lock: true,
363
+          text: "Loading",
364
+          spinner: "el-icon-loading",
365
+          background: "rgba(0, 0, 0, 0.7)"
366
+        });
454 367
 
368
+        const params = {
369
+          manufacturer_id: this.form.manufacturer,
370
+          dealer_id: this.form.dealer
371
+        };
372
+        GetAllGoodInfoByID(params).then(response => {
373
+          if (response.data.state == 0) {
374
+            this.$message.error(response.data.msg);
375
+            return false;
376
+          } else {
377
+            if (response.data.data.goodInfo.length <= 0) {
378
+              this.$message.error("该厂商或经销商没有物品信息");
379
+              return;
455 380
             }
456
-          }
457
-        }
458
-        if (this.form.manufacturer != 0 && this.form.dealer == 0) {
459
-          for (let i = 0; i < this.warehouseInfoList.length; i++) {
460
-            if (this.warehouseInfoList[i].info.manufacturers.id == this.form.manufacturer) {
461
-              this.propForm.goodType.push(this.warehouseInfoList[i].info.type)
462
-              this.propForm.goodInfo.push(this.warehouseInfoList[i].info)
381
+            this.$refs.dialog.show();
382
+            for (let i = 0; i < response.data.data.goodInfo.length; i++) {
383
+              this.propForm.goodType.push(
384
+                response.data.data.goodInfo[i].GoodsType
385
+              );
463 386
             }
387
+            const obj = {};
388
+            this.propForm.goodType = this.propForm.goodType.reduce(
389
+              (cur, next) => {
390
+                obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
391
+                return cur;
392
+              },
393
+              []
394
+            ); // 设置cur默认类型为数组,并且初始值为空的数组
464 395
           }
465
-        }
466
-
467
-
468
-        const obj3 = {}
469
-          this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
470
-            obj3[next.id] ? '' : obj3[next.id] = true && cur.push(next)
471
-            return cur
472
-          }, [])
473
-        const obj4 = {}
474
-        this.propForm.goodInfo = this.propForm.goodInfo.reduce((cur, next) => {
475
-          obj4[next.id] ? '' : obj4[next.id] = true && cur.push(next)
476
-          return cur
477
-        }, [])
478
-
479 396
 
480 397
           for (let i = 0; i < this.propForm.goodType.length; i++) {
481
-            let goodInfo = []
482
-            let goodObj = {}
483
-
484
-            for (let a = 0; a < this.propForm.goodInfo.length; a++) {
485
-              var respObj = this.propForm.goodInfo[a]
486
-              respObj['isSelected'] = false
487
-              if (respObj.type.id == this.propForm.goodType[i].id) {
488
-                goodInfo.push(respObj)
398
+            let goodInfo = [];
399
+            let goodObj = {};
400
+
401
+            for (let a = 0; a < response.data.data.goodInfo.length; a++) {
402
+              var respObj = response.data.data.goodInfo[a];
403
+              respObj["isSelected"] = false;
404
+              if (respObj.GoodsType.id == this.propForm.goodType[i].id) {
405
+                goodInfo.push(respObj);
489 406
               }
490 407
             }
491
-            const obj = {}
408
+            const obj = {};
492 409
             goodInfo = goodInfo.reduce((cur, next) => {
493
-              obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
494
-              return cur
495
-            }, []) // 设置cur默认类型为数组,并且初始值为空的数组
410
+              obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
411
+              return cur;
412
+            }, []); // 设置cur默认类型为数组,并且初始值为空的数组
496 413
 
497
-            this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
498
-            this.propForm.goods.push(goodObj)
499
-
500
-        }
501
-        this.$refs.dialog.show()
414
+            this.$set(goodObj, this.propForm.goodType[i].id, goodInfo);
415
+            this.propForm.goods.push(goodObj);
416
+          }
417
+          loading.close();
418
+        });
419
+      },
502 420
 
503
-      }, back() {
421
+      back() {
504 422
         this.$router.go(-1)
505 423
       }, submit() {
506 424
         this.$refs['tableForm'].validate((valid) => {

+ 1 - 4
src/xt_pages/stock/stockQuery.vue Parādīt failu

@@ -182,13 +182,10 @@ export default {
182 182
           this.WarehouseInfo.loading = false;
183 183
           this.total = response.data.data.total;
184 184
           for (let i = 0; i < response.data.data.list.length; i++) {
185
-            if (response.data.data.list[i].query_warehousing_info.length > 0) {
185
+
186 186
               this.WarehouseInfo.warehouseInfoDate.push(
187 187
                 response.data.data.list[i]
188 188
               );
189
-            } else {
190
-              this.total = this.total - 1;
191
-            }
192 189
           }
193 190
         }
194 191
       });

+ 12 - 3
src/xt_pages/stock/stockUserDetail.vue Parādīt failu

@@ -38,12 +38,20 @@
38 38
               <span v-if="scope.row.is_total == 1"></span>
39 39
             </template>
40 40
           </el-table-column>
41
+          <el-table-column min-width="35" align="center">
42
+            <template slot="header" slot-scope="scope">
43
+              <span>使用数量</span>
44
+            </template>
45
+            <template slot-scope="scope">
46
+              <span >{{scope.row.count}}</span>
47
+            </template>
48
+          </el-table-column>
41 49
           <el-table-column min-width="23" align="center">
42 50
             <template slot="header" slot-scope="scope">
43 51
               <span>使用时间</span>
44 52
             </template>
45 53
             <template slot-scope="scope">
46
-              <span  v-if="scope.row.is_total == 0">{{scope.row.record_time | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
54
+              <span  v-if="scope.row.is_total == 0">{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
47 55
               <span  v-if="scope.row.is_total == 1">{{scope.row.total}} </span>
48 56
             </template>
49 57
           </el-table-column>
@@ -105,15 +113,16 @@
105 113
             this.$message.error(response.data.msg)
106 114
             return false
107 115
           } else {
108
-
116
+            var total = 0
109 117
             for (let i = 0; i < response.data.data.list.length; i++) {
110 118
               var obj = response.data.data.list[i]
111 119
               obj['is_total'] = 0
112 120
               this.userList.push(obj)
121
+              total = total + response.data.data.list[i].count
113 122
             }
114 123
             this.userList.push({
115 124
               is_total: 1,
116
-              total: response.data.data.total,
125
+              total: total,
117 126
             })
118 127
 
119 128
             console.log(this.userList)