receiving-.html
30 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<style>
.table-striped-left{
width: 41%;
/*margin-right: 4px;*/
}
.table-striped-right{
/*right: -10px;*/
width: 58%;
float: right;
}
.info_text{
float: right;
}
.info_text li{
font-size: 16px;
}
.info_text li span{
font-size: 20px;
font-weight: bold;
color: rgb(28,132,198);
}
/* 缩略图 */
#my_thumbnail{
height: 85px;
overflow-x: auto;
border: 1px solid blue;
}
#my_thumbnail img{
margin: 0 5px;
}
element.style {
width: 50%;
}
.table-striped-right .select-list li{
width:47%;
float:left;
}
.select-list li select {
border: 1px solid #ddd;
border-radius: 4px;
background: transparent;
outline: none;
font-size:13px;
height: 30px;
width: 200px;
/*margin-left:4px;
margin-top:6px;*/
display:inline-block;
vertical-align:middle;
}
.selectClass{
margin-top:0px;
display:inline-block;
vertical-align:middle;
}
</style>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 select-info">
<form id="dept-form">
<div class="select-list">
<div id="divhtml">
</div>
<ul>
<li>
收货单号:<input type="text" id="code" name="deptName"/>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" id="list-btn"><i class="fa fa-search"></i> 搜索</a>
</li>
</ul>
<ul class="info_text">
<li>物料总数:<span id="material_length"></span></li>
<li>总单据数量:<span id="qty_length"></span></li>
<li>已收货数量:<span id="qtyCompleted_length"></span></li>
</ul>
</div>
</form>
</div>
<div class="col-sm-12 select-info table-striped-left" style="padding-top: 20px;">
<table id="bootstrap-table" data-mobile-responsive="true" class="table table-bordered table-hover text-nowrap"></table>
</div>
<div class="col-sm-12 select-info table-striped-right">
<div>
<button class="btn btn-danger" onclick="receipt()">组   盘</button>
</div>
<ul class="select-list">
<input type="text" id="materialCode" hidden/>
<li style="display: none">id:<input type="text" id="detailId"/></li>
<!--<select id="area" name="batteryType" class="form-control" type="text">
<option value="1">库区A</option>
<option value="2">库区B</option>
<option value="3">库区C</option>
<option value="4">库区D</option>
<option value="5">库区E</option>
</select>-->
<li >收货数量:<input type="text" id="receiveNum"/></li>
<!-- <li>收货重量:<input type="text" id="receiveWeight"/></li>-->
<li hidden>容器编号:<input type="text" id="containerCode"/></li>
<li hidden>库位编码:<input type="text" id="locationCoder"/></li>
<li id="barhidden"> 托盘号:<input type="text" id="barCodeHeaderCode" style="width: 50%"/>
<input type="hidden" id="barCodeHeaderId" />
<button class="btn btn-sm btn-success" onclick="selectCode()">请选择</button>
</li>
<div id="batteryHidden" hidden>
<li ><span class="selectClass">电池包类型:</span>
<select id="batteryPackType" name="batteryPackType" class="form-control" th:with="batteryPackType=${@dict.getType('batteryPackType')}" placeholder="电池类必填">
<option value="">--请选择--</option>
<option th:each="dict : ${batteryPackType}" th:text="${dict['dictLabel']}" th:value="${dict['dictValue']}"></option>
</select>
<!--电池包类型:<input type="text" id="batteryPackType" placeholder="电池类必填"/></li>-->
</li>
<li >
<span class="selectClass">电池类型:</span>
<select id="batteryTypes" name="batteryTypes" class="form-control" placeholder="电池类必填">
<option value="">--请选择--</option>
<option value="1">电池包</option>
<option value="2">电池模块</option>
<option value="3">电池单体</option>
</select>
</li>
<li >
<span class="selectClass">完整程度:</span>
<select id="completeness" name="completeness" class="form-control" th:with="completeness=${@dict.getType('completeness')}">
<option value="">--请选择--</option>
<option th:each="dict : ${completeness}" th:text="${dict['dictLabel']}" th:value="${dict['dictValue']}"></option>
</select>
</li>
<li >
<span class="selectClass">利用类型:</span>
<select id="storageType" name="storageType" class="form-control" placeholder="电池类必填">
<option value="">--请选择--</option>
<option value="0">再生利用</option>
<option value="1">梯次利用</option>
</select>
</li>
<li >
<span class="selectClass">再生利用类型:</span>
<select id="type" name="type" class="form-control" placeholder="电池类必填">
<option value="">--请选择--</option>
<option value="1">废旧动力蓄电池</option>
<option value="2">次品动力蓄电池</option>
<option value="3">其他领域废旧电池</option>
</select>
</li>
<li>回收人:<select type="text" id="recycler" th:with="completeness=${@UserServiceImpl.getRecover()}">
<option th:each="dict : ${completeness}" th:text="${dict.userName}" th:value="${dict.userName}"></option>
</select></li>
<li>电量:<input type="text" id="electricQuantity" placeholder="电池类必填"/></li>
<li>皮重:<input type="text" id="materialTareWeight"/><button class="btn btn-sm btn-success" onclick="getWeight()">取重</button></li>
<li>毛重:<input type="text" id="materialGrossWeight"/><button class="btn btn-sm btn-success" onclick="getWeight()">取重</button></li>
<li>净重:<input type="text" id="materialNetWeight"/></li>
<!--<li>回收人:<input type="text" id="recycler"/></li>-->
<li>国家编码:<input type="text" id="countryCode" placeholder="国家编码"/></li>
<li>备注:<input type="text" id="remark" placeholder="备注"/></li>
<li style="width:20%" hidden>
<button id="plc" name="plc" class="btn btn-danger btn-sm" type="button">电池拍照</button>
</li>
<!--<div class="form-group" style="width:300px;white-space: nowrap">
<img id="camera" name="camera" src="" width="300px" height="200px"/>
</div>
<div class="form-group" style="width:150px;margin: 0 auto;">
<button id="plc" name="plc" class="btn btn-danger" type="button">电池拍照</button>
</div>-->
<!--<li>
<img id="camera" name="camera" src="" width="300px" height="200px"/>
</li>
<li>
<div id="my_thumbnail" style="width:150px;height:150px;margin-left: 10px;margin-top:5px;">
</div>
</li>-->
<!--完整程度:<input type="text" id="completeness" placeholder="电池类必填"/></li>-->
<!--<li>电池个数:<input type="text" id="batteryQty"/></li>-->
</div>
</ul>
<div class="btn-group hidden-xs" id="toolbar1" role="group">
<!-- <a class="btn btn-outline btn-success btn-rounded" onclick="positioning()"-->
<!-- shiro:hasPermission="receipt:receiptDetail:add">-->
<!-- <i class="fa fa-map-pin"></i> 定位-->
<!-- </a>-->
<!-- <a class="btn btn-outline btn-info btn-rounded" onclick="cancelPositioning()"-->
<!-- shiro:hasPermission="receipt:receiptDetail:remove">-->
<!-- <i class="fa fa-times"></i> 取消定位-->
<!-- </a>-->
<a class="btn btn-outline btn-danger btn-rounded" onclick="batRemove()"
shiro:hasPermission="receipt:receiptDetail:remove">
<i class="fa fa-trash-o"></i> 取消收货
</a>
<a class="btn btn-outline btn-warning btn-rounded" onclick="createTask()"
shiro:hasPermission="receipt:receiptContainer:add">
<i class="fa fa-edit"></i> 生成任务
</a>
<a class="btn btn-outline btn-primary btn-rounded" href="/wms/task/taskHeader?InternalTaskType=100">
<i class="fa fa-edit"></i> 跳转任务
</a>
<a class="btn btn-outline btn-primary btn-rounded" onclick="batteryPackagePrints()">
<i class="fa fa-edit"></i> 电池包打印
</a>
</div>
<table id="bootstrap-table1" data-mobile-responsive="true"
class="table table-bordered table-hover text-nowrap"></table>
<ul class="select-list top_text">
<li><span class="table-title">本物料库存</span></li>
</ul>
<table id="bootstrap-table2" data-mobile-responsive="true"
class="table table-bordered table-hover text-nowrap"></table>
<ul class="select-list top_text">
<li>空容器类型:<select name="type" id="containerType" th:with="typeList=${@containerType.getCode()}">
<option value="">所有</option>
<option th:each="c:${typeList}" th:text="${c['name']}" th:value="${c['code']}"></option>
</select></li>
<li>
<button class="btn btn-sm btn-success" onclick="containerTypeSearch()">搜索</button>
</li>
</ul>
<table id="bootstrap-table3" data-mobile-responsive="true"
class="table table-bordered table-hover text-nowrap"></table>
</div>
</div>
</div>
<div th:include="include :: footer"></div>
<script th:src="@{/webjars/sockjs-client/1.0.2/sockjs.min.js}"></script>
<script th:src="@{/webjars/stomp-websocket/2.3.3/stomp.min.js}"></script>
<script th:src="@{/js/websocket.js}"></script>
<th:block th:include="include :: thumbnail_customized-js" />
<script th:inline="javascript">
var addFlag = [[${@permission.hasPermi('receipt:receiving:add')}]];
var removeFlag = [[${@permission.hasPermi('receipt:receiving:remove')}]];
var prefix = ctx + "receipt/receiving";
var Types = [[${@dict.getType('taskType')}]];
var Status=[[${@dict.getType('receiptContainerHeaderStatus')}]];
var inventoryStatus =[[${@dict.getType('inventoryStatus')}]];
connect();
$(function () {
$("#bootstrap-table3").bootstrapTable({
url: ctx+'config/container/emptyContainer',
iconSize: "outline",
modalName: "空盒",
pagination: true, // 是否显示分页(*)
pageNumber: 1,// 初始化加载第一页,默认第一页
method: 'post',
pageSize: 5, // 每页的记录行数(*)
showRefresh: true,
pageList: [10, 25, 50],
contentType: "application/x-www-form-urlencoded",
columns: [{
field : 'code',
title : '容器编号'
},{
field : 'locationCode',
title : '库位编号'
}]
});
});
/*function showGreeting(message) {
$("#greetings").append("<tr><td>" + message + "</td></tr>");
}*/
// 收货显示的数据
function list_select(code) {
$.ajax({
url: prefix + "/scanBill",
type: 'post',
datatype: 'json',
data: {
code: code
},
error:function (response) {
//console.log(response);
},
success: function (value) {
var qty_show=0;
var qtyCompleted_show=0;
$("#bootstrap-table").bootstrapTable('removeAll');
if(value.data){
for (var i = 0; i < value.data.length; i++) {
if (value.data[i].totalQty > value.data[i].openQty || value.data[i].totalWeight > value.data[i].openWeight) {
$("#bootstrap-table").bootstrapTable('insertRow', {
index: 0, row: {
projectNo:value.data[i].project,
id: value.data[i].id,
materialName: value.data[i].materialName,
receiptId: value.data[i].receiptId,
receiptCode: value.data[i].receiptCode,
materialCode: value.data[i].materialCode,
totalQty: value.data[i].totalQty,
openQty: value.data[i].openQty,
totalWeight: value.data[i].totalWeight,
openWeight: value.data[i].openWeight,
inventorySts: value.data[i].inventorySts,
materialUnit: value.data[i].materialUnit,
electricQuantity: value.data[i].electricQuantity,
batteryPackageWeight: value.data[i].batteryPackageWeight
}
});
}
qty_show=value.data[i].totalQty + qty_show;
qtyCompleted_show=value.data[i].openQty + qtyCompleted_show;
}
$("#material_length").text(value.data.length);
$("#qty_length").text(qty_show);
$("#qtyCompleted_length").text(qtyCompleted_show);
}
else {
$.modal.alertError(value.msg)
}
}
})
}
function list_receiptInfo(code) {
$.ajax({
url: prefix + "/getReceiptInfoByBill",
type: 'post',
datatype: 'json',
data: {
code: code
},
error:function (response) {
console.log(response);
},
success: function (value) {
$("#bootstrap-table1").bootstrapTable('removeAll');
if(value.data){
for (var i = 0; i < value.data.length; i++) {
$("#bootstrap-table1").bootstrapTable('insertRow', {
index: 0, row: {
projectNo :value.data[i].projectNo,
id: value.data[i].id,
receiptContainerId:value.data[i].receiptContainerId,
receiptDetailId:value.data[i].receiptDetailId,
containerCode: value.data[i].containerCode,
locationCode: value.data[i].locationCode,
materialCode: value.data[i].materialCode,
materialName: value.data[i].materialName,
materialSpec: value.data[i].materialSpec,
sn:value.data[i].sn,
taskType:value.data[i].taskType,
qty: value.data[i].qty,
weights: value.data[i].weights,
status: value.data[i].status,
created: value.data[i].created,
createdBy: value.data[i].createdBy,
electricQuantity: value.data[i].electricQuantity,
batteryPackTwoCode: value.data[i].batteryPackTwoCode,
materialIsBattery: value.data[i].materialIsBattery,
batteryPackageWeight: value.data[i].batteryPackageWeight
}
});
}
}
else {
console.log("没有查找到入库容器!")
}
}
})
}
$("#list-btn").click(initTable);
$("body").bind("keypress",function(e){
// 兼容FF和IE和Opera
var theEvent = e || window.event;
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
if (code == 13) {
e.preventDefault();
//回车执行查询
initTable();
// list_select($("#code").val());
}
});
function initTable(){
var receiptCode=$("#code").val();
list_select(receiptCode);
list_receiptInfo(receiptCode);
$("#bootstrap-table1").bootstrapTable('removeAll');
$("#bootstrap-table2").bootstrapTable('removeAll');
}
//点击将值赋值到文本框
$("#bootstrap-table").bootstrapTable({
// url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
contentType: "application/x-www-form-urlencoded",
clickToSelect: true,
modalName: "收货",
pagination: true, // 是否显示分页(*)
pageNumber: 1, // 初始化加载第一页,默认第一页
pageSize: 10, // 每页的记录行数(*)
pageList: [10, 25, 50, 100], // 可供选择的每页的行数(*)
onRefresh: function(){
},
onClickRow:function(row,ele,field){
let code=$("#code").val();
$("#detailId").val(row.id);
$("#receiveNum").val(row.totalQty-row.openQty);
$("#receiveWeight").val(row.totalWeight-row.openWeight)
$("#materialCode").val(row.materialCode);
//console.log(row)
if(row.materialCode.startsWith("196")){
$("#batteryHidden").show();
$("#receiveNum").val(1);
$("#barhidden").hide();
}else{
$("#batteryHidden").hide();
$("#barhidden").show();
}
$.ajax({
url:prefix+'/getInventoryInfo',
type:'post',
data:{
code:code,
id:row.id
},
success:res=>{
// $("#bootstrap-table1").bootstrapTable('load',res.data.list);
$("#bootstrap-table2").bootstrapTable('load',res.data.inventoryList);
$("#storageType").val(res.data.curBill.storageType)
$("#type").val(res.data.curBill.type)
$("#batteryTypes").val(res.data.curBill.batteryTypes)
$("#completeness").val(res.data.curBill.completeness)
// $("#bootstrap-table3").bootstrapTable('load',res.data.containerList);
}
})
},
columns: [
// {
// field : 'id',
// title : 'id号'
// },
// {
// field : 'receiptCode',
// title : '收货单编码'
// },
{
field : 'materialIsBattery',
title : '是否电池',
visible: false
},
{
field : 'id',
title : '明细id'
},
{
field : 'materialCode',
title : '物料编码'
},
{
field: "materialName",
title: "名称"
},
{
field : 'totalQty',
title : '单据数量'
},
{
field : 'openQty',
title : '已入数量'
},
// {
// field : 'totalWeight',
// title : '单据重量'
// },
/* {
field : 'batteryPackageWeight',
title : '电池包重量'
},*/
{
field : 'electricQuantity',
title : '电池包电量'
},
// {
// field : 'openWeight',
// title : '已入重量'
// },
{
field : 'inventorySts',
title : '库存状态'
},
{
field : 'projectNo',
title : '项目号'
},
{
field : 'materialUnit',
title : '单位'
},
]
});
$("#bootstrap-table1").bootstrapTable({
removeUrl: ctx + "receipt/receiptContainerDetail/remove",
// search: true, //搜索
showRefresh: true, //刷新
showToggle:true, //视图切换
clickToSelect: true,
showColumns:true, //列选择
// detailView:true,
toolbar: "#toolbar1",
showExport: true, //导出
exportDataType: "all", //导出类型basic', 'all', 'selected'.当前页、所有数据、选中数据
modalName: "入库组盘",
iconSize: "outline",
toolbar: "#toolbar1",
contentType: "application/x-www-form-urlencoded",
onRefresh: function(){
list_receiptInfo($("#code").val());
},
columns: [
{
checkbox: true,
},
{
title: '操作',
align: 'center',
events:'operateEvents',
formatter: function(value, row, index) {
var actions = [];
if (row.status == 0) {
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>取消</a>');
}
//console.log(row )
if (row.batteryPackTwoCode !=''&&row.batteryPackTwoCode !=undefined) {
actions.push('<a class="btn btn-danger btn-xs" href="#" onclick="batteryPackagePrint(\'' + row.id + '\')"><i class="fa fa-edit"></i>打印</a>');
}
return actions.join('');
}
},
{
field : 'batteryPackTwoCode',
title : '电池包二维码'
},
/*{
field : 'locationCode',
title : '库位编号'
},*/
{
field : 'containerCode',
title : '容器编号'
},
{
field : 'id',
title : '组盘明细id',
visible: false
},
{
field : 'receiptContainerId',
title : '组盘头id',
visible: false
},
{
field : 'materialCode',
title : '物料编码'
},
{
field:"materialName",
title:"物料名称"
},
// {
// field:"materialSpec",
// title:"物料规格"
// },
{
field : 'qty',
title : '数量'
},
{
field : 'electricQuantity',
title : '电池包电量'
},
// {
// field : 'batteryPackageWeight',
// title : '电池包重量'
// },
// {
// field : 'weights',
// title : '重量'
// },
// {
// field : 'sn',
// title : '序列号'
// },
// {
// field : 'project',
// title : '项目号',
// visible: false
// },
{
field : 'status',
title : '组盘状态',
align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(Status, value);
}
},
{
field : 'receiptDetailId',
title : '入库单明细id'
},
{
field : 'created',
title : '创建时间'
},
{
field : 'createdBy',
title : '创建人'
}]
});
$("#bootstrap-table2").bootstrapTable({
removeUrl: ctx + "receipt/receiptContainerDetail/remove",
clickToSelect: true,
showColumns:true, //列选择
showExport: true, //导出
iconSize: "outline",
toolbar: "#toolbar",
exportDataType: "all", //导出类型basic', 'all', 'selected'.当前页、所有数据、选中数据
modalName: "入库组盘",
pagination: true, // 是否显示分页(*)
pageNumber: 1, // 初始化加载第一页,默认第一页
pageSize: 5, // 每页的记录行数(*)
pageList: [10, 25, 50],
contentType: "application/x-www-form-urlencoded",
columns: [
{
field : 'containerCode',
title : '容器编号'
},
// {
// field : 'batteryPackageWeight',
// title : '电池包重量'
// },
{
field : 'electricQuantity',
title : '电池包电量'
},
{
field : 'materialCode',
title : '存货编码'
},
{
field : 'materialName',
title : '物料名称'
},
{
field : 'materialSpec',
title : '物料规格'
},
{
field : 'qty',
title : '数量'
},
// {
// field : 'sn',
// title : '序列号'
// },
{
field : 'companyName',
title : '货主'
},
{
field : 'locationCode',
title : '库位编号'
},
{
field : 'status',
title : '库存状态' ,
align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(inventoryStatus, value);
}
},
]
});
window.operateEvents = {
'click #qty': function (e, value, row, index) {
var url = prefix + '/add?';
jQuery.each(row, function(key, val) {
url = url + key + "=" + encodeURI(val) + "&";
});
var modalName="入库组盘";
$.modal.open("添加"+modalName,url);
}
};
function receiving_refresh() {
var receiving_code = localStorage.getItem("receiving_code");
$("#code").val(receiving_code);
if (receiving_code) {
initTable();
}
localStorage.removeItem("receiving_code");
}
receiving_refresh();
function remove(id) {
$.modal.confirm("确定删除该组盘?", function() {
var url = ctx + "receipt/receiptContainerDetail/remove";
var data = { "ids": id };
$.operate.submitAndCallback(url, "post", "json", data, initTable);
});
}
function positioning() {
let rows = $("#bootstrap-table1").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var url = ctx+"receipt/receiptContainerHeader/position";
var ids = "";
for (var i = 0; i<rows.length; i++){
ids += rows[i].receiptContainerId;
ids += ",";
}
var data = { "ids": ids };
$.modal.loading("正在处理中,请稍后...");
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
success: function(result) {
$.operate.ajaxSuccess(result);
list_receiptInfo($("#code").val());
}
};
$.ajax(config)
$.table.refresh("bootstrap-table1");
}
function refresh() {
var receiptCode=$("#code").val();
list_select(receiptCode);
list_receiptInfo(receiptCode);
$("#bootstrap-table1").bootstrapTable('removeAll');
$("#bootstrap-table2").bootstrapTable('removeAll');
}
function cancelPositioning() {
let rows = $("#bootstrap-table1").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var url = ctx+"receipt/receiptContainerHeader/cancelPosition";
var ids = "";
for (var i = 0; i<rows.length; i++){
ids += rows[i].receiptContainerId;
ids += ",";
}
var data = { "ids": ids };
$.modal.loading("正在处理中,请稍后...");
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
success: function(result) {
$.operate.ajaxSuccess(result);
list_receiptInfo($("#code").val());
}
};
$.ajax(config)
$.table.refresh("bootstrap-table1");
}
function batRemove() {
let rows = $("#bootstrap-table1").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var url = ctx+"receipt/receiptContainerDetail/remove";
var ids = "";
for (var i = 0; i<rows.length; i++){
ids += rows[i].id;
ids += ",";
}
var data = { "ids": ids };
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
success: function(result) {
$.operate.ajaxSuccess(result);
list_receiptInfo($("#code").val());
list_select($("#code").val());
}
};
$.ajax(config);
$.table.refresh("bootstrap-table1");
}
function receipt() {
let containerCode = $("#containerCode").val();
let locationCode = $("#locationCoder").val();
}
/**
* 取重接口
* 调用连接称重电脑的接口
*/
function getWeight(){
let url='http://10.34.101.77:8888/wms/API/WMS/v2/getWeightForSerial';
let type = "POST";
let dataType = "json";
let data = {};
let config = {
url: url,
type: type,
dataType: dataType,
data: data,
beforeSend: function () {
$.modal.loading("正在处理中,请稍后...");
},
success: function (result) {
$("#materialGrossWeight").val(result.data)
$.operate.ajaxSuccess(result);
}
};
$.ajax(config)
}
/*document.getElementById("plc")
.addEventListener("click", function() {
$.ajax({
cache : false,
type : "POST",
url : ctx + "API/WMS/v2/cameraLogin",
dataType: 'json',
data : {
"cameraId": "3"
},
async : false,
error : function(request) {
$.modal.alertError("请求失败!");
},
success : function(result) {
if (result.code == web_status.SUCCESS) {
getData();
$.modal.msgSuccess(result.msg);
}else{
$.modal.alertError(result.data);
}
}
});
});*/
function getData(){
let url = "/wms/img/Capture/material.jpg?" + Date.parse(new Date());
$("#camera").attr('src',url);
// setTimeout(getData,5000)
}
/**
* 组盘
*/
function receipt() {
let containerCode = $("#containerCode").val();
let locationCode = $("#locationCoder").val();
let barCodeHeaderCode = $("#barCodeHeaderCode").val();
Receiving(locationCode, containerCode,barCodeHeaderCode);
}
/**
* 组盘
* @param locationCode
* @param containerCode
*/
function Receiving(locationCode,containerCode,barCodeHeaderCode) {
let receiptCode=$("#code").val();
let num=$("#receiveNum").val();
let receiptDetailId=$("#detailId").val();
let weights = $("#receiveWeight").val();
let locationCoder = $("#locationCoder").val();
let barCodeHeaderId = $("#barCodeHeaderId").val();
let batteryPackType = $("#batteryPackType").val();
let batteryTypes = $("#batteryTypes").val();
let completeness = $("#completeness").val();
let electricQuantity = $("#electricQuantity").val();
let storageType = $("#storageType").val();
let type = $("#type").val();
let countryCode = $("#countryCode").val();
let remark = $("#remark").val();
let area = $("#area").val();
let materialTareWeight = $("#materialTareWeight").val();
let materialGrossWeight = $("#materialGrossWeight").val();
let materialNetWeight = $("#materialNetWeight").val();
let recycler = $("#recycler").val();
/*let materialCode = $("#materialCode").val();
if(materialCode.startsWith("196")&&barCodeHeaderId==''){
if(num)
}*/
//console.log(materialCode)
$.ajax({
url:ctx + "receipt/receiving/save",
type:'post',
data:{
receiptCode:receiptCode,
qty: num,
receiptDetailId:receiptDetailId,
locationCode:locationCoder,
// locationCoder:locationCoder,
containerCode:containerCode,
barCodeHeaderCode:barCodeHeaderCode,
barCodeHeaderId:barCodeHeaderId,
batteryPackType:batteryPackType,
batteryTypes:batteryTypes,
completeness:completeness,
electricQuantity:electricQuantity,
batteryQty:num,
weights:weights,
materialTareWeight:materialTareWeight,
materialGrossWeight:materialGrossWeight,
materialNetWeight:materialNetWeight,
recycler:recycler,
storageType:storageType,
type:type,
countryCode:countryCode,
remark:remark,
area:area
},
success:function (data) {
if(data.code===200){
$.modal.msgSuccess('成功');
initTable();
}
else{
$.modal.msg(data.msg);
}
}
})
}
function chooseStation(id) {
var url = ctx + "receipt/receiptContainerHeader/chooseStation" + "/" + id;
$.modal.open("选择站台", url);
}
function createTask() {
let rows=$("#bootstrap-table1").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
if(rows[0].taskType == 200) {
let ids = "";
for(let i=0; i<rows.length; i++) {
if(ids == "") {
ids = rows[i].receiptContainerId;
} else {
ids = ids + "," + rows[i].receiptContainerId
}
}
chooseStation(ids);
} else {
let url = ctx + "receipt/receiptContainerHeader/createTask";
let ids = "";
for(let i=0; i<rows.length; i++) {
ids = ids + rows[i].receiptContainerId + ","
}
let data = { "ids": ids.substring(0, ids.length-1) };
$.modal.loading("正在处理中,请稍后...");
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
success: function(result) {
if (result.code == web_status.SUCCESS) {
$.modal.msgSuccess(result.msg);
$.table.refresh("bootstrap-table1");
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
}
};
$.ajax(config)
}
}
function containerTypeSearch() {
var params = {
query:{containerType:$("#containerType").val()}
}
$("#bootstrap-table3").bootstrapTable('refresh',params);
}
//选择主条码
function selectCode(){
var url = ctx + "receipt/receiving/listBarCodeHeaderCode";
$.modal.open("选择托盘号", url);
}
function batteryPackagePrint(id){
var url = ctx + "receipt/receiptContainerDetail/reportBatteryPackage/" + id;
$.modal.open("入库电池包打印" , url);
}
function batteryPackagePrints(){
var rows=$("#bootstrap-table1").bootstrapTable('getSelections');
if (rows.length == 0) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var ids = "";
for(var i=0; i<rows.length; i++) {
ids = ids + rows[i].id + ","
}
var url = ctx + "receipt/receiptContainerDetail/reportBatteryPackage/" + ids;
$.modal.open("入库电池包打印" , url);
}
</script>
</body>
</html>