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
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
import { default as BaseController } from "../../baseController";
import { Post } from "egg-shell-decorators";
import { BaseProductInfo } from "../../../entity/basicInfo/base/baseProductInfo";
import { In, Like } from "typeorm";
import { BaseProvider } from "../../../entity/basicInfo/base/baseProvider";
import { BaseConsignor } from "../../../entity/basicInfo/consignor/baseConsignor";
import * as XLSX from "xlsx";
import * as path from "path";
// import { BaseBrand } from "../../../entity/basicInfo/base/baseBrand";
// import { BaseProductType } from "../../../entity/basicInfo/base/baseProductType";
import { vBaseProductPositionGroup } from "../../../entity/storage/product/vBaseProductPositionGroup";
import { vBaseProductPosition } from "../../../entity/storage/product/vBaseProductPosition";
import { BaseProductInfoHistory } from "../../../entity/basicInfo/base/baseProductInfoHistory";
import { BaseProductPosition } from "../../../entity/storage/product/baseProductPosition";
import { BasePlate } from "../../../entity/basicInfo/base/basePlate";
import { BaseDestination } from "../../../entity/basicInfo/workshop/baseDestination";
 
export default class ProductInfoController extends BaseController {
  //#region getList 获得物料列表
  /**
   * 获得物料列表
   */
  @Post()
  public async getList() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      let whereStr = "product_Id<>0"; // 不筛选空器具
      var where: any = {};
 
      // 超级管理员不需要走仓库权限
      if (userInfo.isAdministrator || body.isAll) {
        whereStr += ` And userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else if (userInfo.userType === "consignor") {
        // 前端货主登录权限
        whereStr += ` And userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else {
        whereStr += ` And userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      }
      // 关键词查询条件
      if (body.name) {
        let name = this.ctx.helper.sqlSecurity(body.name);
        whereStr += ` AND (productName LIKE '%' + :name + '%' OR productCode LIKE '%' + :name + '%')`;
        where.name = name;
      }
      // id查询
      if (body.product_Id) {
        let product_Id = this.ctx.helper.sqlSecurity(body.product_Id);
        whereStr += ` AND (product_Id = :product_Id )`;
        where.product_Id = product_Id;
      }
      // 根据ID查询
      if (Array.isArray(body.ids)) {
        whereStr += ` AND (product_Id In(${body.ids.join(",")}))`;
      }
      let fields = [
        "product_Id",
        "productCode",
        "productModel",
        "productName",
        "orderType",
        "packingQuantity",
        "plateCode",
        "plate_Id",
        "destination_Id",
        "destinationName",
        "plateTypeCode",
        "weight",
        "images" // 图片字段
      ];
      // 自定义查询字段
      if (body.searchFields) {
        fields = body.searchFields;
      }
      if (body.appendField === "*") {
        fields = [];
      }
      let builder = this.dbRead.createQueryBuilder(BaseProductInfo, "t").where(whereStr, where);
      if (fields.length) {
        builder.select(fields);
      }
      builder.take(200);
      let dataList = [];
      if (body.appendField === "*") {
        dataList = await builder.getMany();
      } else {
        dataList = await builder.getRawMany();
      }
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
    }
  }
  //#endregion
 
  //#region getProductList 获得物料列表
  /**
   * 获得物料列表
   */
  @Post()
  public async getProductList() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      let whereStr = "";
      var where: any = {};
 
      // 超级管理员不需要走仓库权限
      if (userInfo.isAdministrator || body.isAll) {
        whereStr = `userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else if (userInfo.userType === "consignor") {
        // 前端货主登录权限
        whereStr = `userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else {
        whereStr = `userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      }
      let fields = ["productCode", "productName", "product_Id"];
      // 自定义查询字段
      if (body.searchFields) {
        fields = body.searchFields;
      }
      if (body.appendField === "*") {
        fields = [];
      }
      let builder = this.dbRead.createQueryBuilder(BaseProductInfo, "t").where(whereStr, where);
      if (fields.length) {
        builder.select(fields);
      }
      builder.take(200);
      let dataList = [];
      if (body.appendField === "*") {
        dataList = await builder.getMany();
      } else {
        dataList = await builder.getRawMany();
      }
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
    }
  }
  //#endregion
 
