1
zrg
2025-12-10 e8c269640263d78f885a32422b5b09d4e4980ff8
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
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
<template>
    <view>
        <view class="form">
            <view class="form-item">
                <view class="title">条码:</view>
                <view class="right" style="width: 380rpx;">
                    <input :focus="barCodeFocus" v-model="hform.HBarCode" placeholder="请扫描(或输入)条码"
                        @confirm="getCode(hform.HBarCode)" />
                </view>
                <view class="icon-wrapper">
                    <uni-icons type="scan" size="20" @click="toScanCode"></uni-icons>
                </view>
            </view>
            <view class="form-item">
                <view class="title">数量:</view>
                <view class="right">
                    <input type="number" v-model="hform.HQty" placeholder="请输入数量" />
                </view>
            </view>
            <view class="form-item">
                <view class="title">调出仓库:</view>
                <view class="right">
                    <uni-combox :candidates="arrayHWHName" placeholder="请输入(或扫描)仓库" v-model="hform.HSCWHName"
                        @input="HSCWHNameChange" @confirm="HWHNameOutScan"></uni-combox>
                </view>
                <view class="icon-wrapper">
                    <uni-icons type="more" size="20" @click="showWarehouseList('HSCWHID')"></uni-icons>
                </view>
            </view>
            <view class="form-item">
                <view class="title">调出仓位:</view>
                <view class="right" v-show="HSCIsStockMgr">
                    <uni-combox :candidates="arrayHStockPlaceNameComputed" placeholder="请输入(或扫描)仓位"
                        v-model="hform.HOutStockPlaceName" @input="HOutStockPlaceNameChange"
                        @confirm="HStockPlaceOutNameScan"></uni-combox>
                </view>
                <view class="righton" v-show="!HSCIsStockMgr">
                    <input v-model="hform.HOutStockPlaceName" :disabled="!HSCIsStockMgr" placeholder="不可操作" />
                </view>
                <view class="icon-wrapper" v-show="HSCIsStockMgr">
                    <uni-icons type="more" size="20" @click="showStockPlaceList('HOSpID')"></uni-icons>
                </view>
            </view>
 
            <view class="tabs">
                <view :class="tabs == 0 ? 'on':''" @tap="tabs = 0">选择源单</view>
                <view :class="tabs == 1 ? 'on':''" @tap="tabs = 1">表头信息</view>
                <view :class="tabs == 2 ? 'on':''" @tap="tabs = 2">物料信息</view>
                <view :class="tabs == 3 ? 'on':''" @tap="tabs = 3">条码信息</view>
                <view :class="tabs == 4 ? 'on':''" @tap="tabs = 4">分步式调出条码</view>
            </view>
 
            <view v-if="tabs == 0">
                <view class="form-item">
                    <view class="title">源单类型:</view>
                    <view class="right" v-show="showHMainSourceBillType">
                        <picker :range="arrayHMainSourceBillType" v-model="HMainSourceBillTypeIndex"
                            @change="HMainSourceBillTypeChange">
                            <input name="HMainSourceBillType" disabled :value="HMainSourceBillType" placeholder="请选择源单类型" />
                            <view class="picker-overlay"></view>
                        </picker>
                    </view>
                    <view class="righton" v-show="!showHMainSourceBillType">
                        <input name="HMainSourceBillType" disabled :value="HMainSourceBillType" placeholder="请选择源单类型" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">源单单号:</view>
                    <view class="right" v-show="showHSourceBillNo">
                        <input :focus="HSourcebillNoFocus" type="text" @confirm="onHSourceBillNoConfirmHandler"
                            name="HSourceBillNo" v-model="hform.HSourceBillNo" placeholder="请输入源单单号" />
                    </view>
                    <view class="icon-wrapper" v-show="showHSourceBillNo" :disabled="hform.HMainSourceBillType === -1">
                        <uni-icons type="search" size="20" @click="showBillList"></uni-icons>
                    </view>
                    <view class="icon-wrapper" v-show="showHSourceBillNo">
                        <uni-icons type="right" size="20" @click="onHSourceBillNoConfirmHandler"></uni-icons>
                    </view>
                    <view class="righton" v-show="!showHSourceBillNo">
                        <input name="HSourceBillNo" disabled v-model="hform.HSourceBillNo" placeholder="请输入源单单号" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调拨类型:</view>
                    <view class="righton">
                        <input name="HStockStyle" disabled v-model="hform.HStockStyle" placeholder="请选择调拨类型" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">日期:</view>
                    <view class="right">
                        <picker mode="date" v-model="hform.HDate" @change="HDateChange">
                            <input disabled :value="hform.HDate" placeholder="请选择日期" />
                            <view class="picker-overlay"></view>
                        </picker>
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">制单人:</view>
                    <view class="righton">
                        <input name="HMaker" disabled v-model="hform.HMaker" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">单据号:</view>
                    <view class="righton">
                        <input name="HBillNo" disabled v-model="hform.HBillNo" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">单据ID:</view>
                    <view class="righton">
                        <input name="HInterID" disabled v-model="hform.HInterID" />
                    </view>
                </view>
            </view>
 
            <view v-if="tabs == 1">
                <view class="form-item">
                    <view class="title">调入仓库:</view>
                    <view class="right">
                        <uni-combox :candidates="arrayHWHInName" placeholder="请输入(或扫描)仓库" v-model="hform.HWHName"
                            @input="HWHInNameChange" @confirm="HWHNameInScan"></uni-combox>
                    </view>
                    <view class="icon-wrapper">
                        <uni-icons type="more" size="20" @click="showWarehouseList('HWHID')"></uni-icons>
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调入仓位:</view>
                    <view class="right" v-show="HIsStockMgr">
                        <uni-combox :candidates="arrayHStockPlaceInNameComputed" placeholder="请输入(或扫描)仓位"
                            v-model="hform.HStockPlaceName" @input="HStockPlaceInNameChange"
                            @confirm="HStockPlaceNameInScan"></uni-combox>
                    </view>
                    <view class="righton" v-show="!HIsStockMgr">
                        <input v-model="hform.HStockPlaceName" :disabled="!HIsStockMgr" placeholder="不可操作" />
                    </view>
                    <view class="icon-wrapper" v-show="HIsStockMgr">
                        <uni-icons type="more" size="20" @click="showStockPlaceList('HSpID')"></uni-icons>
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">部门:</view>
                    <view class="right">
                        <uni-combox :candidates="arrayHDeptName" placeholder="请选择部门" v-model="hform.HDeptName"
                            @input="HDeptNameChange"></uni-combox>
                    </view>
                    <view class="icon-wrapper">
                        <uni-icons type="more" size="20" @click="showDepartmentList"></uni-icons>
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调出组织:</view>
                    <view class="righton">
                        <input name="HStockOutOrgName" disabled v-model="hform.HStockOutOrgName" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调入组织:</view>
                    <view class="righton">
                        <input name="HStockInOrgName" disabled v-model="hform.HStockInOrgName" />
                    </view>
                </view>
            </view>
 
            <view v-if="tabs == 2">
                <view class="list" v-for="(item,index) in Materlist" :key="index">
                    <uni-card :title="item.物料名称" :extra="item.物料代码" style="margin: 10px;" @tap="showMaterialDetail(item)">
                        <view class="card-detail">
                            <view class="detail">
                                <text>源单单号:</text>{{item.源单单号}}
                            </view>
                            <view class="detail">
                                <text>源单数量:</text>{{item.源单数量}}
                            </view>
                            <view class="detail">
                                <text>数量:</text>{{item.数量}}
                            </view>
                            <view class="detail">
                                <text>条码个数:</text>{{item.条码个数}}
                            </view>
                            <view class="detail" v-if="item.规格型号">
                                <text>规格型号:</text>{{item.规格型号}}
                            </view>
                            <view class="detail" v-if="item.辅助属性">
                                <text>辅助属性:</text>{{item.辅助属性}}
                            </view>
                        </view>
                    </uni-card>
                </view>
                <view class="over" v-if="Materlist.length == 0">暂无数据</view>
            </view>
 
            <view v-if="tabs == 4">
                <view class="list" v-for="(item,index) in FIFOlist" :key="index">
                    <uni-card :title="item.HMaterName" :extra="item.HMaterNumber" style="margin: 10px;"
                        @tap="showSourceBarCodeDetail(item)">
                        <view class="card-detail">
                            <view class="detail">
                                <text>数量:</text>{{item.HQty}}
                            </view>
                            <view class="detail">
                                <text>源单数量:</text>{{item.HQtyMust}}
                            </view>
                            <view class="detail">
                                <text>条码编号:</text>{{item.HBarCode}}
                            </view>
                            <view class="detail">
                                <text>物料代码:</text>{{item.HMaterNumber}}
                            </view>
                            <view class="detail">
                                <text>物料名称:</text>{{item.HMaterName}}
                            </view>
                            <view class="detail">
                                <text>规格型号:</text>{{item.HMaterModel}}
                            </view>
                            <view class="detail">
                                <text>HMaterID:</text>{{item.HMaterID}}
                            </view>
                            <view class="detail" v-if="item.HBatchNo">
                                <text>批号:</text>{{item.HBatchNo}}
                            </view>
                            <view class="detail" v-if="item.HAuxPropName">
                                <text>辅助属性:</text>{{item.HAuxPropName}}
                            </view>
                            <view class="detail" v-if="item.HSourceBillNo">
                                <text>源单单号:</text>{{item.HSourceBillNo}}
                            </view>
                        </view>
                    </uni-card>
                </view>
                <view class="over" v-if="FIFOlist.length == 0">暂无数据</view>
            </view>
 
            <view v-if="tabs == 3">
                <view class="form-item">
                    <view class="title">条码:</view>
                    <view class="righton">
                        <input name="HBarCode_B" disabled v-model="hform.HBarCode_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">物料:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HMaterName_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">规格:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HMaterModel_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">批次:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HBatchNo_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">单位:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HUnitName_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">数量:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HQty_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">容量:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HTMQty_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调入仓库:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HWHName_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调入仓位:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HSPName_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调出仓库:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HSCWHName_B" />
                    </view>
                </view>
                <view class="form-item">
                    <view class="title">调出仓位:</view>
                    <view class="righton">
                        <input disabled v-model="hform.HSCSPName_B" />
                    </view>
                </view>
            </view>
 
            <view class="bottom-btn">
                <button class="btn-a" size="mini" @tap="submit">提交</button>
                <view style="flex: 1;"></view>
                <button class="btn-a" size="mini" @tap="addNew">新增</button>
                <button class="btn-c" size="mini" @tap="goBack">退出</button>
            </view>
        </view>
 
        <!-- 弹窗组件 -->
        <BillListPopupVue ref="billList" :HBillType="hform.HBillType" :HSourceBillType="hform.HMainSourceBillType || 1250"
            :HStockOrgID="hform.HStockOrgID"></BillListPopupVue>
