workspace.xml
44.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AnalysisUIOptions">
<option name="GROUP_BY_SEVERITY" value="true" />
</component>
<component name="ChangeListManager">
<list default="true" id="baeae966-16bb-4f97-a411-22fe5a65cefd" name="Default Changelist" comment="修改收货是是否收完的判断">
<change beforePath="$PROJECT_DIR$/.idea/compiler.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/compiler.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/com/huaheng/framework/config/SwaggerConfig.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/huaheng/framework/config/SwaggerConfig.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/com/huaheng/pc/system/user/controller/HomeController.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/huaheng/pc/system/user/controller/HomeController.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/resources/templates/admin/main.html" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/resources/templates/admin/main.html" afterDir="false" />
</list>
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="DatabaseView">
<option name="SHOW_INTERMEDIATE" value="true" />
<option name="GROUP_DATA_SOURCES" value="true" />
<option name="GROUP_SCHEMA" value="true" />
<option name="GROUP_CONTENTS" value="false" />
<option name="SORT_POSITIONED" value="false" />
<option name="SHOW_EMPTY_GROUPS" value="false" />
<option name="AUTO_SCROLL_FROM_SOURCE" value="false" />
<option name="HIDDEN_KINDS">
<set />
</option>
<expand>
<path>
<item name="Database" type="3277223f:DatabaseStructure$DbRootGroup" />
<item name="@172.16.29.45" type="feb32156:DbDataSourceImpl" />
</path>
<path>
<item name="Database" type="3277223f:DatabaseStructure$DbRootGroup" />
<item name="@172.16.29.45" type="feb32156:DbDataSourceImpl" />
<item name="schemas" type="d4e8921:DatabaseStructure$FamilyGroup" />
</path>
<path>
<item name="Database" type="3277223f:DatabaseStructure$DbRootGroup" />
<item name="@172.16.29.45" type="feb32156:DbDataSourceImpl" />
<item name="schemas" type="d4e8921:DatabaseStructure$FamilyGroup" />
<item name="wms_v2: schema" type="76f4a085:MysqlImplModel$Schema" />
</path>
</expand>
<select />
</component>
<component name="FavoritesManager">
<favorites_list name="huaheng" />
</component>
<component name="FileTemplateManagerImpl">
<option name="RECENT_TEMPLATES">
<list>
<option value="Interface" />
<option value="Enum" />
<option value="HTML File" />
<option value="Class" />
</list>
</option>
</component>
<component name="FindBugs-IDEA-Workspace">
<toolWindowEditorPreview>false</toolWindowEditorPreview>
</component>
<component name="Git.Settings">
<option name="RECENT_BRANCH_BY_REPOSITORY">
<map>
<entry key="$PROJECT_DIR$" value="rabbitmq" />
</map>
</option>
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="ProjectId" id="1QOzUtfkdeRmYuw3MIDHXXMLsFH" />
<component name="ProjectLevelVcsManager">
<OptionsSetting value="false" id="Update" />
</component>
<component name="PropertiesComponent">
<property name="ASKED_ADD_EXTERNAL_FILES" value="true" />
<property name="DefaultHtmlFileTemplate" value="HTML File" />
<property name="RequestMappingsPanelOrder0" value="0" />
<property name="RequestMappingsPanelOrder1" value="1" />
<property name="RequestMappingsPanelWidth0" value="75" />
<property name="RequestMappingsPanelWidth1" value="75" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="aspect.path.notification.shown" value="true" />
<property name="full.screen.before.presentation.mode" value="false" />
<property name="last_opened_file_path" value="$PROJECT_DIR$/src/main/resources/static/ajax/libs/bootstrap-table/extensions/editable" />
<property name="node.js.detected.package.eslint" value="true" />
<property name="node.js.detected.package.tslint" value="true" />
<property name="node.js.path.for.package.eslint" value="project" />
<property name="node.js.path.for.package.tslint" value="project" />
<property name="node.js.selected.package.eslint" value="(autodetect)" />
<property name="node.js.selected.package.tslint" value="(autodetect)" />
<property name="nodejs_package_manager_path" value="npm" />
<property name="project.structure.last.edited" value="Modules" />
<property name="project.structure.proportion" value="0.15429688" />
<property name="project.structure.side.proportion" value="0.2" />
<property name="run.code.analysis.last.selected.profile" value="pProject Default" />
<property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
</component>
<component name="RecentsManager">
<key name="CopyFile.RECENT_KEYS">
<recent name="E:\code\wms2\src\main\resources\static\ajax\libs\bootstrap-table\extensions\editable" />
</key>
<key name="MoveFile.RECENT_KEYS">
<recent name="E:\code\wms2\src\main\resources\templates\config\configWarning" />
</key>
</component>
<component name="RunAnythingCache">
<option name="myCommands">
<command value="," />
</option>
</component>
<component name="RunDashboard">
<option name="configurationTypes">
<set>
<option value="SpringBootApplicationConfigurationType" />
</set>
</option>
<option name="ruleStates">
<list>
<RuleState>
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
</RuleState>
<RuleState>
<option name="name" value="StatusDashboardGroupingRule" />
</RuleState>
</list>
</option>
</component>
<component name="RunManager" selected="Spring Boot.HuaHengApplication">
<configuration name="EncryptPassword" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="com.huaheng.test.EncryptPassword" />
<module name="huaheng" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="com.huaheng.test.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="ReceiptContainerHeaderServiceImpl" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="com.huaheng.pc.receipt.receiptContainerHeader.service.ReceiptContainerHeaderServiceImpl" />
<module name="huaheng" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="com.huaheng.pc.receipt.receiptContainerHeader.service.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="MqTest.send" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
<module name="huaheng" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="com.huaheng.test.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<option name="PACKAGE_NAME" value="com.huaheng.test" />
<option name="MAIN_CLASS_NAME" value="com.huaheng.test.MqTest" />
<option name="METHOD_NAME" value="send" />
<option name="TEST_OBJECT" value="method" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="ServiceTest.sendSimpleMail" type="JUnit" factoryName="JUnit" temporary="true" nameIsGenerated="true">
<module name="huaheng" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="com.huaheng.test.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<option name="PACKAGE_NAME" value="com.huaheng.test" />
<option name="MAIN_CLASS_NAME" value="com.huaheng.test.ServiceTest" />
<option name="METHOD_NAME" value="sendSimpleMail" />
<option name="TEST_OBJECT" value="method" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="HuaHengApplication" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot" temporary="true" nameIsGenerated="true">
<module name="huaheng" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="com.huaheng.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<option name="SPRING_BOOT_MAIN_CLASS" value="com.huaheng.HuaHengApplication" />
<option name="ALTERNATIVE_JRE_PATH" />
<option name="UPDATE_ACTION_UPDATE_POLICY" value="UpdateResources" />
<option name="FRAME_DEACTIVATION_UPDATE_POLICY" value="UpdateClassesAndResources" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<list>
<item itemvalue="Application.ReceiptContainerHeaderServiceImpl" />
<item itemvalue="Application.EncryptPassword" />
<item itemvalue="JUnit.MqTest.send" />
<item itemvalue="JUnit.ServiceTest.sendSimpleMail" />
<item itemvalue="Spring Boot.HuaHengApplication" />
</list>
<recent_temporary>
<list>
<item itemvalue="Spring Boot.HuaHengApplication" />
<item itemvalue="JUnit.ServiceTest.sendSimpleMail" />
<item itemvalue="JUnit.MqTest.send" />
<item itemvalue="Application.EncryptPassword" />
<item itemvalue="Application.ReceiptContainerHeaderServiceImpl" />
</list>
</recent_temporary>
</component>
<component name="ServiceViewManager">
<option name="allServicesViewState">
<serviceView>
<option name="contentProportion" value="0.11255411" />
<treeState>
<expand />
<select />
</treeState>
</serviceView>
</option>
</component>
<component name="SvnConfiguration">
<configuration />
</component>
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="baeae966-16bb-4f97-a411-22fe5a65cefd" name="Default Changelist" comment="" />
<created>1567656449978</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1567656449978</updated>
<workItem from="1567656451211" duration="5104000" />
<workItem from="1567668214629" duration="1168000" />
<workItem from="1567669746535" duration="268000" />
<workItem from="1567670126125" duration="31000" />
<workItem from="1567670171788" duration="46000" />
<workItem from="1567670233410" duration="1528000" />
<workItem from="1567730330932" duration="8838000" />
<workItem from="1567741769966" duration="1528000" />
<workItem from="1567989403996" duration="45000" />
<workItem from="1567989504844" duration="67000" />
<workItem from="1567993387653" duration="1586000" />
<workItem from="1567998341358" duration="83000" />
<workItem from="1568001742660" duration="15312000" />
<workItem from="1568025180033" duration="84000" />
<workItem from="1568026322123" duration="15000" />
<workItem from="1568082327549" duration="3389000" />
<workItem from="1568094783772" duration="3618000" />
<workItem from="1568102171954" duration="179000" />
<workItem from="1568102802104" duration="132000" />
<workItem from="1568108585629" duration="2016000" />
<workItem from="1568162278389" duration="3299000" />
<workItem from="1568170378983" duration="18141000" />
<workItem from="1568249510258" duration="10225000" />
<workItem from="1568266250892" duration="1333000" />
<workItem from="1568269799447" duration="99000" />
<workItem from="1568270609232" duration="2008000" />
<workItem from="1568277784815" duration="3397000" />
<workItem from="1568595092050" duration="120000" />
<workItem from="1568595230891" duration="859000" />
<workItem from="1568597823149" duration="18415000" />
<workItem from="1568622349963" duration="1657000" />
<workItem from="1568625672966" duration="1471000" />
<workItem from="1568680155591" duration="361000" />
<workItem from="1568680712425" duration="2511000" />
<workItem from="1568684486098" duration="957000" />
<workItem from="1568685565340" duration="4430000" />
<workItem from="1568691952276" duration="8650000" />
<workItem from="1568707800753" duration="1137000" />
<workItem from="1568710796434" duration="1618000" />
<workItem from="1568766055582" duration="6000" />
<workItem from="1568768025248" duration="5346000" />
<workItem from="1568778175920" duration="2572000" />
<workItem from="1568787162277" duration="1740000" />
<workItem from="1568788907625" duration="7345000" />
<workItem from="1568853208604" duration="1177000" />
<workItem from="1568854399388" duration="3001000" />
<workItem from="1568861704814" duration="2380000" />
<workItem from="1568865359898" duration="108000" />
<workItem from="1568865651366" duration="623000" />
<workItem from="1568868902957" duration="3468000" />
<workItem from="1568875455023" duration="3979000" />
<workItem from="1568882661913" duration="1883000" />
<workItem from="1568887498559" duration="554000" />
<workItem from="1568940290765" duration="1255000" />
<workItem from="1568943643646" duration="634000" />
<workItem from="1568946720514" duration="599000" />
<workItem from="1568951675236" duration="5060000" />
<workItem from="1568963416874" duration="848000" />
<workItem from="1568964502775" duration="3587000" />
<workItem from="1568970279520" duration="8000" />
<workItem from="1569032862367" duration="1792000" />
<workItem from="1569037677538" duration="64000" />
<workItem from="1569134046393" duration="65000" />
<workItem from="1569198499251" duration="8680000" />
<workItem from="1569207254306" duration="18489000" />
<workItem from="1569285398457" duration="5908000" />
<workItem from="1569295518709" duration="463000" />
<workItem from="1569299856099" duration="4172000" />
<workItem from="1569312420091" duration="6208000" />
<workItem from="1569318779053" duration="35000" />
<workItem from="1569372049669" duration="4595000" />
<workItem from="1569390345693" duration="1418000" />
<workItem from="1569393808742" duration="10588000" />
<workItem from="1569411369199" duration="191000" />
<workItem from="1569457959376" duration="2373000" />
<workItem from="1569461866204" duration="777000" />
<workItem from="1569462694383" duration="6561000" />
<workItem from="1569477197991" duration="8695000" />
<workItem from="1569545011335" duration="12640000" />
<workItem from="1569565238961" duration="5096000" />
<workItem from="1569571884664" duration="2032000" />
<workItem from="1569577676760" duration="124000" />
<workItem from="1569717688488" duration="13568000" />
<workItem from="1569743740441" duration="1168000" />
<workItem from="1569745589865" duration="2739000" />
<workItem from="1569748443357" duration="438000" />
<workItem from="1569803438585" duration="13789000" />
<workItem from="1570581146682" duration="20927000" />
<workItem from="1570613992837" duration="3000" />
<workItem from="1570667742663" duration="162000" />
<workItem from="1570667919475" duration="15928000" />
<workItem from="1570754346827" duration="21195000" />
<workItem from="1570840100481" duration="23954000" />
<workItem from="1571032298609" duration="8129000" />
<workItem from="1571043219515" duration="603000" />
<workItem from="1571101539586" duration="10573000" />
<workItem from="1571187054671" duration="1189000" />
<workItem from="1571272889222" duration="603000" />
<workItem from="1571273737925" duration="85000" />
<workItem from="1571273837562" duration="3768000" />
<workItem from="1571300400236" duration="564000" />
<workItem from="1571360965270" duration="10015000" />
<workItem from="1571618681667" duration="100000" />
<workItem from="1571618796133" duration="5393000" />
<workItem from="1571650852097" duration="388000" />
<workItem from="1571730992859" duration="6211000" />
<workItem from="1571793589446" duration="4409000" />
<workItem from="1571802162041" duration="1239000" />
<workItem from="1571811985419" duration="1151000" />
<workItem from="1571813176633" duration="2109000" />
<workItem from="1571877928640" duration="88000" />
<workItem from="1571883105941" duration="935000" />
<workItem from="1571884165422" duration="4991000" />
<workItem from="1571898249991" duration="4232000" />
<workItem from="1571983100230" duration="4800000" />
<workItem from="1572222845790" duration="23000" />
<workItem from="1572223191279" duration="31000" />
<workItem from="1572241535551" duration="625000" />
<workItem from="1572243079374" duration="68000" />
<workItem from="1572244739518" duration="7805000" />
<workItem from="1572309622449" duration="584000" />
<workItem from="1572311557063" duration="1863000" />
<workItem from="1572320193751" duration="472000" />
<workItem from="1572320671127" duration="1982000" />
<workItem from="1572421740780" duration="2214000" />
<workItem from="1572508717052" duration="767000" />
<workItem from="1572510572527" duration="589000" />
<workItem from="1572512185944" duration="8000" />
<workItem from="1572589020835" duration="476000" />
<workItem from="1572590452229" duration="1502000" />
<workItem from="1572592323148" duration="6000" />
<workItem from="1572832658949" duration="959000" />
<workItem from="1572837775650" duration="12521000" />
<workItem from="1572914081530" duration="12074000" />
<workItem from="1573434480300" duration="23000" />
<workItem from="1573434565742" duration="27000" />
<workItem from="1573434609619" duration="5949000" />
<workItem from="1573443267924" duration="3068000" />
<workItem from="1573451336746" duration="12626000" />
<workItem from="1573519499410" duration="1633000" />
<workItem from="1573521159413" duration="5332000" />
<workItem from="1573634144466" duration="1079000" />
<workItem from="1573695391377" duration="439000" />
<workItem from="1573695840147" duration="1238000" />
<workItem from="1573721771390" duration="57000" />
<workItem from="1573803890850" duration="1260000" />
<workItem from="1573805176417" duration="3000" />
<workItem from="1574037798176" duration="319000" />
<workItem from="1574129991269" duration="1422000" />
<workItem from="1574149477717" duration="150000" />
<workItem from="1574152276042" duration="2135000" />
<workItem from="1574211087867" duration="590000" />
<workItem from="1574211685051" duration="669000" />
<workItem from="1574213648864" duration="15909000" />
<workItem from="1574315910239" duration="2919000" />
<workItem from="1574320594485" duration="4805000" />
<workItem from="1574383470234" duration="1917000" />
<workItem from="1574402886027" duration="352000" />
<workItem from="1574406573271" duration="10000" />
<workItem from="1574413187883" duration="2458000" />
<workItem from="1574647559026" duration="1549000" />
<workItem from="1574650217287" duration="1426000" />
<workItem from="1574663555433" duration="234000" />
<workItem from="1574667250107" duration="248000" />
<workItem from="1574667819508" duration="853000" />
<workItem from="1574668813857" duration="78000" />
<workItem from="1574668955593" duration="4842000" />
<workItem from="1574734862621" duration="5289000" />
<workItem from="1574753109186" duration="1868000" />
<workItem from="1574758859383" duration="2324000" />
<workItem from="1574816203456" duration="3882000" />
<workItem from="1574826942468" duration="1951000" />
<workItem from="1574845813928" duration="13000" />
<workItem from="1574988822426" duration="270000" />
</task>
<task id="LOCAL-00018" summary="表单头创建时间添加默认创建时间 开始时间默认提前一周,结束时间默认当天">
<created>1569207792528</created>
<option name="number" value="00018" />
<option name="presentableId" value="LOCAL-00018" />
<option name="project" value="LOCAL" />
<updated>1569207792528</updated>
</task>
<task id="LOCAL-00019" summary="配置中所有页面添加重置按钮">
<created>1569218224945</created>
<option name="number" value="00019" />
<option name="presentableId" value="LOCAL-00019" />
<option name="project" value="LOCAL" />
<updated>1569218224945</updated>
</task>
<task id="LOCAL-00020" summary="收货添加定位、取消定位、取消组盘按钮">
<created>1569232154274</created>
<option name="number" value="00020" />
<option name="presentableId" value="LOCAL-00020" />
<option name="project" value="LOCAL" />
<updated>1569232154274</updated>
</task>
<task id="LOCAL-00021" summary="修改入库单数量使用BigDecimal类型,修改入库单添加、修改、物理类型添加和修改页面">
<created>1569318560852</created>
<option name="number" value="00021" />
<option name="presentableId" value="LOCAL-00021" />
<option name="project" value="LOCAL" />
<updated>1569318560852</updated>
</task>
<task id="LOCAL-00022" summary="修改物料管理中物料类型使用物料类别表,不在使用数据字典">
<created>1569395439782</created>
<option name="number" value="00022" />
<option name="presentableId" value="LOCAL-00022" />
<option name="project" value="LOCAL" />
<updated>1569395439782</updated>
</task>
<task id="LOCAL-00023" summary="修改波次主表、波次流程头表、波次流程明细页面">
<created>1569402291802</created>
<option name="number" value="00023" />
<option name="presentableId" value="LOCAL-00023" />
<option name="project" value="LOCAL" />
<updated>1569402291802</updated>
</task>
<task id="LOCAL-00024" summary="修改入库首选项修改添加模块为select">
<created>1569411473661</created>
<option name="number" value="00024" />
<option name="presentableId" value="LOCAL-00024" />
<option name="project" value="LOCAL" />
<updated>1569411473661</updated>
</task>
<task id="LOCAL-00025" summary="修改任务取消入库组盘状态不回滚,修改任务完成入库单状态不完成">
<created>1569477488017</created>
<option name="number" value="00025" />
<option name="presentableId" value="LOCAL-00025" />
<option name="project" value="LOCAL" />
<updated>1569477488017</updated>
</task>
<task id="LOCAL-00026" summary="添加自动生成容器编码">
<created>1569484931952</created>
<option name="number" value="00026" />
<option name="presentableId" value="LOCAL-00026" />
<option name="project" value="LOCAL" />
<updated>1569484931952</updated>
</task>
<task id="LOCAL-00027" summary="修改入库首选项页面,规则查询使用数据字典值,表格值显示修改">
<created>1569553028716</created>
<option name="number" value="00027" />
<option name="presentableId" value="LOCAL-00027" />
<option name="project" value="LOCAL" />
<updated>1569553028716</updated>
</task>
<task id="LOCAL-00028" summary="入库单添加重置按钮,入库单历史添加上游单号搜索">
<created>1569554438854</created>
<option name="number" value="00028" />
<option name="presentableId" value="LOCAL-00028" />
<option name="project" value="LOCAL" />
<updated>1569554438854</updated>
</task>
<task id="LOCAL-00029" summary="添加取消入库组盘时容器为临时容器,删除容器">
<created>1569567112288</created>
<option name="number" value="00029" />
<option name="presentableId" value="LOCAL-00029" />
<option name="project" value="LOCAL" />
<updated>1569567112288</updated>
</task>
<task id="LOCAL-00030" summary="出库完成时删除临时容器">
<created>1569568426923</created>
<option name="number" value="00030" />
<option name="presentableId" value="LOCAL-00030" />
<option name="project" value="LOCAL" />
<updated>1569568426923</updated>
</task>
<task id="LOCAL-00031" summary="修改容器新增时容器enable状态">
<created>1569577849038</created>
<option name="number" value="00031" />
<option name="presentableId" value="LOCAL-00031" />
<option name="project" value="LOCAL" />
<updated>1569577849039</updated>
</task>
<task id="LOCAL-00032" summary="修改入库组盘页面中任务类型的显示问题 修改任务完成不修改入库组盘状态的问题">
<created>1569740895495</created>
<option name="number" value="00032" />
<option name="presentableId" value="LOCAL-00032" />
<option name="project" value="LOCAL" />
<updated>1569740895496</updated>
</task>
<task id="LOCAL-00033" summary="添加根据code查询物料">
<created>1569743042718</created>
<option name="number" value="00033" />
<option name="presentableId" value="LOCAL-00033" />
<option name="project" value="LOCAL" />
<updated>1569743042718</updated>
</task>
<task id="LOCAL-00034" summary="添加根据容器编码查找容器的方法 配置规则添加自动添加模块类型 添加是否自动生成临时容器">
<created>1570582333467</created>
<option name="number" value="00034" />
<option name="presentableId" value="LOCAL-00034" />
<option name="project" value="LOCAL" />
<updated>1570582333467</updated>
</task>
<task id="LOCAL-00035" summary="添加流程时自动添加模块和类型 修改入库到货通知">
<created>1570590631384</created>
<option name="number" value="00035" />
<option name="presentableId" value="LOCAL-00035" />
<option name="project" value="LOCAL" />
<updated>1570590631384</updated>
</task>
<task id="LOCAL-00036" summary="修改入库单明细中 入库流程和是否质检的显示">
<created>1570677316403</created>
<option name="number" value="00036" />
<option name="presentableId" value="LOCAL-00036" />
<option name="project" value="LOCAL" />
<updated>1570677316403</updated>
</task>
<task id="LOCAL-00037" summary="修改流程明细添加时模块可修改的问题">
<created>1570680001633</created>
<option name="number" value="00037" />
<option name="presentableId" value="LOCAL-00037" />
<option name="project" value="LOCAL" />
<updated>1570680001633</updated>
</task>
<task id="LOCAL-00038" summary="修改规则配置添加时类型选择项">
<created>1570687475164</created>
<option name="number" value="00038" />
<option name="presentableId" value="LOCAL-00038" />
<option name="project" value="LOCAL" />
<updated>1570687475164</updated>
</task>
<task id="LOCAL-00039" summary="修改质检登记查询code">
<created>1570778509824</created>
<option name="number" value="00039" />
<option name="presentableId" value="LOCAL-00039" />
<option name="project" value="LOCAL" />
<updated>1570778509824</updated>
</task>
<task id="LOCAL-00040" summary="添加站台表">
<created>1570781862179</created>
<option name="number" value="00040" />
<option name="presentableId" value="LOCAL-00040" />
<option name="project" value="LOCAL" />
<updated>1570781862179</updated>
</task>
<task id="LOCAL-00041" summary="修改规则配置">
<created>1570782180540</created>
<option name="number" value="00041" />
<option name="presentableId" value="LOCAL-00041" />
<option name="project" value="LOCAL" />
<updated>1570782180540</updated>
</task>
<task id="LOCAL-00042" summary="添加仓位分配接口">
<created>1570866304365</created>
<option name="number" value="00042" />
<option name="presentableId" value="LOCAL-00042" />
<option name="project" value="LOCAL" />
<updated>1570866304365</updated>
</task>
<task id="LOCAL-00043" summary="修改入库单头尾状态更新">
<created>1570869466088</created>
<option name="number" value="00043" />
<option name="presentableId" value="LOCAL-00043" />
<option name="project" value="LOCAL" />
<updated>1570869466088</updated>
</task>
<task id="LOCAL-00044" summary="添加站台表,入库组盘头表和任务表添加站台,默认为0">
<created>1571036164747</created>
<option name="number" value="00044" />
<option name="presentableId" value="LOCAL-00044" />
<option name="project" value="LOCAL" />
<updated>1571036164747</updated>
</task>
<task id="LOCAL-00045" summary="修改任务执行接口">
<created>1571039090453</created>
<option name="number" value="00045" />
<option name="presentableId" value="LOCAL-00045" />
<option name="project" value="LOCAL" />
<updated>1571039090453</updated>
</task>
<task id="LOCAL-00046" summary="修改接口实体类 修改仓位分配接口">
<created>1571103433656</created>
<option name="number" value="00046" />
<option name="presentableId" value="LOCAL-00046" />
<option name="project" value="LOCAL" />
<updated>1571103433656</updated>
</task>
<task id="LOCAL-00047" summary="修改系统管理参数配置添加和修改页面中的模块和类型">
<created>1571108638507</created>
<option name="number" value="00047" />
<option name="presentableId" value="LOCAL-00047" />
<option name="project" value="LOCAL" />
<updated>1571108638507</updated>
</task>
<task id="LOCAL-00048" summary="修改重入和仓位下发接口">
<created>1571127851430</created>
<option name="number" value="00048" />
<option name="presentableId" value="LOCAL-00048" />
<option name="project" value="LOCAL" />
<updated>1571127851430</updated>
</task>
<task id="LOCAL-00049" summary="删除质检头表新增按钮">
<created>1571300858040</created>
<option name="number" value="00049" />
<option name="presentableId" value="LOCAL-00049" />
<option name="project" value="LOCAL" />
<updated>1571300858040</updated>
</task>
<task id="LOCAL-00050" summary="添加多环境配置文件">
<created>1571367987564</created>
<option name="number" value="00050" />
<option name="presentableId" value="LOCAL-00050" />
<option name="project" value="LOCAL" />
<updated>1571367987564</updated>
</task>
<task id="LOCAL-00051" summary="修改收货是是否收完的判断">
<created>1571650918354</created>
<option name="number" value="00051" />
<option name="presentableId" value="LOCAL-00051" />
<option name="project" value="LOCAL" />
<updated>1571650918355</updated>
</task>
<task id="LOCAL-00052" summary="修改收货是是否收完的判断">
<created>1571651232169</created>
<option name="number" value="00052" />
<option name="presentableId" value="LOCAL-00052" />
<option name="project" value="LOCAL" />
<updated>1571651232169</updated>
</task>
<task id="LOCAL-00053" summary="添加仓库复制">
<created>1571799829411</created>
<option name="number" value="00053" />
<option name="presentableId" value="LOCAL-00053" />
<option name="project" value="LOCAL" />
<updated>1571799829412</updated>
</task>
<task id="LOCAL-00054" summary="修改收货是是否手动指定库位,入库单状态的更新">
<created>1571884236981</created>
<option name="number" value="00054" />
<option name="presentableId" value="LOCAL-00054" />
<option name="project" value="LOCAL" />
<updated>1571884236981</updated>
</task>
<task id="LOCAL-00055" summary="修改容器已组盘的提示信息 修改库位生成库位编码使用库位类型编码">
<created>1571888987512</created>
<option name="number" value="00055" />
<option name="presentableId" value="LOCAL-00055" />
<option name="project" value="LOCAL" />
<updated>1571888987512</updated>
</task>
<task id="LOCAL-00056" summary="修改仓库复制">
<created>1571900347581</created>
<option name="number" value="00056" />
<option name="presentableId" value="LOCAL-00056" />
<option name="project" value="LOCAL" />
<updated>1571900347582</updated>
</task>
<task id="LOCAL-00057" summary="修改返回类型">
<created>1571901488341</created>
<option name="number" value="00057" />
<option name="presentableId" value="LOCAL-00057" />
<option name="project" value="LOCAL" />
<updated>1571901488341</updated>
</task>
<task id="LOCAL-00058" summary="修改库位监控">
<created>1572321206210</created>
<option name="number" value="00058" />
<option name="presentableId" value="LOCAL-00058" />
<option name="project" value="LOCAL" />
<updated>1572321206210</updated>
</task>
<task id="LOCAL-00059" summary="修改库位监控tips">
<created>1572322002967</created>
<option name="number" value="00059" />
<option name="presentableId" value="LOCAL-00059" />
<option name="project" value="LOCAL" />
<updated>1572322002967</updated>
</task>
<task id="LOCAL-00060" summary="修改收发送邮件注释">
<created>1572510829993</created>
<option name="number" value="00060" />
<option name="presentableId" value="LOCAL-00060" />
<option name="project" value="LOCAL" />
<updated>1572510829993</updated>
</task>
<task id="LOCAL-00061" summary="添加入库下发接口">
<created>1572937952886</created>
<option name="number" value="00061" />
<option name="presentableId" value="LOCAL-00061" />
<option name="project" value="LOCAL" />
<updated>1572937952886</updated>
</task>
<task id="LOCAL-00062" summary="修改入库多仓库报错">
<created>1573439368497</created>
<option name="number" value="00062" />
<option name="presentableId" value="LOCAL-00062" />
<option name="project" value="LOCAL" />
<updated>1573439368497</updated>
</task>
<task id="LOCAL-00063" summary="添加物料最大量最小量预警、空库位预警">
<created>1573526280256</created>
<option name="number" value="00063" />
<option name="presentableId" value="LOCAL-00063" />
<option name="project" value="LOCAL" />
<updated>1573526280257</updated>
</task>
<task id="LOCAL-00064" summary="添加基础数据接口和入库单下发下发接口">
<created>1574232706585</created>
<option name="number" value="00064" />
<option name="presentableId" value="LOCAL-00064" />
<option name="project" value="LOCAL" />
<updated>1574232706585</updated>
</task>
<task id="LOCAL-00065" summary="更新消息确认,发生错误后拒绝消息,消息被队列丢弃">
<created>1574236213373</created>
<option name="number" value="00065" />
<option name="presentableId" value="LOCAL-00065" />
<option name="project" value="LOCAL" />
<updated>1574236213373</updated>
</task>
<task id="LOCAL-00066" summary="修改时间搜索无效,添加入库单没有明细不可以提交审核">
<created>1574750425657</created>
<option name="number" value="00066" />
<option name="presentableId" value="LOCAL-00066" />
<option name="project" value="LOCAL" />
<updated>1574750425657</updated>
</task>
<option name="localTasksCounter" value="67" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="1" />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State>
<option name="COLUMN_ORDER" />
</State>
</value>
</entry>
</map>
</option>
</component>
<component name="VcsManagerConfiguration">
<option name="ADD_EXTERNAL_FILES_SILENTLY" value="true" />
<MESSAGE value="添加仓位分配接口" />
<MESSAGE value="修改入库单头尾状态更新" />
<MESSAGE value="添加站台表,入库组盘头表和任务表添加站台,默认为0" />
<MESSAGE value="修改任务执行接口" />
<MESSAGE value="修改接口实体类" />
<MESSAGE value="修改接口实体类 修改仓位分配接口" />
<MESSAGE value="修改系统管理参数配置添加和修改页面中的模块和类型" />
<MESSAGE value="修改重入和仓位下发接口" />
<MESSAGE value="删除质检头表新增按钮" />
<MESSAGE value="添加多环境配置文件" />
<MESSAGE value="修改收货是是否收完的判断" />
<MESSAGE value="添加仓库复制" />
<MESSAGE value="修改收货是是否手动指定库位,入库单状态的更新" />
<MESSAGE value="修改容器已组盘的提示信息 修改库位生成库位编码使用库位类型编码" />
<MESSAGE value="修改仓库复制" />
<MESSAGE value="修改返回类型" />
<MESSAGE value="修改库位监控" />
<MESSAGE value="修改库位监控tips" />
<MESSAGE value="修改收发送邮件注释" />
<MESSAGE value="添加入库下发接口" />
<MESSAGE value="修改入库多仓库报错" />
<MESSAGE value="添加物料最大量最小量预警、空库位预警" />
<MESSAGE value="添加基础数据接口和入库单下发下发接口" />
<MESSAGE value="更新消息确认,发生错误后拒绝消息,消息被队列丢弃" />
<MESSAGE value="修改时间搜索无效,添加入库单没有明细不可以提交审核" />
<option name="LAST_COMMIT_MESSAGE" value="修改时间搜索无效,添加入库单没有明细不可以提交审核" />
</component>
<component name="XDebuggerManager">
<breakpoint-manager>
<breakpoints>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/bom/controller/BomHeaderController.java</url>
<line>164</line>
<option name="timeStamp" value="24" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/material/controller/MaterialController.java</url>
<line>165</line>
<option name="timeStamp" value="26" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/check/checkingRegister/controller/CheckingRegisterController.java</url>
<line>179</line>
<option name="timeStamp" value="28" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/configValue/controller/ConfigValueController.java</url>
<line>141</line>
<option name="timeStamp" value="66" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/task/taskHeader/service/TaskHeaderServiceImpl.java</url>
<line>190</line>
<option name="timeStamp" value="87" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/api/wcs/controller/WarecellAllocation.java</url>
<line>35</line>
<option name="timeStamp" value="101" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/api/wcs/service/warecellAllocation/WarecellAllocationServiceImpl.java</url>
<line>194</line>
<properties>
<option name="lambda-ordinal" value="-1" />
</properties>
<option name="timeStamp" value="112" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/location/service/LocationServiceImpl.java</url>
<line>107</line>
<option name="timeStamp" value="121" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/location/controller/LocationController.java</url>
<line>312</line>
<option name="timeStamp" value="123" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/configWarning/service/ConfigWarningService.java</url>
<line>110</line>
<option name="timeStamp" value="124" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/configWarning/service/ConfigWarningService.java</url>
<line>140</line>
<option name="timeStamp" value="125" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/configWarning/service/ConfigWarningService.java</url>
<line>118</line>
<option name="timeStamp" value="126" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/config/configWarning/service/ConfigWarningService.java</url>
<line>109</line>
<option name="timeStamp" value="127" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/task/taskHeader/service/TaskHeaderServiceImpl.java</url>
<line>709</line>
<option name="timeStamp" value="135" />
</line-breakpoint>
<line-breakpoint enabled="true" type="java-line">
<url>file://$PROJECT_DIR$/src/main/java/com/huaheng/pc/receipt/receiptHeader/controller/ReceiptHeaderController.java</url>
<line>198</line>
<option name="timeStamp" value="139" />
</line-breakpoint>
<line-breakpoint enabled="true" type="javascript">
<url>file://$PROJECT_DIR$/src/main/resources/templates/check/checkingRegister/checkingRegister.html</url>
<line>308</line>
<option name="timeStamp" value="29" />
</line-breakpoint>
<line-breakpoint enabled="true" type="javascript">
<url>file://$PROJECT_DIR$/src/main/resources/templates/config/waveFlowHeader/waveFlowHeader.html</url>
<line>71</line>
<option name="timeStamp" value="43" />
</line-breakpoint>
</breakpoints>
</breakpoint-manager>
<watches-manager>
<configuration name="SpringBootApplicationConfigurationType">
<watch expression="receiptDetailService.getById(receiptContainerDetail.getReceiptDetailId()).getLocatingRule()" language="JAVA" />
</configuration>
</watches-manager>
</component>
<component name="com.intellij.coverage.CoverageDataManagerImpl">
<SUITE FILE_PATH="coverage/huaheng$HuaHengApplication.ic" NAME="HuaHengApplication Coverage Results" MODIFIED="1570677350612" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="idea" COVERAGE_BY_TEST_ENABLED="false" COVERAGE_TRACING_ENABLED="false">
<FILTER>com.huaheng.*</FILTER>
</SUITE>
</component>
</project>