  //#region getProductStorageList 获得库存空器具物料列表
  /**
   * 获得库存空器具物料列表
   */
  @Post()
  public async getProductStorageList() {
    let { ctx } = this;
    let body = ctx.request.body;
 
    try {
      let whereStr = "";
      var where: any = {};
      // 关键词查询条件
      if (body.name) {
        let name = this.ctx.helper.sqlSecurity(body.name);
        whereStr += `productName='空器具' and productStorage>0 AND (plateCode LIKE '%' + :name + '%')`;
        where.name = name;
      }
      // 查询当前用户常用的物料
      var dataList = await this.dbRead.createQueryBuilder(BaseProductPosition, "t").where(whereStr, where).take(10).getMany();
 
      if (dataList.length === 0) {
        this.info.result = false;
        this.info.msg = "未找到库存空器具数据";
        ctx.body = this.info;
        return;
      }
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
    }
  }
  //#endregion
 
  //#region getHasStorageList 获得有库存物料列表
  /**
   * 获得有库存物料列表
   */
  @Post()
  public async getHasStorageList() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      let whereStr = "product_Id<>0 AND EXISTS(SELECT 1 FROM Base_ProductPosition pp Where pp.product_Id=t.product_Id And productStorage>0)";
      var where: any = {};
 
      // 超级管理员不需要走仓库权限
      if (userInfo.isAdministrator || body.isAll) {
        whereStr += ` AND userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else if (userInfo.userType === "consignor") {
        // 前端货主登录权限
        whereStr += ` AND userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else {
        whereStr += ` AND userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      }
      // 关键词查询条件
      if (body.name) {
        let name = this.ctx.helper.sqlSecurity(body.name);
        whereStr += ` AND (productName LIKE '%' + :name + '%' OR productCode LIKE '%' + :name + '%')`;
        where.name = name;
      }
      // 出库类型
      if (body.orderType) {
        if (body.orderType === "焊装出库") {
          whereStr += ` AND orderType IN('焊装出库', 'EU箱出库', '外协件出库')`;
        } else {
          whereStr += ` AND orderType=:orderType`;
          where.orderType = body.orderType;
        }
      }
      let fields = [
        "product_Id",
        "productCode",
        "productModel",
        "productName",
        "orderType",
        "packingQuantity",
        "plateCode",
        "plate_Id",
        "destination_Id",
        "destinationName"
      ];
      // 自定义查询字段
      if (body.searchFields) {
        fields = body.searchFields;
      }
      if (body.appendField === "*") {
        fields = [];
      }
      let builder = this.dbRead.createQueryBuilder(BaseProductInfo, "t").where(whereStr, where);
      if (fields.length) {
        builder.select(fields);
      }
      builder.take(200);
      let dataList = [];
      if (body.appendField === "*") {
        dataList = await builder.getMany();
      } else {
        dataList = await builder.getRawMany();
      }
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
    }
  }
  //#endregion
 
  //#region getHasStorageListByHistory 获得有库存物料列表
  /**
   * 获得有库存物料列表
   */
  @Post()
  public async getHasStorageListByHistory() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      let whereStr = "product_Id<>0 AND EXISTS(SELECT 1 FROM Base_ProductPosition pp Where pp.product_Id=t.product_Id And productStorage>0)";
      var where: any = {};
 
      // 超级管理员不需要走仓库权限
      if (userInfo.isAdministrator || body.isAll) {
        whereStr += ` AND userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else if (userInfo.userType === "consignor") {
        // 前端货主登录权限
        whereStr += ` AND userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      } else {
        whereStr += ` AND userProduct_Id=:userProduct_Id`;
        where = {
          userProduct_Id: userInfo.userProduct_Id
        };
      }
      // 关键词查询条件
      if (body.name) {
        let name = this.ctx.helper.sqlSecurity(body.name);
        whereStr += ` AND (productName LIKE '%' + :name + '%' OR productCode LIKE '%' + :name + '%')`;
        where.name = name;
      }
      // 出库类型
      if (body.orderType) {
        if (body.orderType === "焊装出库") {
          whereStr += ` AND orderType IN('焊装出库', 'EU箱出库', '外协件出库')`;
        } else {
          whereStr += ` AND orderType=:orderType`;
          where.orderType = body.orderType;
        }
      }
      var historyWhere = "user_Id=" + userInfo.user_Id;
      // 查询当前用户常用的物料
      var historyList = await this.dbRead
        .createQueryBuilder(BaseProductInfoHistory, "t")
        .where(historyWhere)
        .orderBy({ useNum: "DESC" })
        .take(10)
        .getMany();
      if (historyList.length === 0) {
        this.info.result = false;
        this.info.msg = "未找到历史数据";
        ctx.body = this.info;
        return;
      } else {
        var productidArray = historyList.map(v => {
          return v.product_Id;
        });
        var productids = productidArray.join(",");
        whereStr += ` AND product_Id  in (` + productids + `)`;
      }
      let fields = [
        "product_Id",
        "productCode",
        "productModel",
        "productName",
        "orderType",
        "packingQuantity",
        "plateCode",
        "plate_Id",
        "destination_Id",
        "destinationName"
      ];
      // 自定义查询字段
      if (body.searchFields) {
        fields = body.searchFields;
      }
      if (body.appendField === "*") {
        fields = [];
      }
      let builder = this.dbRead.createQueryBuilder(BaseProductInfo, "t").where(whereStr, where);
      if (fields.length) {
        builder.select(fields);
      }
      builder.take(200);
      let dataList = [];
      if (body.appendField === "*") {
        dataList = await builder.getMany();
      } else {
        dataList = await builder.getRawMany();
      }
 
      this.info.result = true;
      this.info.data = dataList;
 
      ctx.body = this.info;
    } catch (ex) {
      let msg = "异常错误信息:" + ex.message;
      this.info.result = false;
      this.info.msg = msg;
      ctx.body = this.info;
    }
  }
  //#endregion
 
  //#region 根据物料ID获取物料
  /**
   * 根据物料ID获取物料
   */
  @Post()
  public async getById() {
    let { ctx } = this;
    let body = ctx.body;
    let userInfo = await ctx.helper.userInfo();
    let userProduct_Id = userInfo.userProduct_Id;
    if (!body.id) {
      this.info.result = false;
      this.info.msg = "ID查询条件不存在";
      ctx.body = this.info;
      return;
    }
 
    try {
      let dataInfo = await this.dbRead.findOne(BaseProductInfo, {
        select: ["product_Id", "productCode", "productName", "productSpec", "weight"],
        where: {
          product_Id: body.id,
          userProduct_Id: userProduct_Id
        }
      });
 
      this.info.result = true;
      this.info.data = dataInfo;
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据物料ID获取物料
  /**
   * 根据物料ID获取物料
   */
  @Post()
  public async getByIds() {
    let { ctx } = this;
    let body = ctx.body;
    let userInfo = await ctx.helper.userInfo();
    let userProduct_Id = userInfo.userProduct_Id;
    if (!body.id) {
      this.info.result = false;
      this.info.msg = "ID查询条件不存在";
      ctx.body = this.info;
      return;
    }
 
    try {
      let dataInfo = await this.dbRead.findOne(BaseProductInfo, {
        select: ["product_Id", "productCode", "productName", "weight", "ratePrice", "images", "packingQuantity"],
        where: {
          product_Id: body.id,
          userProduct_Id: userProduct_Id
        }
      });
 
      this.info.result = true;
      this.info.data = dataInfo;
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据物料ID获取物料信息
  /**
   * 根据物料ID获取物料信息
   */
  @Post()
  public async getStockNumByProductId() {
    let { ctx } = this;
    let body = ctx.body;
    if (!body.id) {
      this.info.result = false;
      this.info.msg = "ID查询条件不存在";
      ctx.body = this.info;
      return;
    }
 
    try {
      let builder = this.dbRead
        .createQueryBuilder(vBaseProductPosition, "t")
        .where("product_Id=:product_Id And productStorage>0 And PositionType<>5", { product_Id: body.id });
 
      let dataList = [];
      let validQty = 0;
      let productStorage = 0;
      dataList = await builder.getMany();
      for (var datainfo of dataList) {
        validQty += datainfo.validQty;
        productStorage += datainfo.productStorage;
      }
      this.info.result = true;
      this.info.data = {
        validQty: validQty,
        productStorage: productStorage
      };
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据物料条码获取物料信息
  /**
   * 根据物料条码获取物料信息
   */
  @Post()
  public async getByModel() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    let userProduct_Id = userInfo.userProduct_Id;
    if (!body.productModel) {
      this.info.result = false;
      this.info.msg = "物料条码查询条件不存在";
      ctx.body = this.info;
      return;
    }
 
    try {
      let dataInfo = await this.dbRead.findOne(BaseProductInfo, {
        where: {
          productModel: body.productModel,
          userProduct_Id: userProduct_Id
        }
      });
      if (!dataInfo) {
        this.info.result = false;
        this.info.msg = "物料条码不存在";
        ctx.body = this.info;
        return;
      }
 
      this.info.result = true;
      this.info.data = dataInfo;
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据查询条件获取物料信息
  /**
   * 根据物料条码获取物料信息
   */
  @Post()
  public async find() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    let userProduct_Id = userInfo.userProduct_Id;
 
    // 拼接查询条件
    let where: any = {};
    if (body.product_Id) {
      where.product_Id = body.product_Id;
    }
    if (body.productCode) {
      where.productCode = body.productCode;
    }
    if (body.productName) {
      where.productName = Like(`%${body.productName}%`);
    }
 
    // 判断查询条件是否存在
    // if (!Object.keys(where).length) {
    //   this.info.result = false;
    //   this.info.msg = "没有合法的查询条件";
    //   ctx.body = this.info;
    //   return;
    // }
    // 限定当前账套
    where.userProduct_Id = userProduct_Id;
 
    try {
      let dataInfo = await this.dbRead.find(BaseProductInfo, {
        where: where,
        take: 50
      });
      if (!dataInfo) {
        this.info.result = false;
        this.info.msg = "物料不存在";
        ctx.body = this.info;
        return;
      }
 
      this.info.result = true;
      this.info.data = dataInfo;
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据查询条件获取库存物料信息
  /**
   * 根据物料条码获取库存物料信息
   */
  @Post()
  public async findPositionList() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    let userProduct_Id = userInfo.userProduct_Id;
 
    // 拼接查询条件
    let where: any = {};
    if (body.productModel) {
      where.productModel = body.productModel;
    }
    if (body.productCode) {
      where.productCode = body.productCode;
    }
    if (body.productName) {
      where.productName = Like(`%${body.productName}%`);
    }
    // 判断查询条件是否存在
    // if (!Object.keys(where).length) {
    //   this.info.result = false;
    //   this.info.msg = "没有合法的查询条件";
    //   ctx.body = this.info;
    //   return;
    // }
    // 设置固定查询条件
    if (body.consignor_Id > 0) {
      where.consignor_Id = body.consignor_Id;
    }
    // 限定当前账套
    where.userProduct_Id = userProduct_Id;
    try {
      let dataInfo = await this.dbRead.find(vBaseProductPositionGroup, {
        where: where,
        take: 50
      });
      if (!dataInfo) {
        this.info.result = false;
        this.info.msg = "物料条码不存在";
        ctx.body = this.info;
        return;
      }
 
      this.info.result = true;
      this.info.data = dataInfo;
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 新增物料信息
  /**
   * 新增物料信息
   */
  @Post()
  public async add() {
    let { ctx } = this;
    let body = ctx.body;
    let userInfo = await this.userInfo;
 
    try {
      // 记录数据到mongodb日志中
      let db = this.app.mongodb;
      let collection = db.collection("apiProduct");
      let mongoData = JSON.parse(JSON.stringify(body));
      mongoData.createDate = new Date();
      mongoData.userProduct_Id = userInfo.userProduct_Id;
      let re = await collection.insert(mongoData);
      ctx.logger.info("apiProduct将数据保存至MongoDB after:" + JSON.stringify(re));
    } catch {}
 
    if (!userInfo && !userInfo.userProduct_Id) {
      this.info.result = false;
      this.info.msg = "数据不存在";
      ctx.body = this.info;
      return;
    }
    let userProduct_Id = userInfo.userProduct_Id;
 
    if (!body.consignorName) {
      this.info.result = false;
      this.info.msg = "货主名称不能为空";
      ctx.body = this.info;
      return;
    }
 
    if (!body.productModel) {
      this.info.result = false;
      this.info.msg = "物料条码不能为空";
      ctx.body = this.info;
      return;
    }
 
    if (!body.productName) {
      this.info.result = false;
      this.info.msg = "物料名称不能为空";
      ctx.body = this.info;
      return;
    }
 
    try {
      // 验证货主
      let consignorInfo = await this.dbRead.findOne(BaseConsignor, {
        consignorName: body.consignorName,
        userProduct_Id: userProduct_Id
      });
      if (!consignorInfo) {
        this.info.result = false;
        this.info.msg = "货主不存在";
        ctx.body = this.info;
        return;
      }
      this.body.consignor_Id = consignorInfo.consignor_Id;
      this.body.consignorCode = consignorInfo.consignorCode;
 
      // 验证供应商
      let providerInfo = await this.dbRead.findOne(BaseProvider, {
        providerShortName: body.providerShortName,
        userProduct_Id: userProduct_Id
      });
      if (!providerInfo) {
        this.info.result = false;
        this.info.msg = "供应商不存在";
        ctx.body = this.info;
        return;
      }
      this.body.provider_Id = providerInfo.provider_Id;
      this.body.providerShortName = providerInfo.providerShortName;
      this.body.providerName = providerInfo.providerName;
 
      // 判断物料是否已存在
      let dataInfo = await this.dbRead.findOne(BaseProductInfo, {
        where: {
          productCode: body.productCode,
          consignor_Id: consignorInfo.consignor_Id,
          userProduct_Id: userProduct_Id
        }
      });
      if (dataInfo) {
        this.info.result = false;
        this.info.msg = this.body.productCode + "物料编号已存在,不能重复推送";
        ctx.body = this.info;
        return;
      }
 
      dataInfo = new BaseProductInfo();
      if (!this.body.productCode) {
        // 生成物料编号
        let code = await this.ctx.service.common.getCodeRegular(254);
        this.body.productCode = code;
      }
 
      dataInfo = new BaseProductInfo();
      dataInfo = Object.assign(dataInfo, this.body);
      await this.setAccountInfo(dataInfo);
      await this.dbWrite.save(dataInfo);
 
      this.info.result = true;
      this.info.msg = "物料信息保存成功";
    } catch (error) {
      this.info.result = false;
      this.info.data = error.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region ProductAuditing
  /**
   * 物料审核
   */
  @Post()
  public async productAuditing() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
 
    try {
      if (!body.IDs) {
        this.info.result = false;
        this.info.msg = "至少选择一条物料";
        return;
      }
      let IDs = body.IDs.split(",");
 
      await this.dbWrite.update(
        BaseProductInfo,
        {
          userProduct_Id: userInfo.userProduct_Id,
          product_Id: In(IDs)
        },
        {
          auditor: userInfo.userTrueName,
          auditing: 2,
          auditDate: new Date()
        }
      );
 
      this.info.result = true;
      this.info.msg = "审核成功";
    } catch (ex) {
      this.info.result = false;
      this.info.msg = "错误信息:" + ex.message;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region funReAudit
  /**
   * 反审
   */
  @Post()
  public async funReAudit() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    try {
      if (!body.IDs) {
        this.info.result = false;
        this.info.msg = "至少选择一条物料";
        return;
      }
      let IDs = body.IDs.split(",");
 
      await this.dbWrite.update(
        BaseProductInfo,
        {
          userProduct_Id: userInfo.userProduct_Id,
          product_Id: In(IDs)
        },
        {
          auditor: userInfo.userTrueName,
          auditing: 0,
          auditDate: new Date()
        }
      );
 
      this.info.result = true;
      this.info.msg = "反审成功";
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region getBarcode
  /**
   * 获得中大条码
   */
  @Post()
  public async getBarcode() {
    let { ctx } = this;
    let body = ctx.request.body;
    let userInfo = await ctx.helper.userInfo();
    try {
      if (!Array.isArray(body.code) || !body.code.length) {
        this.info.result = false;
        this.info.msg = "至少选择一条物料";
        return;
      }
      let codeList = body.code;
      var prodList = await this.dbRead.find(BaseProductInfo, {
        select: ["productModel", "middleBarcode", "bigBarcode"],
        where: {
          userProduct_Id: userInfo.userProduct_Id,
          productModel: In(codeList)
        }
      });
 
      this.info.result = true;
      this.info.data = prodList;
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 获得默认值 getDefaultValue
  /**
   * 获得默认值
   */
  @Post()
  public async getDefaultValue() {
    let { ctx } = this;
    let userInfo = await this.userInfo;
    try {
      let providerInfo = await this.dbRead.findOne(BaseProvider, {
        select: ["provider_Id", "providerCode", "providerShortName"],
        where: {
          providerShortName: "默认供应商",
          userProduct_Id: userInfo.userProduct_Id
        }
      });
      let consignorInfo = await this.dbRead.findOne(BaseConsignor, {
        select: ["consignor_Id", "consignorCode", "consignorName"],
        where: {
          consignorName: "默认货主",
          userProduct_Id: userInfo.userProduct_Id
        }
      });
 
      let defaultValue = {};
      if (providerInfo) {
        defaultValue = Object.assign(defaultValue, providerInfo);
      }
      if (consignorInfo) {
        defaultValue = Object.assign(defaultValue, consignorInfo);
      }
      this.info.result = true;
      this.info.data = defaultValue;
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 物料导入Excel
  @Post()
  public async importExcel() {
    setTimeout(async () => {
      await this.importExcelWork();
    }, 0);
 
    this.info.result = true;
    this.info.msg = "开始上传...";
    this.ctx.body = this.info;
  }
  //#endregion
 
  //#region importExcelWork
  private async importExcelWork() {
    let { ctx } = this;
    let body = ctx.request.body;
    let redis = ctx.app.redis.clients.get("common"); // 将消息放入redis缓存
    let fileUrl = body.fileUrl;
    let userInfo = await ctx.helper.userInfo();
 
    redis.expire(body.key, 5 * 60);
    if (!fileUrl) {
      this.setMsg("上传文件不存在", "red");
      return;
    }
 
    try {
      let rootPath = path.resolve(); // 获得根目录
      let filePath = rootPath + path.sep + fileUrl.replace(/\//gi, path.sep); // 上传文件路径
      var workbook = XLSX.readFile(filePath); //整个 excel 文档
      var sheetNames = workbook.SheetNames; //获取所有工作薄名
      var sheet1 = workbook.Sheets[sheetNames[0]]; //根据工作薄名获取工作薄
      let dataList = XLSX.utils.sheet_to_json(sheet1); // 获得当前sheet表单数据转为json格式
 
      //#region 验证数据正确性
      this.info.result = true;
      if (!dataList.length) {
        this.setMsg("没有可导入的数据", "red");
        return;
      }
      let i = 1,
        successCount = 0,
        updateCount = 0;
 
      // 货主集合
      let consignorInfo = await this.dbRead.findOne(BaseConsignor, {
        userProduct_Id: userInfo.userProduct_Id
      });
      let providerInfo = await this.dbRead.findOne(BaseProvider, {
        userProduct_Id: userInfo.userProduct_Id
      });
      // 物料集合
      let productList = await this.dbRead.find(BaseProductInfo, {
        userProduct_Id: userInfo.userProduct_Id,
        productCode: In(dataList.map(item => "" + item["物料编号"]))
      });
      let dataRows = []; //数据集合
      for (let row of dataList) {
        i++;
        let destinationName = row["目的地"];
        if (destinationName) {
          let destinationNames = destinationName.split("/");
          let destination_Id = "";
          for (let item of destinationNames) {
            let desInfo = await this.dbRead.findOne(BaseDestination, {
              destinationName: item
            });
            if (destination_Id) destination_Id += "/";
            destination_Id += desInfo ? desInfo.destination_Id : "0";
          }
        }
 
        let plateTypeCode = row["关联器具种类"];
        let plateType = "";
        let plateInfo = await this.dbRead.findOne(BasePlate, {
          plateTypeCode: plateTypeCode
        });
        if (plateInfo) {
          plateType = plateInfo.plateType;
        }
        let data = {
          productName: "" + row["物料名称"],
          productCode: row["物料编号"],
          productModel: row["物料编号"],
          // brand_Id: 0,
          // brandName: "" + (row["品牌"] || ""),
          // cIQName: row["英文名称"],
          // netWeight: row["净重(kg)"] || row["单位净重"],
 
          smallUnit: row["库存单位"],
          bigUnit: row["PO单位"],
          unitConvert: row["大单位与小单位换算关系"],
          productSpec: row["物料规格"],
          type_Id: 0,
          typeName: row["类别名称"],
          consignor_Id: consignorInfo.consignor_Id,
          consignorCode: consignorInfo.consignorCode,
          consignorName: consignorInfo.consignorName,
          provider_Id: providerInfo.provider_Id,
          providerCode: providerInfo.providerCode,
          providerShortName: providerInfo.providerShortName,
          weight: row["重量(kg)"],
          ratePrice: row["物料单价"],
 
          dayPrice: row["市场价"],
          salePrice: row["销售价"],
          vipPrice: row["VIP价"],
          storageLower: row["库存预警下限"],
          middleUnit: row["中单位"],
          middleBarcode: row["中包装条码"],
          middleUnitConvert: row["中单位换算(和小单位换算)"],
          bigBarcode: row["大包装条码"],
          isNeedPeriod: row["需效期管理"],
          isFullContainerLoad: row["拆分出整拣单"],
          shelfLifeDay: row["保质期(天)"],
          purchasePrice: row["采购价(不含税)"],
          rate: row["税率"],
          originPlace: row["原产地"],
          currency: row["币种"],
          postMailCode: row["行邮税号"],
          hSCode: row["HSCode"],
          declareUnit: row["申报单位"],
          declareQuantityOrder: row["申报数量"],
          statutoryUnit2: row["第二法定单位"],
          statutoryQty2: row["第二法定数量"],
          aliasName: row["物料别名"],
          long: row["长"],
          wide: row["宽"],
          height: row["高"],
          cube: row["体积"],
          UnitPackage: row["打包配置"],
          UnitPackageType: row["打包配置类型"],
          urchasePrice: row["采购价"],
          DayPrice: row["销售价"],
          packingQuantity: row["装箱数量"],
          weightTolerance: row["重量公差"],
          productionLineName: row["冲压生产线"],
          orderType: row["出库类型"],
          productEdition: row["物料版本"],
          destinationName: row["目的地"],
          //destination_Id: destination_Id,
          plateType: plateType,
          plateTypeCode: row["关联器具种类"],
          remark: row["备注"],
          expandFields: {} // 扩展字段
        };
 
        let expandFields = {}; // 扩展字段值
        if (row["温层"]) {
          expandFields["warmlayer"] = row["温层"];
        }
        if (row["停售提前时长"]) {
          expandFields["tingshoushichang"] = row["停售提前时长"];
        }
        if (row["禁收效期系数"]) {
          expandFields["jingshouxiaoqixishu"] = row["禁收效期系数"];
        }
        if (row["是否按批次分拣"]) {
          expandFields["isBatchsorting"] = row["是否按批次分拣"];
        }
        data.expandFields = expandFields;
 
        // #region 校验数据
        if (!data.productModel) {
          this.setMsg(`第${i}行、条形码为空`, "red");
          updateCount++;
        }
        if (!data.productCode) {
          this.setMsg(`第${i}行、物料编号为空`, "red");
          updateCount++;
        }
        if (!data.productName) {
          this.setMsg(`第${i}行、物料名称为空`, "red");
          updateCount++;
        }
        // if (!data.brandName) {
        //   this.setMsg(`第${i}行、品牌为空`, "red");
        //   updateCount++;
        //   continue;
        // }
        if (!data.typeName) {
          this.setMsg(`第${i}行、类别名称为空`, "red");
          updateCount++;
          continue;
        }
        // if (!data.consignorName) {
        //   this.setMsg(`第${i}行、货主名称为空`, "red");
        //   updateCount++;
        //   continue;
        // }
        // if (!data.providerShortName) {
        //   this.setMsg(`第${i}行、默认供应商为空`, "red");
        //   updateCount++;
        // }
        //校验货主
        // let consignorInfo = consignorList.find(item => item.consignorName === data.consignorName);
        // if (!consignorInfo) {
        //   this.setMsg(`第${i}行、${data.consignorName}货主不存在,请核实信息!`, "red");
        //   updateCount++;
        // }
        //校验供应商
        // let providerInfo = providerList.find(item => item.providerShortName === data.providerShortName);
        // if (!providerInfo) {
        //   this.setMsg(`第${i}行、${data.providerShortName}供应商不存在,请核实信息!`, "red");
        //   updateCount++;
        // }
        // 校验品牌
        // let brandInfo = brandList.find(item => item.brandName === data.brandName);
        // if (!brandInfo) {
        //   this.setMsg(`第${i}行、${data.brandName}品牌不存在,请核实信息!`, "red");
        //   updateCount++;
        // }
        // 校验类别
        // let typeInfo = typeList.find(item => (item.typeName = data.typeName));
        // if (!typeInfo) {
        //   this.setMsg(`第${i}行、${data.typeName}类别不存在,请核实信息!`, "red");
        //   updateCount++;
        // }
        // #endregion
        // if (brandInfo.brand_Id && typeInfo.type_Id && consignorInfo.consignor_Id && providerInfo.provider_Id) {
        // if (typeInfo.type_Id && consignorInfo.consignor_Id) {
        // data.brand_Id = brandInfo.brand_Id;
        // data.type_Id = typeInfo.type_Id;
        // data.consignor_Id = consignorInfo.consignor_Id;
        // data.consignorCode = consignorInfo.consignorCode;
        // data.provider_Id = providerInfo.provider_Id;
        // data.providerCode = providerInfo.providerCode;
        // }
        if (!data.cube) {
          data.cube = data.height * data.long * data.height;
        }
        dataRows.push(data);
      }
 
      if (this.isMsgError) {
        this.setMsg(`导入数据有错误,请处理好重新导入`, "red");
        this.setMsg("-1");
        return;
      }
      //#endregion
 
      i = 1;
      successCount = 0;
      updateCount = 0;
      let rows = []; // 准备更新或者新增的数据
      for (let data of dataRows) {
        i++;
        // 根据物料编号查询物料是否存在
        let dataInfo = productList.find(item => item.productCode === data.productCode);
        let isadd = true;
        if (!dataInfo) {
          dataInfo = new BaseProductInfo(); // 新建数据
          isadd = false;
        }
        // 扩展字段处理
        // let expandFields = JSON.parse(dataInfo.expandFields);
        let expandFields = data.expandFields;
        expandFields = Object.assign(expandFields, data.expandFields);
        data.expandFields = JSON.stringify(expandFields);
 
        dataInfo = Object.assign(dataInfo, data); // 合并数据
        await this.setAccountInfo(dataInfo, "product_Id");
        if (isadd == true) {
          this.setMsg(`第${i}行、${data.productCode}已存在,正在更新...`);
          updateCount++;
          // 物料审核状态
          data.auditing = 0;
          rows.push(dataInfo);
        } else {
          this.setMsg(`第${i}行、${data.productCode}正在导入...`);
          // let productCode = await this.ctx.service.common.getCodeRegular(254);
          // data.productCode = productCode;
          successCount++;
          rows.push(dataInfo);
        }
        if (i % 50 === 0) {
          await this.dbWrite.save(BaseProductInfo, rows);
          rows = [];
        }
      }
      if (rows.length > 0) {
        await this.dbWrite.save(BaseProductInfo, rows);
        rows = [];
      }
 
      this.setMsg(`导入成功,新增${successCount}条,更新${updateCount}条`, "blue");
    } catch (ex) {
      this.setMsg("出现异常:" + ex.message, "red");
      this.info.result = false;
    }
    this.setMsg("-1");
  }
  //#endregion
 
  //#region 根据类型查到相对应的商品 getListByPlateTypeEU
  /**
   * 根据类型查到相对应的商品
   */
  @Post()
  public async getListByPlateTypeEU() {
    let { ctx } = this;
    let body = ctx.body;
    let userInfo = await this.userInfo;
 
    try {
      let productInfo = await this.dbRead.find(BaseProductInfo, {
        select: ["product_Id", "productCode", "productName"],
        where: {
          plateType_Id: body.plateType_Id,
          plateType: body.plateType,
          userProduct_Id: userInfo.userProduct_Id
        }
      });
 
      this.info.result = true;
      this.info.data = productInfo;
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 根据类型查到相对应的商品 getListByPlateType
  /**
   * 根据类型查到相对应的商品
   */
  @Post()
  public async getListByPlateType() {
    let { ctx } = this;
    let userInfo = await this.userInfo;
 
    try {
      let productInfo = await this.dbRead.find(BaseProductInfo, {
        select: ["product_Id", "productCode", "productName"],
        where: {
          userProduct_Id: userInfo.userProduct_Id
        }
      });
 
      this.info.result = true;
      this.info.data = productInfo;
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 更新图片 updateImages
  /**
   * 更新图片 updateImages
   */
  @Post()
  public async updateImages() {
    let { ctx } = this;
    let product_Id = Number(this.body.product_Id);
    if (!product_Id) {
      this.info.msg = "商品不存在";
      this.info.result = false;
      ctx.body = this.info;
      return;
    }
 
    try {
      await this.dbWrite.update(BaseProductInfo, this.body.product_Id, {
        images: this.body.images
      });
 
      this.info.result = true;
      this.info.msg = "图片更新成功";
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
 
  //#region 获取器具类别编号 getPlateTypeCode
  /**
   * 获取器具类别编号 getPlateTypeCode
   */
  @Post()
  public async getPlateType() {
    let { ctx } = this;
 
    try {
      let dataInfo = await this.dbRead.findOne(BasePlate, {
        plateTypeCode: this.body.plateTypeCode
      });
 
      this.info.result = true;
      this.info.data = dataInfo;
    } catch (ex) {
      this.info.msg = ex.message;
      this.info.result = false;
    }
    ctx.body = this.info;
  }
  //#endregion
  //#region getList
  /**
   * 获得TableSelect获得物料信息
   */
  @Post()
  public async getData() {
    let userInfo = await this.userInfo;
    let where: any = {
      userProduct_Id: userInfo.userProduct_Id
    };
    if (this.body.name) {
      where.productCode = this.body.name;
    }
    if (this.body.ids) {
      where.product_Id = In(this.body.ids);
    }
    var dataList = await this.dbRead.find(BaseProductInfo, {
      where: where
    });
    if (dataList.length == 0) {
      this.info.result = false;
      this.info.data = dataList;
    } else {
      this.info.result = true;
      this.info.data = dataList;
    }
 
    this.ctx.body = this.info;
  }
  //#endregion
}