<!--        <BarCodePopupVue ref="barcodePopup"></BarCodePopupVue> -->
        <!-- <MaterialEditPopup ref="materialEdit" :materialData="selectedMaterial" @on-save="onMaterialSave"></MaterialEditPopup> -->
    </view>
</template>
 
<script>
    import {
        CommonUtils
    } from '../../utils/common';
    import getDateTime from '@/utils/getdateTime.js';
    import {
        getUserInfo
    } from "@/utils/auth.js";
    import BillListPopupVue from '../../components/BillListPopup/BillListPopup.vue';
    
 
    export default {
        data() {
            return {
                pageTitleName: '分步式调入单',
                userInfo: getUserInfo(),
                serverUrl: uni.getStorageSync('serverUrl') || 'http://47.96.97.237/API',
                HModName: 'Kf_MoveStockStepInBill_PDA',
                ModRightName: 'CE_MoveStockStepIn',
                OperationType: 1,
                HInterID_Temp: '',
 
                HSCIsStockMgr: false,
                HIsStockMgr: false,
                showHMainSourceBillType: true,
                showHSourceBillNo: true,
                barCodeFocus: false,
                HSourcebillNoFocus: false,
 
                tabs: 0,
                HMainSourceBillTypeIndex: 0,
                HMainSourceBillType: '分步式调出单',
                arrayHMainSourceBillType: ['分步式调出单', '手工录入'],
                arrayHMainSourceBillValue: [1250, -1],
 
                btnType: 0, //0新增,1修改,2审核,3反审核
 
                arrayHWHName: [], //调出仓库
                HWHNameList: [],
                arrayHStockPlaceName: [], //调出仓位
                HStockPlaceNameList: [],
                arrayHWHInName: [], // 调入仓库
                HWHInNameList: [],
                arrayHStockPlaceInName: [], //调入仓位
                HStockPlaceInNameList: [],
                arrayHDeptName: [], //部门
                HDeptNameList: [],
                arrayHOrgName: [], // 组织
                arrayHOrgValue: [], // 组织对应ID
 
                Materlist: [],
                FIFOlist: [],
                selectedMaterial: {},
 
                hform: {
                    HBillType: 1251,
                    HBillerID: uni.getStorageSync('HBillerID'),
                    HRedBlueFlag: false,
 
                    HStockOutOrgName: uni.getStorageSync('Organization'),
                    HStockInOrgName: uni.getStorageSync('Organization'),
                    HStockInOrgID: uni.getStorageSync('OrganizationID'),
                    HStockOutOrgID: uni.getStorageSync('OrganizationID'),
 
                    HBarCode: '',
                    HQty: '',
                    HSCWHName: getUserInfo().HWHName,
                    HSCWHID: getUserInfo().HWhID,
                    HWHName: getUserInfo().HWHName,
                    HWHID: getUserInfo().HWhID,
 
                    HStockStyle: '组织内调拨',
                    HOutStockPlaceName: getUserInfo().HSPName,
                    HOutStockPlaceID: getUserInfo().HSPID,
                    HStockPlaceName: getUserInfo().HSPName,
                    HStockPlaceID: getUserInfo().HSPID,
                    HStockOrgID: uni.getStorageSync('OrganizationID'),
                    HMainSourceBillType: 1250,
                    HSourceBillNo: '',
 
                    HDate: getDateTime.dateTimeStr('y-m-d'),
                    HMaker: uni.getStorageSync('HUserName'),
                    HBillNo: '',
                    HInterID: '',
 
                    HDeptName: getUserInfo().HDept,
                    HDeptID: getUserInfo().HDeptID,
 
                    // 条码信息
                    HBarCode_B: '',
                    HMaterName_B: '',
                    HMaterModel_B: '',
                    HBatchNo_B: '',
                    HUnitName_B: '',
                    HQty_B: '',
                    HTMQty_B: '',
                    HWHName_B: '',
                    HSPName_B: '',
                    HSCWHName_B: '',
                    HSCSPName_B: '',
                }
            }
        },
        components: {
            BillListPopupVue,
        },
        
        async onLoad(e) {
            console.log('页面参数:', e);
            await this.getOrganization()
            this.OperationType = e.OperationType || 1;
            
            if (e.HInterID) {
                this.HInterID_Temp = e.HInterID
                this.RoadBillMain(e.HInterID)
                this.barCodeFocus = true
            } else {
                this.HSourcebillNoFocus = true
                this.getNewData()
            }
 
            this.getHBaseList()
            this.getHDeptList()
            this.checkModRight()
            
            uni.$on('BillSelectComplete', (e) => {
                console.log("接收到的源单: ", e.HBillNo)
                this.getSourceBarCodeData(e.HBillNo)
                this.$refs.billList.exit()
            })
 
            uni.$on('WarehouseSelectComplete', (data) => {
                this.handleWarehouseSelect(data)
            })
 
            uni.$on('StockPlaceSelectComplete', (data) => {
                this.handleStockPlaceSelect(data)
            })
 
            uni.$on('DepartmentSelectComplete', (data) => {
                this.handleDepartmentSelect(data)
            })
        },
        onUnload() {
            uni.$off('BillSelectComplete')
            uni.$off('WarehouseSelectComplete')
            uni.$off('StockPlaceSelectComplete')
            uni.$off('DepartmentSelectComplete')
        },
        computed: {
            arrayHStockPlaceNameComputed: {
                get() {
                    // 动态计算对应调出仓库的仓位
                    return this.HStockPlaceNameList
                        .filter(e => e['所属仓库'] == this.hform.HSCWHName)
                        .map(e => e['仓位名称'])
                }
            },
            arrayHStockPlaceInNameComputed: {
                get() {
                    // 动态计算对应调入仓库的仓位
                    return this.HStockPlaceInNameList
                        .filter(e => e['所属仓库'] == this.hform.HWHName)
                        .map(e => e['仓位名称'])
                }
            }
        },
        methods: {
            // 用户模块权限判断
            async checkModRight() {
                try {
                    let res = await CommonUtils.doRequest2Sync({
                        url: '/WEBSController/CheckModRight_Json',
                        data: {
                            "ModRightName": this.ModRightName,
                            "HUserName": this.hform.HMaker
                        }
                    })
                    if (res.data.count != 1) {
                        uni.showModal({
                            title: '温馨提示',
                            content: res.data.Message,
                            showCancel: false,
                            success: () => {
                                uni.navigateBack()
                            }
                        })
                    }
                } catch (error) {
                    console.error('权限检查失败:', error)
                }
            },
 
            // 获取组织数据
            async getOrganization() {
                try {
                    let res = await CommonUtils.doRequest2Sync({
                        url: '/Web/GetOrganizations'
                    })
                    if (res.data.count == 1) {
                        this.arrayHOrgName = []
                        this.arrayHOrgValue = []
                        Array.from(res.data.data).forEach(e => {
                            this.arrayHOrgName.push(e.Name)
                            this.arrayHOrgValue.push(e.ID)
                        })
                    }
                } catch (error) {
                    console.error('获取组织数据失败:', error)
                }
            },
 
            // 扫描条码
            toScanCode() {
                uni.scanCode({
                    onlyFromCamera: true,
                    success: (res) => {
                        console.log('条码内容:' + res.result);
                        this.hform.HBarCode = res.result
                        this.getCode(this.hform.HBarCode)
                    }
                });
            },
 
            // 处理条码
            async getCode(HBarCode) {
                if (!HBarCode) {
                    this.playSound(0)
                    uni.showToast({
                        title: '条码为空,请扫描条码!',
                        icon: 'none'
                    })
                    return
                }
 
                const HDeleteFlag = HBarCode.substring(0, 1);
                const sBarCode = HBarCode.slice(1);
 
                if (HDeleteFlag == "*") {
                    // 删除条码
                    await this.deleteBarCode(sBarCode)
                } else {
                    // 处理条码
                    await this.processBarCode(HBarCode)
                }
            },
 
            // 删除条码
            async deleteBarCode(sBarCode) {
                try {
                    let res = await CommonUtils.doRequest2Sync({
                        url: '/WEBSController/set_DelPonderationBillMain_Temp_BarCode_Json',
                        data: {
                            HInterID: this.hform.HInterID,
                            HBillType: this.hform.HBillType,
                            HBarCode: sBarCode
                        }
                    })
                    
                    if (res.data.count == 1) {
                        this.playSound(1)
                        this.hform.HQty = ''
                        this.DisBillEntryList()
                    } else {
                        this.playSound(0)
                        uni.showToast({
                            title: res.data.Message,
                            icon: 'none'
                        })
                    }
                } catch (error) {
                    this.playSound(0)
                    uni.showToast({
                        title: '删除条码失败',
                        icon: 'none'
                    })
                }
                this.refreshBarCodeState()
            },
 
            // 处理条码
            async processBarCode(sBarCode) {
                // 仓库、仓位文本框为空时,清空对应ID
                if (!this.hform.HWHName) this.hform.HWHID = 0
                if (!this.hform.HStockPlaceName) this.hform.HStockPlaceID = 0
                if (!this.hform.HSCWHName) this.hform.HSCWHID = 0
                if (!this.hform.HOutStockPlaceName) this.hform.HOutStockPlaceID = 0
 
                const sHQty = this.hform.HQty || 0
                const HSourceFlag = !!this.hform.HSourceBillNo
 
                try {
                    console.log('开始处理条码:', sBarCode, sHQty, HSourceFlag, this.hform);
                    let res = await CommonUtils.doRequest2Sync({
                        url: '/WEBSController/get_BarCode_MoveStock_New_Json',
                        data: {
                            sBarCode: sBarCode,
                            HInterID: this.hform.HInterID,
                            HBillType: this.hform.HBillType,
                            HBillNo: this.hform.HBillNo,
                            HMaker: this.hform.HMaker,
                            HWhID: this.hform.HWHID,
                            HSPID: this.hform.HStockPlaceID,
                            HSCWHID: this.hform.HSCWHID,
                            HSCSPID: this.hform.HOutStockPlaceID,
                            HQty: sHQty,
                            SourceFlag: HSourceFlag,
                            HSourceBillNo: this.hform.HSourceBillNo,
                            HSourceBillType: this.hform.HMainSourceBillType,
                            HStockInOrgID: this.hform.HStockInOrgID,
                            HStockOutOrgID: this.hform.HStockOutOrgID,
                            HScanStyle: "",
                            HCustom1: "",
                            HCustom2: ""
                        }
                    })
                    
                    if (res.data.count == 1) {
                        this.playSound(1)
                        await this.handleBarCodeResult(res.data.data)
                        this.DisBillEntryList()
                        this.hform.HQty = ''
                    } else {
                        this.playSound(0)
                        uni.showToast({
                            title: res.data.Message,
                            icon: 'none'
                        })
                    }
                } catch (error) {
                    this.playSound(0)
                    uni.showToast({
                        title: '处理条码失败',
                        icon: 'none'
                    })
                }
                this.refreshBarCodeState()
            },
 
            // 处理条码扫描结果
            async handleBarCodeResult(data) {
                switch (data.hBarTypeField) {
                    case '仓库条码':
                        this.handleWarehouseBarCode(data)
                        break
                    case '仓位条码':
                        this.handleStockPlaceBarCode(data)
                        break
                    case '部门条码':
                        this.handleDepartmentBarCode(data)
                        break
                    case '源单条码':
                        await this.handleSourceBillBarCode(data)
                        break
                    default:
                        await this.handleMaterialBarCode(data)
                }
            },
 
            // 处理仓库条码
            handleWarehouseBarCode(data) {
                this.hform.HSCWHName = data.hWhNameField
                this.hform.HSCWHID = data.hWhIDField
                this.hform.HOutStockPlaceName = data.hSPNameField
                this.hform.HOutStockPlaceID = data.hSPIDField
                this.HSCIsStockMgr = data.hSPFlagField != 0
            },
 
            // 处理仓位条码
            handleStockPlaceBarCode(data) {
                this.hform.HOutStockPlaceName = data.hSPNameField
                this.hform.HOutStockPlaceID = data.hSPIDField
                this.hform.HSCWHName = data.hWhNameField
                this.hform.HSCWHID = data.hWhIDField
            },
 
            // 处理部门条码
            handleDepartmentBarCode(data) {
                this.hform.HDeptName = data.hDeptNameField
                this.hform.HDeptID = data.hDeptIDField
                this.tabs = 1
            },
 
            // 处理源单条码
            async handleSourceBillBarCode(data) {
                await this.setSourceBillInfo(data)
                this.tabs = 3
            },
 
            // 处理物料条码
            async handleMaterialBarCode(data) {
                if (!this.hform.HSourceBillNo) {
                    await this.setSourceBillInfo(data)
                }
                this.tabs = 2
            },
 
            // 设置源单信息
            async setSourceBillInfo(data) {
                if (data.hDeptIDField != 0) {
                    this.hform.HDeptID = data.hDeptIDField
                    this.hform.HDeptName = data.hDeptNameField
                }
 
                this.hform.HSourceBillNo = data.hSourceBillNoField
                this.hform.HMainSourceBillType = data.hSourceBillTypeField
 
                // 更新源单类型显示
                const index = this.arrayHMainSourceBillValue.findIndex(e => e == data.hSourceBillTypeField)
                if (index !== -1) {
                    this.HMainSourceBillType = this.arrayHMainSourceBillType[index]
                    this.HMainSourceBillTypeIndex = index
                    this.showHMainSourceBillType = false
                }
 
                if (data.hMulSourceFlagField == 0) {
                    this.showHSourceBillNo = false
                }
 
                this.hform.HStockStyle = data.hStockStyleField
                this.hform.HStockInOrgID = data.hStockInOrgIDField
                this.hform.HStockOutOrgID = data.hStockOutOrgIDField
 
                // 更新组织显示
                const inOrgIndex = this.arrayHOrgValue.findIndex(e => e == data.hStockInOrgIDField)
                const outOrgIndex = this.arrayHOrgValue.findIndex(e => e == data.hStockOutOrgIDField)
                if (inOrgIndex !== -1) {
                    this.hform.HStockInOrgName = this.arrayHOrgName[inOrgIndex]
                }
                if (outOrgIndex !== -1) {
                    this.hform.HStockOutOrgName = this.arrayHOrgName[outOrgIndex]
                }
 
                // 如果组织发生变化,清空仓库仓位
                if (this.hform.HStockInOrgID != uni.getStorageSync('OrganizationID')) {
                    this.clearInWarehouseData()
                }
                if (this.hform.HStockOutOrgID != uni.getStorageSync('OrganizationID')) {
                    this.clearOutWarehouseData()
                }
            },
 
            // 清空调入仓库数据
            clearInWarehouseData() {
                this.hform.HWHID = 0
                this.hform.HWHName = ''
                this.hform.HStockPlaceID = 0
                this.hform.HStockPlaceName = ''
                this.HIsStockMgr = true
            },
 
            // 清空调出仓库数据
            clearOutWarehouseData() {
                this.hform.HSCWHID = 0
                this.hform.HSCWHName = ''
                this.hform.HOutStockPlaceID = 0
                this.hform.HOutStockPlaceName = ''
                this.HSCIsStockMgr = true
            },
 
            // 刷新条码输入状态
            async refreshBarCodeState() {
                this.barCodeFocus = false
                await this.$nextTick(() => {
                    this.hform.HBarCode = ""
                    this.barCodeFocus = true
                })
            },
 
            // 播放提示音
            playSound(type) {
                const innerAudioContext = uni.createInnerAudioContext();
                innerAudioContext.src = type == 1 ? '/static/success.wav' : '/static/jingbao.wav';
                innerAudioContext.play();
            },
 
            // 扫描仓库码
            async HWHNameOutScan(e) {
                let index = this.HWHNameList.findIndex(elem => elem['条码编号'] == e)
                if (index == -1) {
                    uni.showToast({
                        icon: 'none',
                        title: '扫描仓库条码对应的仓库不存在...'
                    })
                } else {
                    this.HSCWHNameChange(this.HWHNameList[index]['仓库名称'])
                }
            },
 
            // 扫描仓位码
            async HStockPlaceOutNameScan(e) {
                let index = this.HStockPlaceNameList.findIndex(elem => elem['条码编号'] == e)
               // 不先置空的话,数据再次扫描相同的仓位码 不会触发组件内的刷新
                this.hform.HStockPlaceID = 0
                this.hform.HStockPlaceName = ''
                await this.$nextTick()
                if (index == -1) {
                    uni.showToast({
                        icon: 'none',
                        title: '扫描仓位条码对应的仓位不存在...'
                    })
                } else {
                    this.HOutStockPlaceNameChange(this.HStockPlaceNameList[index]['仓位名称'])
                }
            },
 
            // 扫描调入仓库码
            async HWHNameInScan(e) {
                let index = this.HWHInNameList.findIndex(elem => elem['条码编号'] == e)
                if (index == -1) {
                    uni.showToast({
                        icon: 'none',
                        title: '扫描仓库条码对应的仓库不存在...'
                    })
                } else {
                    this.HWHInNameChange(this.HWHInNameList[index]['仓库名称'])
                }
            },
 
            // 扫描调入仓位码
            async HStockPlaceNameInScan(e) {
                let index = this.HStockPlaceInNameList.findIndex(elem => elem['条码编号'] == e)
               // 不先置空的话,数据再次扫描相同的仓位码 不会触发组件内的刷新
                this.hform.HStockPlaceID = 0
                this.hform.HStockPlaceName = ''
                await this.$nextTick()
                if (index == -1) {
                    uni.showToast({
                        icon: 'none',
                        title: '扫描仓位条码对应的仓位不存在...'
                    })
                } else {
                    this.HStockPlaceInNameChange(this.HStockPlaceInNameList[index]['仓位名称'])
                }
            },
 
            // 源单类型变更
            HMainSourceBillTypeChange(e) {
                this.HMainSourceBillTypeIndex = e.detail.value
                this.HMainSourceBillType = this.arrayHMainSourceBillType[this.HMainSourceBillTypeIndex]
                this.hform.HMainSourceBillType = this.arrayHMainSourceBillValue[this.HMainSourceBillTypeIndex]
            },
 
            // 源单单号确认
            onHSourceBillNoConfirmHandler() {
                if (this.hform.HMainSourceBillType == -1) {
                    this.playSound(1)
                    return
                }
                this.getSourceBarCodeData(this.hform.HSourceBillNo)
            },
 
            // 获取源单数据
            async getSourceBarCodeData(HSourceBillNo) {
                try {
                    let res = await CommonUtils.doRequest2Sync({
                        url: '/WEBSController/get_SourceBarCode_MoveStockStepIn_Json',
                        data: {
                            HInterID: this.hform.HInterID,
                            HBillNo: this.hform.HBillNo,
                            HBillType: this.hform.HBillType,
                            HSourceBillNo: HSourceBillNo,
                            HSourceBillType: this.hform.HMainSourceBillType,
                            HMaker: this.hform.HMaker,
                            HStockInOrgID: this.hform.HStockInOrgID,
                            HStockOutOrgID: this.hform.HStockOutOrgID
                        }
                    })
 
                    if (res.data.count == 1) {
                        this.playSound(1)
                        await this.setSourceBillInfo(res.data.data)
                        this.tabs = 2
                        this.barCodeFocus = true
                        this.DisBillEntryList()
                    } else {
                        this.playSound(0)
                        uni.showToast({
                            title: res.data.Message,
                            icon: 'none'
                        })
                        this.refreshHSourceBillState()
                    }
                } catch (error) {
                    this.playSound(0)
                    uni.showToast({
                        title: '获取源单数据失败',
                        icon: 'none'
                    })
                    this.refreshHSourceBillState()
                }
            },
 
            // 刷新源单输入状态
            async refreshHSourceBillState() {
                this.HSourcebillNoFocus = false
                await this.$nextTick(() => {
                    this.hform.HSourceBillNo = ""
                    this.HSourcebillNoFocus = true
                })
            },
 
            // 显示源单列表
            showBillList() {
                this.$refs.billList.showPopup()
            },
 
            // 日期变更
            HDateChange(e) {
                this.hform.HDate = e.detail.value
            },
 
            // 调出仓库变更
            HSCWHNameChange(e) {
                const warehouse = this.HWHNameList.find(item => item.仓库名称 == e)
                if (warehouse) {
                    this.hform.HSCWHName = warehouse.仓库名称
                    this.hform.HSCWHID = warehouse.HItemID
                    this.HSCIsStockMgr = warehouse['启用仓位'] == 'Y'
                    if (!this.HSCIsStockMgr) {
                        this.hform.HOutStockPlaceName = ''
                        this.hform.HOutStockPlaceID = ''
                    }
                }
            },
 
            // 调出仓位变更
            HOutStockPlaceNameChange(e) {
                const stockPlace = this.HStockPlaceNameList.find(item => item.仓位名称 == e)
                if (stockPlace) {
                    this.hform.HOutStockPlaceName = stockPlace.仓位名称
                    this.hform.HOutStockPlaceID = stockPlace.HMainID
                }
            },
 
            // 调入仓库变更
            HWHInNameChange(e) {
                const warehouse = this.HWHInNameList.find(item => item.仓库名称 == e)
                if (warehouse) {
                    this.hform.HWHName = warehouse.仓库名称
                    this.hform.HWHID = warehouse.HItemID
                    this.HIsStockMgr = warehouse['启用仓位'] == 'Y'
                    if (!this.HIsStockMgr) {
                        this.hform.HStockPlaceName = ''
                        this.hform.HStockPlaceID = ''
                    }
                }
            },
 
            // 调入仓位变更
            HStockPlaceInNameChange(e) {
                const stockPlace = this.HStockPlaceInNameList.find(item => item.仓位名称 == e)
                if (stockPlace) {
                    this.hform.HStockPlaceName = stockPlace.仓位名称
                    this.hform.HStockPlaceID = stockPlace.HMainID
                }
            },
 
            // 部门变更
            HDeptNameChange(e) {
                const dept = this.HDeptNameList.find(item => item.部门名称 == e)
                if (dept) {
                    this.hform.HDeptName = dept.部门名称
                    this.hform.HDeptID = dept.HItemID
                }
            },
 
            // 获取基础数据
            getHBaseList() {
                // 获取仓库列表
                CommonUtils.doRequest2({
                    url: '/Gy_Warehouse/list',
                    data: {
                        sWhere: "",
                        user: uni.getStorageSync('HUserName'),
                        Organization: uni.getStorageSync('Organization')
                    },
                    resFunction: (res) => {
                        if (res.data.count == 1) {
                            this.HWHNameList = res.data.data
                            this.HWHInNameList = res.data.data
                            this.arrayHWHName = res.data.data.map(item => item.仓库名称)
                            this.arrayHWHInName = res.data.data.map(item => item.仓库名称)
                        }
                    }
                })
 
                // 获取仓位列表
                CommonUtils.doRequest2({
                    url: '/Gy_StockPlace/list',
                    data: {
                        sWhere: "",
                        user: uni.getStorageSync('HUserName'),
                        Organization: uni.getStorageSync('Organization')
                    },
                    resFunction: (res) => {
                        if (res.data.count == 1) {
                            this.HStockPlaceNameList = res.data.data
                            this.HStockPlaceInNameList = res.data.data
                            this.arrayHStockPlaceName = res.data.data.map(item => item.仓位名称)
                            this.arrayHStockPlaceInName = res.data.data.map(item => item.仓位名称)
                        }
                    }
                })
            },
 
            // 获取部门列表
            getHDeptList() {
                CommonUtils.doRequest2({
                    url: '/Gy_Department/list',
                    data: {
                        sWhere: "",
                        user: uni.getStorageSync('HUserName'),
                        Organization: uni.getStorageSync('Organization')
                    },
                    resFunction: (res) => {
                        if (res.data.count == 1) {
                            this.HDeptNameList = res.data.data
                            this.arrayHDeptName = res.data.data.map(item => item.部门名称)
                        }
                    }
                })
            },
 
            // 显示仓库列表
            showWarehouseList(type) {
                const HOrgID = type === 'HSCWHID' ? this.hform.HStockOutOrgID : this.hform.HStockInOrgID
                uni.navigateTo({
                    url: `/pages/Baseset/WarehouseList?Type=${type}&HOrgID=${HOrgID}`
                })
            },
 
            // 显示仓位列表
            showStockPlaceList(type) {
                const HWhID = type === 'HOSpID' ? this.hform.HSCWHID : this.hform.HWHID
                const HOrgID = type === 'HOSpID' ? this.hform.HStockOutOrgID : this.hform.HStockInOrgID
                uni.navigateTo({
                    url: `/pages/Baseset/StockPlaceList?HWhID=${HWhID}&Type=${type}&HOrgID=${HOrgID}`
                })
            },
 
            // 显示部门列表
            showDepartmentList() {
                uni.navigateTo({
                    url: `/pages/Baseset/DepartmentList?HStockOrgID=${this.hform.HStockOrgID}&Type=HDept1`
                })
            },
 
            // 处理仓库选择结果
            handleWarehouseSelect(data) {
                if (data.type === 'HSCWHID') {
                    this.hform.HSCWHName = data.data[0].HName
                    this.hform.HSCWHID = data.data[0].HItemID
                    this.hform.HOutStockPlaceName = data.data[0].HSPName
                    this.hform.HOutStockPlaceID = data.data[0].HSPID
                    this.HSCIsStockMgr = data.data[0].HSPFlag != 0
                } else if (data.type === 'HWHID') {
                    this.hform.HWHName = data.data[0].HName
                    this.hform.HWHID = data.data[0].HItemID
                    this.hform.HStockPlaceName = data.data[0].HSPName
                    this.hform.HStockPlaceID = data.data[0].HSPID
                    this.HIsStockMgr = data.data[0].HSPFlag != 0
                }
            },
 
            // 处理仓位选择结果
            handleStockPlaceSelect(data) {
                if (data.type === 'HOSpID') {
                    this.hform.HOutStockPlaceName = data.data[0].HName
                    this.hform.HOutStockPlaceID = data.data[0].HItemID
                    this.hform.HSCWHName = data.data[0].HWhName
                    this.hform.HSCWHID = data.data[0].HWHID
                } else if (data.type === 'HSpID') {
                    this.hform.HStockPlaceName = data.data[0].HName
                    this.hform.HStockPlaceID = data.data[0].HItemID
                    this.hform.HWHName = data.data[0].HWhName
                    this.hform.HWHID = data.data[0].HWHID
                }
            },
 
            // 处理部门选择结果
            handleDepartmentSelect(data) {
                this.hform.HDeptName = data.data[0].HName
                this.hform.HDeptID = data.data[0].HItemID
            },
 
            // 显示物料明细
            showMaterialDetail(item) {
                this.selectedMaterial = item
                // this.$refs.materialEdit.show()
            },
 
            // 显示源单条码明细
            showSourceBarCodeDetail(item) {
                // 可以在这里实现源单条码明细的显示逻辑
                console.log('源单条码明细:', item)
            },
 
            // 物料保存回调
            onMaterialSave() {
                this.DisBillEntryList()
            },
 
            // 显示物料清单
            DisBillEntryList() {
                CommonUtils.doRequest2({
                    url: '/WEBSController/GetBillEntryTmpList_Json',
                    data: {
                        HInterID: this.hform.HInterID,
                        HBillNo: this.hform.HBillNo,
                        HBillType: this.hform.HBillType,
                        HStockOrgID: this.hform.HStockOutOrgID
                    },
                    resFunction: (res) => {
                        if (res.data.count == 1) {
                            const data = res.data.data
                            this.Materlist = data.Materlist
                            if (data.ICMOReportlist[0].HSourceInterID !=0 ) {
                                this.FIFOlist = data.ICMOReportlist
                            }
 
                            // 更新条码信息
                            if (data.BarCodeDetailslist && data.BarCodeDetailslist[0].HBarCode) {
                                const barcode = data.BarCodeDetailslist[0]
                                this.hform.HBarCode_B = barcode.HBarCode
                                this.hform.HMaterName_B = barcode.HMaterName
                                this.hform.HMaterModel_B = barcode.HMaterModel
                                this.hform.HBatchNo_B = barcode.HBatchNo
                                this.hform.HUnitName_B = barcode.HUnitName
                                this.hform.HQty_B = barcode.HQty
                                this.hform.HTMQty_B = barcode.HTMQty
                                this.hform.HWHName_B = barcode.HWHName
                                this.hform.HSPName_B = barcode.HSPName
                                this.hform.HSCWHName_B = barcode.HSCWHName
                                this.hform.HSCSPName_B = barcode.HSCSPName
                            } else {
                                this.clearBarcodeInfo()
                            }
                        } else {
                            this.Materlist = []
                            this.FIFOlist = []
                            this.clearBarcodeInfo()
                        }
                    }
                })
            },
 
            // 清空条码信息
            clearBarcodeInfo() {
                this.hform.HBarCode_B = ''
                this.hform.HMaterName_B = ''
                this.hform.HMaterModel_B = ''
                this.hform.HBatchNo_B = ''
                this.hform.HUnitName_B = ''
                this.hform.HQty_B = ''
                this.hform.HTMQty_B = ''
                this.hform.HWHName_B = ''
                this.hform.HSPName_B = ''
                this.hform.HSCWHName_B = ''
                this.hform.HSCSPName_B = ''
            },
 
            // 获取新单据数据
            getNewData() {
                CommonUtils.doRequest2({
                    url: '/WEBSController/GetMaxBillNoAndID_Json',
                    data: {
                        HBillType: this.hform.HBillType
                    },
                    resFunction: (res) => {
                        if (res.data.count == 1) {
                            this.hform.HInterID = res.data.data[0].HInterID
                            this.hform.HBillNo = res.data.data[0].HBillNo
                        }
                    }
                })
            },
 
            // 加载已有单据
            RoadBillMain(HInterID) {
                CommonUtils.doRequest2({
                    url: '/WEBSController/GetSourceBill_Temp_Json',
                    data: {
                        HInterID: HInterID,
                        HBillType: this.hform.HBillType
                    },
                    resFunction: (res) => {
                        if (res.data.count == 1) {
                            const data = res.data.data[0]
                            this.hform.HInterID = data.HInterID
                            this.hform.HBillNo = data.HBillNo
                            this.hform.HMainSourceBillType = data.HSourceBillType
                            this.hform.HSourceBillNo = data.HSourceBillNo
 
                            // 设置源单类型
                            const index = this.arrayHMainSourceBillValue.findIndex(e => e == data.HSourceBillType)
                            if (index !== -1) {
                                this.HMainSourceBillType = this.arrayHMainSourceBillType[index]
                                this.HMainSourceBillTypeIndex = index
                                this.showHMainSourceBillType = false
                            }
 
                            if (data.HMulSourceBill == 0) {
                                this.showHSourceBillNo = false
                            }
 
                            if (data.HDeptID != 0) {
                                this.hform.HDeptID = data.HDeptID
                                this.hform.HDeptName = data.HDeptName
                            }
 
                            this.hform.HStockStyle = data.HStockStyle
                            this.hform.HStockInOrgID = data.HStockInOrgID
                            this.hform.HStockOutOrgID = data.HStockOutOrgID
 
                            // 设置组织显示
                            const inOrgIndex = this.arrayHOrgValue.findIndex(e => e == data.HStockInOrgID)
                            const outOrgIndex = this.arrayHOrgValue.findIndex(e => e == data.HStockOutOrgID)
                            if (inOrgIndex !== -1) {
                                this.hform.HStockInOrgName = this.arrayHOrgName[inOrgIndex]
                            }
                            if (outOrgIndex !== -1) {
                                this.hform.HStockOutOrgName = this.arrayHOrgName[outOrgIndex]
                            }
 
                            this.tabs = 2
                            this.DisBillEntryList()
                        }
                    }
                })
            },
 
            // 新增单据
            addNew() {
                uni.redirectTo({
                    url: '/pages/fenbushidiaoru/form?OperationType=1'
                })
            },
 
            // 提交单据
            async submit() {
                // 表单验证
                if (!this.hform.HInterID) {
                    uni.showToast({
                        title: '单据内码获取失败,错误的单据内码!',
                        icon: 'none'
                    })
                    return
                }
 
                if (!this.hform.HBillNo) {
                    uni.showToast({
                        title: '单据号获取失败,错误的单据号!',
                        icon: 'none'
                    })
                    return
                }
 
                if (!this.Materlist || this.Materlist.length == 0) {
                    uni.showToast({
                        title: '没有扫码信息,请先扫描条码,确认无误后再提交!',
                        icon: 'none'
                    })
                    return
                }
 
                const hasMaterial = this.Materlist.some(item => item.数量 > 0)
                if (!hasMaterial) {
                    uni.showToast({
                        title: '没有扫描物料条码,请先扫描物料条码,确认无误后再提交!',
                        icon: 'none'
                    })
                    return
                }
 
                // 清空空值的ID
                if (!this.hform.HWHName) this.hform.HWHID = 0
                if (!this.hform.HStockPlaceName) this.hform.HStockPlaceID = 0
                if (!this.hform.HSCWHName) this.hform.HSCWHID = 0
                if (!this.hform.HOutStockPlaceName) this.hform.HOutStockPlaceID = 0
                if (!this.hform.HDeptName) this.hform.HDeptID = 0
 
                try {
                    const sMainStr = JSON.stringify(this.hform)
                    let res = await CommonUtils.doRequest2Sync({
                        url: '/WEBSController/set_SaveMoveStockStepInBill_Json',
                        method: 'POST',
                        data: {
                            oMain: sMainStr
                        }
                    })
 
                    if (res.data.count == 1) {
                        uni.showModal({
                            title: '提示',
                            content: res.data.Message + '。是否继续新增?',
                            success: (res) => {
                                if (res.confirm) {
                                    this.addNew()
                                } else {
                                    if (this.OperationType == 2) {
                                        uni.navigateBack()
                                    } else {
                                        uni.switchTab({
                                            url: '/pages/index/index'
                                        })
                                    }
                                }
                            }
                        })
                    } else {
                        uni.showToast({
                            title: res.data.Message,
                            icon: 'none'
                        })
                    }
                } catch (error) {
                    uni.showToast({
                        title: '提交失败:' + error,
                        icon: 'none'
                    })
                }
            },
 
            // 返回
            goBack() {
                uni.showModal({
                    title: '提示',
                    content: '确认要退出当前页面吗?',
                    success: (res) => {
                        if (res.confirm) {
                            if (this.OperationType == 2) {
                                uni.navigateBack()
                            } else {
                                uni.switchTab({
                                    url: '/pages/index/index'
                                })
                            }
                        }
                    }
                })
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .form {
        width: 668rpx;
        margin: 20rpx auto;
        padding-bottom: 240rpx;
    }
 
    .tabs {
        width: 100%;
        display: flex;
        border-bottom: 1px solid #ddd;
        margin: 20rpx 0;
 
        view {
            width: 20%;
            font-size: 26rpx;
            color: #555;
            text-align: center;
            padding: 16rpx 0;
        }
 
        .on {
            color: #3a78ff;
            font-weight: bold;
            border-bottom: 3px solid #3a78ff;
        }
    }
 
    .form-item {
        display: flex;
        align-items: center;
        font-size: 30rpx;
        padding: 6rpx 0;
        gap: 12rpx;
 
        .title {
            width: 208rpx;
            flex-shrink: 0;
        }
 
        .right {
            flex: 1;
            border-radius: 22rpx;
            border: 1px solid #acacac;
            position: relative;
            display: flex;
        }
 
        .righton {
            flex: 1;
            border-radius: 22rpx;
            border: 1px solid #e4e4e4;
            background-color: #e4e4e4;
        }
 
        input {
            width: 100%;
            padding: 8rpx 20rpx;
            font-size: 30rpx;
        }
 
        .icon-wrapper {
            background-color: #3A78FF;
            border-radius: 100%;
            width: 52rpx;
            height: 52rpx;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
 
            .uni-icons {
                color: #fff !important;
            }
        }
 
        .icon-wrapper[disabled] {
            background-color: rgba(228, 228, 228, 1);
            pointer-events: none;
            touch-action: none;
        }
    }
 
    .bottom-btn {
        box-sizing: border-box;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2rpx 10rpx 2rpx rgba(0, 0, 0, 0.4);
        padding: 30rpx 40rpx 40rpx 40rpx;
        display: flex;
        flex-direction: row;
        gap: 10rpx;
 
        button {
            border-radius: 50rpx;
            width: 180rpx;
            height: 66rpx;
            line-height: 66rpx;
            font-size: 28rpx;
        }
 
        .btn-a {
            background-color: #3A78FF;
            color: #fff;
        }
 
        .btn-c {
            background-color: #acacac;
            color: #fff;
        }
    }
 
    .list {
        width: 100%;
 
        .card-detail {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            line-height: 120%;
 
            .detail {
                font-size: 26rpx;
                margin-bottom: 12rpx;
                color: #555;
                margin-right: 20rpx;
 
                text {
                    color: #999;
                    font-size: 26rpx;
                }
            }
        }
    }
 
    .over {
        text-align: center;
        color: #999;
        padding: 40rpx;
    }
</style>