schangxiang@126.com
2025-09-09 3d8966ba2c81e7e0365c8b123e861d18ee4f94f5
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
import { default as BaseController } from "../../baseController";
import { Post } from "egg-shell-decorators";
import { BaseStorageArea } from "../../../entity/basicInfo/base/baseStorageArea";
import { BasePosition } from "../../../entity/basicInfo/base/basePosition";
import { BaseStorageShelve } from "../../../entity/basicInfo/position/baseStorageShelve";
import { vBaseProductPosition } from "../../../entity/storage/product/vBaseProductPosition";
import { MoreThan } from "typeorm";
// import { BasePlateType } from "../../../entity/basicInfo/base/basePlateType";
 
export default class PositionController extends BaseController {
  //#region GetStorageAreaList 获得库区列表
  /**
   * 获得库区列表
   */
  @Post()
  public async getStorageAreaList() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      var areaList = await this.dbRead.find(BaseStorageArea, {
        where: {
          storage_Id: body.storage_Id,
          userProduct_Id: userInfo.userProduct_Id
        },
        order: {
          orderNo: "DESC",
          storageArea_Id: "ASC"
        }
      });
 
      this.info.result = true;
      this.info.data = areaList;
 
      ctx.body = this.info;
      return;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
      return;
    }
  }
  //#endregion
 
  //#region GetStorageAreaInfo 获得库区信息
  /**
   * 加载下拉框数据
   */
  @Post()
  public async getStorageAreaInfo() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      var areaInfo = await this.dbRead.findOne(BaseStorageArea, {
        storage_Id: body.storage_Id,
        areaCode: body.areaCode,
        userProduct_Id: userInfo.userProduct_Id
      });
      if (areaInfo) {
        this.info.result = true;
        this.info.data = areaInfo;
      } else {
        this.info.result = false;
        this.info.msg = "库区不存在";
      }
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region LoadShelveList 获得库区信息
  /**
   * 获得库区信息
   */
  @Post()
  public async loadShelveList() {
    let { ctx } = this;
    let body = ctx.request.body;
 
    try {
      var storageArea = await this.dbRead.findOne(BaseStorageArea, {
        storage_Id: body.storage_Id,
        areaCode: body.areaCode
      });
 
      if (storageArea != null && storageArea.jsonData && storageArea.jsonData != "[]") {
        this.info.result = true;
        let dataInfo = JSON.parse(storageArea.jsonData);
        dataInfo = ctx.helper.arrayToCase(dataInfo);
        this.info.data = dataInfo;
      } else {
        var areaInfo = await this.dbRead.findOne(BaseStorageArea, {
          storage_Id: body.storage_Id,
          areaCode: body.areaCode
        });
 
        this.info.result = true;
        this.info.data = JSON.parse(areaInfo.jsonData);
      }
 
      ctx.body = this.info;
      return;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
      return;
    }
  }
  //#endregion
 
  //#region getPositionList 获得货位列表
  /**
   * 加载下拉框数据
   */
  @Post()
  public async getPositionList() {
    let { ctx } = this;
    let body = ctx.request.body;
    let where: any = {
      storage_Id: body.storage_Id
    };
    if (body.areaCode) {
      where.areaCode = body.areaCode;
    }
    if (body.positionType) {
      where.positionType = body.positionType;
    }
 
    try {
      var dataList = await this.dbRead.find(BasePosition, {
        select: ["positionName", "positionType", "enable", "isLocked", "isFreeze", "positionLength"],
        where: where,
        order: { position_Id: "ASC" }
      });
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
      return;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
      return;
    }
  }
  //#endregion
 
  //#region loadPositionData 获得货位数据
  /**
   * 获得货位数据
   */
  @Post()
  public async loadPositionData() {
    let { ctx } = this;
    let body = ctx.request.body;
 
    try {
      var sql = `SELECT   productPosition_Id, storage_Id, storageName, positionName, productStorage, orignStorage, validQuantity, 
                    placeholderStorage, maxCapacity,PositionLength
                FROM      vBase_ProductPositionGroup_Position
                WHERE   (storage_Id = @0) AND productStorage>0
                    AND (positionName in(Select positionName from Base_Position Where storage_Id=@0 And areaCode=@1))
                `;
      var dataList = await this.dbRead.query(sql, [body.storage_Id, body.areaCode]);
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
      return;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
      return;
    }
  }
  //#endregion
 
  //#region getPositionStorageList 获得货位列表
  /**
   * 获得货位列表
   */
  @Post()
  public async getPositionStorageList() {
    let { ctx } = this;
    let body = ctx.request.body;
 
    try {
      var dataList = await this.dbRead.find(vBaseProductPosition, {
        select: [
          "className",
          "positionName",
          "productCode",
          "productName",
          "productStorage",
          "totalWeight",
          "purchasePrice",
          "purchaseMoney",
          "inStorageDate"
        ],
        where: {
          userProduct_Id: (await this.userInfo).userProduct_Id,
          storage_Id: body.storage_Id,
          areaCode: body.areaCode,
          positionName: body.positionName,
          productStorage: MoreThan(0)
        },
        order: {
          productPosition_Id: "ASC"
        }
      });
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
      return;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
      return;
    }
  }
  //#endregion
 
  //#region save
  @Post()
  public async save() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      //#region 版本权限控制
      if (!(await ctx.service.common.isSaaSAuth("库区数量"))) {
        this.info.result = false;
        this.info.msg = "当前版本不支持该操作";
        ctx.body = this.info;
        return;
      } else {
        var num = await ctx.service.common.getAuthNum("库区数量");
        if (num) {
          var currentCount = await this.dbRead.find(BaseStorageArea, {
            userProduct_Id: userInfo.userProduct_Id
          });
          if (currentCount && currentCount.length >= num) {
            this.info.result = false;
            this.info.msg = "超出当前版本数量限制,请升级为更高版本!";
 
            ctx.body = this.info;
            return;
          }
        }
      }
      //#endregion
 
      let objAreaData = body.areaData;
      let storage_Id = objAreaData.storage_Id;
      let action = objAreaData.action;
      let storageName = objAreaData.storageName;
      let areaCode = objAreaData.areaCode;
      let positionRegular = objAreaData.positionRegular;
      let channelRegular = objAreaData.channelRegular;
      let shelvesRegular = objAreaData.shelvesRegular;
      let rowRegular = objAreaData.rowRegular;
      let columnRegular = objAreaData.columnRegular;
 
      let pickMode = objAreaData.pickMode;
      let shelveMode = objAreaData.shelveMode;
      let positionType = objAreaData.positionType;
      let channelNum = objAreaData.channelNum;
      let maxCapacity = objAreaData.maxCapacity;
      let rowNum = objAreaData.rowNum;
      let columnNum = objAreaData.columnNum;
      let shelveNumA_1 = shelveMode == "地堆" ? 0 : objAreaData.shelveNumA_1;
      let shelveNumA_2 = shelveMode == "地堆" ? 0 : objAreaData.shelveNumA_2;
      let shelveNumB_1 = shelveMode == "地堆" ? 0 : objAreaData.shelveNumB_1;
      let shelveNumB_2 = shelveMode == "地堆" ? 0 : objAreaData.shelveNumB_2;
      if (!positionRegular) {
        this.info.result = false;
        this.info.msg = "货位编码规则不存在,无法生成货位!";
 
        ctx.body = this.info;
        return;
      }
 
      let thermoclineType = objAreaData.thermoclineType;
      let maxWeight = objAreaData.maxWeight;
      let maxBeatNumber = objAreaData.maxBeatNumber;
      let inventoryRate = objAreaData.inventoryRate;
      //#region 库区校验
      let areaInfo = await this.dbRead.findOne(BaseStorageArea, {
        storage_Id: storage_Id,
        areaCode: areaCode
      });
      if (areaInfo == null) {
        areaInfo = new BaseStorageArea();
        areaInfo.createDate = new Date();
        areaInfo.createID = userInfo.user_Id;
        areaInfo.creator = userInfo.userTrueName;
      } else {
        //区域是否已经生成过库区
        if (action == "add") {
          this.info.result = false;
          this.info.msg = "库区编号已经使用了,不允许重复创建,请选择修改模式!";
 
          ctx.body = this.info;
          return;
        }
        areaInfo.modifyDate = new Date();
        areaInfo.modifyID = userInfo.user_Id;
        areaInfo.modifier = userInfo.userTrueName;
      }
      areaInfo.maxCapacity = maxCapacity;
      areaInfo.channelNum = channelNum;
      areaInfo.columnNum = columnNum;
      areaInfo.rowNum = rowNum;
      areaInfo.pickMode = pickMode;
      areaInfo.shelveMode = shelveMode;
      areaInfo.shelveNumA_1 = shelveNumA_1;
      areaInfo.shelveNumA_2 = shelveNumA_2;
      areaInfo.shelveNumB_1 = shelveNumB_1;
      areaInfo.shelveNumB_2 = shelveNumB_2;
      areaInfo.storage_Id = storage_Id;
      areaInfo.areaCode = areaCode;
      areaInfo.positionType = positionType;
      areaInfo.storageName = storageName;
      areaInfo.positionRegular = positionRegular;
      areaInfo.channelRegular = channelRegular;
      areaInfo.shelvesRegular = shelvesRegular;
      areaInfo.rowRegular = rowRegular;
      areaInfo.columnRegular = columnRegular;
      areaInfo.jsonData = JSON.stringify(body.shelveDataList); // 存放自定义货架信息
 
      areaInfo.platCorpName = userInfo.platCorpName;
      areaInfo.platUserCode = userInfo.platUserCode;
      areaInfo.platUserName = userInfo.platUserName;
      areaInfo.platUser_Id = userInfo.platUser_Id;
      areaInfo.userProductAlias = userInfo.userProductAlias;
      areaInfo.userProductCode = userInfo.userProductCode;
      areaInfo.userProduct_Id = userInfo.userProduct_Id;
 
      areaInfo.thermoclineType = thermoclineType;
      areaInfo.maxWeight = maxWeight;
      areaInfo.maxBeatNumber = maxBeatNumber;
      areaInfo.inventoryRate = inventoryRate;
 
      await this.dbWrite.save(areaInfo);
      //#endregion
 
      let shelveDataList = objAreaData.shelveDataList; //货架信息列表
      this.saveShelve(shelveDataList); //保存自定义货架信息
 
      //通道
      for (let channelIndex = 1; channelIndex <= channelNum; channelIndex++) {
        let channelCode = await this.channelCodeCreator(channelIndex, channelRegular); //(channelIndex < 10 ? "0" : "") + channelIndex;
        if (shelveMode == "地堆") {
          //#region 货架编码
          //let shelveCode = "01";
          let shelveCode = await this.shelveCodeCreator(1, shelvesRegular);
          let shelveInfo = await this.findShelve(shelveDataList, storage_Id, areaCode, channelCode, shelveCode);
          let _rowNum = rowNum;
          let _columnNum = columnNum;
          if (shelveInfo != null) {
            _rowNum = shelveInfo.rowNum;
            _columnNum = shelveInfo.columnNum;
          }
          //行数据
          for (let rowIndex = 1; rowIndex <= _rowNum; rowIndex++) {
            let rowCode = await this.rowCodeCreator(rowIndex, rowRegular); //(rowIndex < 10 ? "0" : "") + rowIndex;
            //列数据
            for (let columnIndex = 1; columnIndex <= _columnNum; columnIndex++) {
              //#region 货位编码
              let columnCode = await this.columnCodeCreator(columnIndex, columnRegular); //(columnIndex < 10 ? "0" : "") + columnIndex;
              var positionTmpl = positionRegular; // "{库区}-{通道}{货架}{层}{列}";
              if (shelveInfo != null) {
                //自定义编码规则
                var _positionRegular = "";
                var _rowNo = (rowIndex < 10 ? "0" : "") + rowIndex;
                var _colNo = (columnIndex < 10 ? "0" : "") + columnIndex;
                if (shelveInfo.columnConfigs != null) {
                  // 列级别配置
                  for (var item of shelveInfo.columnConfigs) {
                    if (item.colNo == _colNo) {
                      _positionRegular = item.positionRegular;
                    }
                  }
                }
                if (!_positionRegular && shelveInfo.rowConfigs != null) {
                  // 层级别配置
                  for (var item of shelveInfo.rowConfigs) {
                    if (item.rowNo == _rowNo) {
                      _positionRegular = item.positionRegular;
                    }
                  }
                }
 
                if (!_positionRegular) {
                  // 通道级别配置
                  positionTmpl = shelveInfo.positionRegular;
                } else {
                  positionTmpl = _positionRegular;
                }
              }
              positionTmpl = positionTmpl.replace("{库区}", areaCode);
              positionTmpl = positionTmpl.replace("{通道}", channelCode);
              positionTmpl = positionTmpl.replace("{货架}", shelveCode);
              positionTmpl = positionTmpl.replace("{层}", rowCode);
              positionTmpl = positionTmpl.replace("{列}", columnCode);
              //#endregion
 
              //#region 创建货位
              let posInfo = await this.dbRead.findOne(BasePosition, {
                storage_Id: storage_Id,
                areaCode: areaCode,
                positionName: positionTmpl
              });
              if (posInfo == null) {
                posInfo = new BasePosition();
                posInfo.createDate = new Date();
                posInfo.createID = userInfo.user_Id;
                posInfo.creator = userInfo.userTrueName;
                posInfo.enable = 1;
                posInfo.isMixProduct = 1;
                posInfo.isLocked = 0;
              } else {
                posInfo.modifyDate = new Date();
                posInfo.modifyID = userInfo.user_Id;
                posInfo.modifier = userInfo.userTrueName;
              }
              posInfo.isFreeze = 0;
              posInfo.orderNo = 0;
              posInfo.parentId = 0;
              posInfo.positionName = positionTmpl;
              posInfo.positionType = positionType; //常规货位
              posInfo.storage_Id = storage_Id;
              posInfo.storageName = storageName;
              posInfo.maxCapacity = maxCapacity;
 
              posInfo.channelCode = channelCode;
              posInfo.columnCode = columnCode;
              posInfo.shelveCode = shelveCode;
              posInfo.rowCode = rowCode;
              posInfo.columnCode = columnCode;
              posInfo.areaCode = areaCode;
              posInfo.lineCode = "A面";
              posInfo.shelveMode = shelveMode;
 
              posInfo.platCorpName = userInfo.platCorpName;
              posInfo.platUserCode = userInfo.platUserCode;
              posInfo.platUserName = userInfo.platUserName;
              posInfo.platUser_Id = userInfo.platUser_Id;
              posInfo.userProductAlias = userInfo.userProductAlias;
              posInfo.userProductCode = userInfo.userProductCode;
              posInfo.userProduct_Id = userInfo.userProduct_Id;
 
              await this.dbWrite.save(posInfo);
              //#endregion
            }
          }
          //#endregion
        } else {
          //#region A面货架
          for (let ShelveAIndex = shelveNumA_1; ShelveAIndex <= shelveNumA_2; ShelveAIndex++) {
            let shelveCode = await this.shelveCodeCreator(ShelveAIndex, shelvesRegular); //(ShelveAIndex < 10 ? "0" : "") + ShelveAIndex;
            let shelveInfo = await this.findShelve(shelveDataList, storage_Id, areaCode, channelCode, shelveCode);
            let _rowNum = rowNum;
            let _columnNum = columnNum;
            if (shelveInfo != null) {
              _rowNum = shelveInfo.rowNum;
              _columnNum = shelveInfo.columnNum;
            }
            //行数据
            for (let rowIndex = 1; rowIndex <= _rowNum; rowIndex++) {
              let rowCode = await this.rowCodeCreator(rowIndex, rowRegular);
              //列数据
              for (let columnIndex = 1; columnIndex <= _columnNum; columnIndex++) {
                //#region 货位编码
                let colNo = columnIndex;
                if (pickMode == "AB面奇偶型") {
                  if (ShelveAIndex == 1) colNo = columnIndex * 2 - 1;
                  if (ShelveAIndex == 2) colNo = columnIndex * 2;
                }
                let columnCode = await this.columnCodeCreator(colNo, columnRegular); //(columnIndex < 10 ? "0" : "") + columnIndex;
                var positionTmpl = positionRegular; // "{库区}-{通道}{货架}{层}{列}";
                if (shelveInfo != null) {
                  //自定义编码规则
                  var _positionRegular = "";
                  var _rowNo = (rowIndex < 10 ? "0" : "") + rowIndex;
                  var _colNo = (columnIndex < 10 ? "0" : "") + columnIndex;
                  if (shelveInfo.columnConfigs != null) {
                    // 列级别配置
                    for (var item of shelveInfo.columnConfigs) {
                      if (item.colNo == _colNo) {
                        _positionRegular = item.positionRegular;
                      }
                    }
                  }
                  if (!_positionRegular && shelveInfo.rowConfigs != null) {
                    // 层级别配置
                    for (var item of shelveInfo.rowConfigs) {
                      if (item.rowNo == _rowNo) {
                        _positionRegular = item.positionRegular;
                      }
                    }
                  }
 
                  if (!_positionRegular) {
                    // 通道级别配置
                    positionTmpl = shelveInfo.positionRegular;
                  } else {
                    positionTmpl = _positionRegular;
                  }
                }
                positionTmpl = positionTmpl.replace("{库区}", areaCode);
                positionTmpl = positionTmpl.replace("{通道}", channelCode);
                positionTmpl = positionTmpl.replace("{货架}", shelveCode);
                positionTmpl = positionTmpl.replace("{层}", rowCode);
                positionTmpl = positionTmpl.replace("{列}", columnCode);
                //#endregion
 
                //#region 创建货位
                let posInfo = await this.dbRead.findOne(BasePosition, {
                  storage_Id: storage_Id,
                  areaCode: areaCode,
                  positionName: positionTmpl
                });
                if (posInfo == null) {
                  posInfo = new BasePosition();
                  posInfo.createDate = new Date();
                  posInfo.createID = userInfo.user_Id;
                  posInfo.creator = userInfo.userTrueName;
                  posInfo.enable = 1;
                  posInfo.isMixProduct = 1;
                  posInfo.isLocked = 0;
                } else {
                  posInfo.modifyDate = new Date();
                  posInfo.modifyID = userInfo.user_Id;
                  posInfo.modifier = userInfo.userTrueName;
                }
                posInfo.isFreeze = 0;
                posInfo.orderNo = 0;
                posInfo.parentId = 0;
                posInfo.positionName = positionTmpl;
                posInfo.positionType = positionType; //常规货位
                posInfo.storage_Id = storage_Id;
                posInfo.storageName = storageName;
                posInfo.maxCapacity = maxCapacity;
                posInfo.channelCode = channelCode;
                posInfo.columnCode = columnCode;
                posInfo.shelveCode = shelveCode;
                posInfo.rowCode = rowCode;
                posInfo.columnCode = columnCode;
                posInfo.areaCode = areaCode;
                posInfo.lineCode = "A面";
                posInfo.shelveMode = shelveMode;
 
                posInfo.platCorpName = userInfo.platCorpName;
                posInfo.platUserCode = userInfo.platUserCode;
                posInfo.platUserName = userInfo.platUserName;
                posInfo.platUser_Id = userInfo.platUser_Id;
                posInfo.userProductAlias = userInfo.userProductAlias;
                posInfo.userProductCode = userInfo.userProductCode;
                posInfo.userProduct_Id = userInfo.userProduct_Id;
 
                await this.dbWrite.save(posInfo);
                //#endregion
              }
            }
          }
          //#endregion
 
          if (pickMode == "U型") {
            //#region B面货架
            for (let shelveBIndex = shelveNumB_1; shelveBIndex <= shelveNumB_2; shelveBIndex++) {
              let shelveCode = await this.shelveCodeCreator(shelveBIndex, shelvesRegular);
              let shelveInfo = await this.findShelve(shelveDataList, storage_Id, areaCode, channelCode, shelveCode);
              let _rowNum = rowNum;
              let _columnNum = columnNum;
              if (shelveInfo != null) {
                _rowNum = shelveInfo.rowNum;
                _columnNum = shelveInfo.columnNum;
              }
              //行数据
              for (let rowIndex = 1; rowIndex <= _rowNum; rowIndex++) {
                let rowCode = await this.rowCodeCreator(rowIndex, rowRegular); //(rowIndex < 10 ? "0" : "") + rowIndex;
                //列数据
                for (let columnIndex = 1; columnIndex <= _columnNum; columnIndex++) {
                  //#region 货位编码
                  let columnCode = await this.columnCodeCreator(columnIndex, columnRegular); //(columnIndex < 10 ? "0" : "") + columnIndex;
                  var positionTmpl = positionRegular; // "{库区}-{通道}{货架}{层}{列}";
                  if (shelveInfo != null) {
                    //自定义编码规则
                    var _positionRegular = "";
                    var _rowNo = (rowIndex < 10 ? "0" : "") + rowIndex;
                    var _colNo = (columnIndex < 10 ? "0" : "") + columnIndex;
                    if (shelveInfo.columnConfigs != null) {
                      // 列级别配置
                      for (var item of shelveInfo.columnConfigs) {
                        if (item.colNo == _colNo) {
                          _positionRegular = item.positionRegular;
                        }
                      }
                    }
                    if (!_positionRegular && shelveInfo.rowConfigs != null) {
                      // 层级别配置
                      for (var item of shelveInfo.rowConfigs) {
                        if (item.rowNo == _rowNo) {
                          _positionRegular = item.positionRegular;
                        }
                      }
                    }
 
                    if (!_positionRegular) {
                      // 通道级别配置
                      positionTmpl = shelveInfo.positionRegular;
                    } else {
                      positionTmpl = _positionRegular;
                    }
                  }
                  positionTmpl = positionTmpl.replace("{库区}", areaCode);
                  positionTmpl = positionTmpl.replace("{通道}", channelCode);
                  positionTmpl = positionTmpl.replace("{货架}", shelveCode);
                  positionTmpl = positionTmpl.replace("{层}", rowCode);
                  positionTmpl = positionTmpl.replace("{列}", columnCode);
                  //#endregion
 
                  //#region 创建货位
                  let posInfo = await this.dbRead.findOne(BasePosition, {
                    storage_Id: storage_Id,
                    areaCode: areaCode,
                    positionName: positionTmpl
                  });
                  if (posInfo == null) {
                    posInfo = new BasePosition();
                    posInfo.createDate = new Date();
                    posInfo.createID = userInfo.user_Id;
                    posInfo.creator = userInfo.userTrueName;
                    posInfo.enable = 1;
                    posInfo.isMixProduct = 1;
                    posInfo.isLocked = 0;
                  } else {
                    posInfo.modifyDate = new Date();
                    posInfo.modifyID = userInfo.user_Id;
                    posInfo.modifier = userInfo.userTrueName;
                  }
 
                  posInfo.isFreeze = 0;
                  posInfo.orderNo = 0;
                  posInfo.parentId = 0;
                  posInfo.positionName = positionTmpl;
                  posInfo.positionType = positionType; //常规货位
                  posInfo.storage_Id = storage_Id;
                  posInfo.storageName = storageName;
                  posInfo.maxCapacity = maxCapacity;
                  posInfo.channelCode = channelCode;
                  posInfo.columnCode = columnCode;
                  posInfo.shelveCode = shelveCode;
                  posInfo.rowCode = rowCode;
                  posInfo.columnCode = columnCode;
                  posInfo.areaCode = areaCode;
                  posInfo.lineCode = "B面";
                  posInfo.shelveMode = shelveMode;
 
                  posInfo.platCorpName = userInfo.platCorpName;
                  posInfo.platUserCode = userInfo.platUserCode;
                  posInfo.platUserName = userInfo.platUserName;
                  posInfo.platUser_Id = userInfo.platUser_Id;
                  posInfo.userProductAlias = userInfo.userProductAlias;
                  posInfo.userProductCode = userInfo.userProductCode;
                  posInfo.userProduct_Id = userInfo.userProduct_Id;
 
                  await this.dbWrite.save(posInfo);
                  //#endregion
                }
              }
            }
            //#endregion
          }
        }
      }
      this.info.result = true;
      this.info.msg = "保存成功!";
      ctx.body = this.info;
      return;
    } catch (ex) {
      this.info.result = false;
      this.info.msg = "保存失败," + ex.message;
 
      ctx.body = this.info;
      return;
    }
  }
  //#endregion
 
  //#region 查找货架信息
  private async findShelve(shelveDataList: Array<any>, storage_Id: string, areaCode: string, channelCode: string, shelveCode: string) {
    for (let shelveInfo of shelveDataList) {
      if (
        shelveInfo.storage_Id == storage_Id &&
        shelveInfo.areaCode == areaCode &&
        shelveInfo.channelCode == channelCode &&
        shelveInfo.shelveCode == shelveCode
      ) {
        return shelveInfo;
      }
    }
 
    return null;
  }
  //#endregion
 
  //#region 保存货架信息
  private async saveShelve(shelveDataList) {
    let userInfo = await this.ctx.helper.userInfo();
    for (let shelveInfo of shelveDataList) {
      let storageShelveInfo = await this.dbRead.findOne(BaseStorageShelve, {
        storage_Id: shelveInfo.storage_Id,
        areaCode: shelveInfo.areaCode,
        channelCode: shelveInfo.channelCode,
        shelveCode: shelveInfo.shelveCode
      });
      if (storageShelveInfo == null) {
        storageShelveInfo = new BaseStorageShelve();
      }
      storageShelveInfo.areaCode = shelveInfo.areaCode;
      storageShelveInfo.channelCode = shelveInfo.channelCode;
      storageShelveInfo.rowNum = shelveInfo.rowNum;
      storageShelveInfo.columnNum = shelveInfo.columnNum;
      storageShelveInfo.storage_Id = shelveInfo.storage_Id;
      storageShelveInfo.storageName = shelveInfo.storageName;
      storageShelveInfo.shelveCode = shelveInfo.shelveCode;
      storageShelveInfo.positionRegular = shelveInfo.positionRegular;
 
      await this.dbWrite.save(storageShelveInfo);
 
      await this.dbWrite.delete(BasePosition, {
        storage_Id: shelveInfo.storage_Id,
        areaCode: shelveInfo.areaCode,
        channelCode: shelveInfo.channelCode,
        shelveCode: shelveInfo.shelveCode,
        userProduct_Id: userInfo.userProduct_Id
      });
    }
  }
  //#endregion
 
  //#region 编码规则
  //通道编码规则
  private async channelCodeCreator(numIndex: number, channelRegular: string) {
    if (!channelRegular) {
      channelRegular = "{数字}{数字}";
    }
 
    return await this.codeCreator(numIndex, channelRegular);
  }
 
  //货架编码规则
  private async shelveCodeCreator(numIndex: number, shelvesRegular: string) {
    if (!shelvesRegular) {
      shelvesRegular = "{数字}{数字}";
    }
    return await this.codeCreator(numIndex, shelvesRegular);
  }
 
  //行编码规则
  private async rowCodeCreator(numIndex: number, rowRegular: string) {
    if (!rowRegular) {
      rowRegular = "{数字}{数字}";
    }
    return this.codeCreator(numIndex, rowRegular);
  }
 
  //货架编码规则
  private async columnCodeCreator(numIndex: number, columnRegular: string) {
    if (!columnRegular) {
      columnRegular = "{数字}{数字}";
    }
    return this.codeCreator(numIndex, columnRegular);
  }
 
  //通用编码规则
  private async codeCreator(numIndex: number, regular: string) {
    var letterList = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z".split(",");
    if (!regular) {
      regular = "{数字}{数字}";
    }
    //var codeList = regular.replace("}{", ",").replace("{", "").replace("}", "").Split(',');
    var regHelper = /数字|字母/gi;
    var codeList = regular.match(regHelper);
    var codeValue: Array<any> = [];
    for (var i = codeList.length - 1; i >= 0; i--) {
      var item = codeList[codeList.length - 1];
      if (item == "数字") {
        if (numIndex < 10) {
          codeValue.push(numIndex);
          numIndex = 0;
        } else {
          var lastNum = numIndex % 10;
          codeValue.push(lastNum);
          numIndex = Math.floor((1.0 * numIndex) / 10);
        }
      } else if (item == "字母") {
        if (numIndex < 27) {
          codeValue.push(letterList[numIndex - 1]);
          numIndex = 0;
        } else {
          var lastNum = numIndex % 27;
          codeValue.push(lastNum);
          numIndex = Math.floor((1.0 * numIndex) / 27);
        }
      }
    }
 
    for (var i = 0; i < codeList.length; i++) {
      let val = codeValue[codeList.length - 1 - i];
      let rep = "{" + codeList[i] + "}";
      regular = regular.replace(rep, val);
    }
 
    return regular;
  }
 
  //#endregion
  //#region 器具类型
  @Post()
  public async lockPlateType() {
    let { ctx } = this;
    let body = ctx.request.body;
    let positionInfo = body.positionInfo;
    let userInfo = await ctx.helper.userInfo();
 
    let storage_Id = positionInfo.storage_Id;
    let storageArea = positionInfo.storageArea;
    let channelCode = positionInfo.channelCode;
    let shelveCode = positionInfo.shelveCode;
    let colNo = positionInfo.colNo;
    let rowNo = positionInfo.rowNo;
    // let plateType = positionInfo.plateType;
    let plateType = null;
    // let plateType_Id = positionInfo.plateType_Id;
    for (let type of positionInfo.plateType) {
      plateType = type;
    }
    let where: any = {
      storage_Id: storage_Id,
      channelCode: channelCode,
      userProduct_Id: userInfo.userProduct_Id
    };
    if (storageArea) {
      where.areaCode = storageArea;
    }
    if (shelveCode) {
      where.shelveCode = shelveCode;
    }
    if (colNo) {
      where.columnCode = colNo;
    }
    if (rowNo) {
      where.rowCode = rowNo;
    }
    // let plateTypeinfo = await this.dbRead.find(BasePlateType, {
    //   plateType_Id: In(plateType_Id)
    // });
 
    // let qijutype = [];
    // var plate = null;
    // var plateId = null;
    // for (let type of plateTypeinfo) {
    //   qijutype.push(type.plateType);
    //   plate = qijutype.join("/");
    //   plateId = plateType_Id.join("/");
    // }
    // console.log(plate);
    // console.log(plateId);
    await this.dbWrite.update(BasePosition, where, {
      plateType: plateType
    });
 
    this.info.result = true;
    this.info.msg = "器具种类修改成功!";
 
    ctx.body = this.info;
    return;
  }
  //#endregion
  //#region 锁定货位
  @Post()
  public async lockPosition() {
    let { ctx } = this;
    let body = ctx.request.body;
    let positionInfo = body.positionInfo;
    let userInfo = await ctx.helper.userInfo();
 
    let storage_Id = positionInfo.storage_Id;
    let storageArea = positionInfo.storageArea;
    let channelCode = positionInfo.channelCode;
    let shelveCode = positionInfo.shelveCode;
    let colNo = positionInfo.colNo;
    let rowNo = positionInfo.rowNo;
    let where: any = {
      storage_Id: storage_Id,
      channelCode: channelCode,
      userProduct_Id: userInfo.userProduct_Id
    };
    if (storageArea) {
      where.areaCode = storageArea;
    }
    if (shelveCode) {
      where.shelveCode = shelveCode;
    }
    if (colNo) {
      where.columnCode = colNo;
    }
    if (rowNo) {
      where.rowCode = rowNo;
    }
    await this.dbWrite.update(BasePosition, where, {
      isLocked: 1
    });
    this.info.result = true;
    this.info.msg = "库存已经锁定!";
 
    ctx.body = this.info;
    return;
  }
  //#endregion
 
  //#region 解锁货位
  @Post()
  public async unlockPosition() {
    let { ctx } = this;
    let body = ctx.request.body;
    let positionInfo = body.positionInfo;
    let userInfo = await ctx.helper.userInfo();
    let storage_Id = positionInfo.storage_Id;
    let storageArea = positionInfo.storageArea;
    let channelCode = positionInfo.channelCode;
    let shelveCode = positionInfo.shelveCode;
    let colNo = positionInfo.colNo;
    let rowNo = positionInfo.rowNo;
    let where: any = {
      storage_Id: storage_Id,
      channelCode: channelCode,
      userProduct_Id: userInfo.userProduct_Id
    };
    if (storageArea) {
      where.areaCode = storageArea;
    }
    if (shelveCode) {
      where.shelveCode = shelveCode;
    }
    if (colNo) {
      where.columnCode = colNo;
    }
    if (rowNo) {
      where.rowCode = rowNo;
    }
    await this.dbWrite.update(BasePosition, where, {
      isLocked: 0
    });
    this.info.result = true;
    this.info.msg = "库存已经解锁成功!";
 
    ctx.body = this.info;
    return;
  }
  //#endregion
 
  //#region IsMixProductPosition
  @Post()
  public async isMixProductPosition() {
    let { ctx } = this;
    let body = ctx.request.body;
    let positionInfo = body.positionInfo;
    let userInfo = await ctx.helper.userInfo();
    let storage_Id = positionInfo.storage_Id;
    let storageArea = positionInfo.storageArea;
    let channelCode = positionInfo.channelCode;
    let shelveCode = positionInfo.shelveCode;
    let colNo = positionInfo.colNo;
    let rowNo = positionInfo.rowNo;
    let isMixProduct = positionInfo.isMixProduct;
    let where: any = {
      storage_Id: storage_Id,
      channelCode: channelCode,
      userProduct_Id: userInfo.userProduct_Id
    };
    if (storageArea) {
      where.areaCode = storageArea;
    }
    if (shelveCode) {
      where.shelveCode = shelveCode;
    }
    if (colNo) {
      where.columnCode = colNo;
    }
    if (rowNo) {
      where.rowCode = rowNo;
    }
    await this.dbWrite.update(BasePosition, where, {
      isMixProduct: isMixProduct
    });
    this.info.result = true;
    this.info.msg = "设置成功!";
 
    ctx.body = this.info;
    return;
  }
  //#endregion
 
  //#region EnablePosition
  @Post()
  public async enablePosition() {
    let { ctx } = this;
    let body = ctx.request.body;
    let positionInfo = body.positionInfo;
    let userInfo = await ctx.helper.userInfo();
 
    let storage_Id = positionInfo.storage_Id;
    let storageArea = positionInfo.storageArea;
    let channelCode = positionInfo.channelCode;
    let shelveCode = positionInfo.shelveCode;
    let colNo = positionInfo.colNo;
    let rowNo = positionInfo.rowNo;
    let enable = positionInfo.enable;
    let where: any = {
      storage_Id: storage_Id,
      channelCode: channelCode,
      userProduct_Id: userInfo.userProduct_Id
    };
    if (storageArea) {
      where.areaCode = storageArea;
    }
    if (shelveCode) {
      where.shelveCode = shelveCode;
    }
    if (colNo) {
      where.columnCode = colNo;
    }
    if (rowNo) {
      where.rowCode = rowNo;
    }
    await this.dbWrite.update(BasePosition, where, {
      enable: enable
    });
    this.info.result = true;
    this.info.msg = "设置成功!";
 
    ctx.body = this.info;
    return;
  }
  //#endregion
 
  //#region 最低库存
  @Post()
  public async submitminCapacity() {
    let { ctx } = this;
    let body = ctx.request.body;
    let positionInfo = body.positionInfo;
    let userInfo = await ctx.helper.userInfo();
 
    let storage_Id = positionInfo.storage_Id;
    let storageArea = positionInfo.storageArea;
    let channelCode = positionInfo.channelCode;
    let shelveCode = positionInfo.shelveCode;
    let colNo = positionInfo.colNo;
    let rowNo = positionInfo.rowNo;
    let minCapacity = positionInfo.minCapacity;
    let where: any = {
      storage_Id: storage_Id,
      channelCode: channelCode,
      userProduct_Id: userInfo.userProduct_Id
    };
    if (storageArea) {
      where.areaCode = storageArea;
    }
    if (shelveCode) {
      where.shelveCode = shelveCode;
    }
    if (colNo) {
      where.columnCode = colNo;
    }
    if (rowNo) {
      where.rowCode = rowNo;
    }
    await this.dbWrite.update(BasePosition, where, {
      minCapacity: minCapacity
    });
    this.info.result = true;
    this.info.msg = "设置成功!";
 
    ctx.body = this.info;
    return;
  }
  //#endregion
 
  //#region 根据当前仓库获取仓库下的货位
  @Post()
  public async getPositionName() {
    let { ctx } = this;
    let userInfo = await ctx.helper.userInfo();
    try {
      let positionList = await this.dbRead.find(BasePosition, {
        select: ["positionName"],
        where: {
          userProduct_Id: userInfo.userProduct_Id,
          storage_Id: this.body.storage_Id,
          positionType: 4 // 4=收货位
        }
      });
      this.info.result = true;
      this.info.data = positionList;
    } catch (ex) {
      this.info.result = false;
      this.info.msg = ex.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据当前仓库和货位名称模糊查询
  @Post()
  public async getVaguePositionName() {
    let { ctx } = this;
    let body = this.ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    try {
      let where = "userProduct_Id=:userProduct_Id and storage_Id=:storage_Id and positionName like :positionName";
      let positionList = await this.dbRead
        .createQueryBuilder(BasePosition, "t")
        .where(where, {
          userProduct_Id: userInfo.userProduct_Id,
          storage_Id: body.storage_Id,
          positionName: "%" + body.positionName + "%"
        })
        .take(30)
        .getMany();
      this.info.result = true;
      this.info.data = positionList;
    } catch (ex) {
      this.info.result = false;
      this.info.msg = ex.message;
    }
    ctx.body = this.info;
  }
  //#endregion
}