This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
how d82ad3bb05a6255f5692e4fd7f57bb0f30cd2329
3277 lines (2197 loc) · 104 KB
/
how d82ad3bb05a6255f5692e4fd7f57bb0f30cd2329
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
[33mcommit d82ad3bb05a6255f5692e4fd7f57bb0f30cd2329[m[33m ([m[1;36mHEAD -> [m[1;32mmaster[m[33m)[m
Author: Hans Bakker <[email protected]>
Date: Fri Aug 5 14:28:31 2022 +0700
add header to multiselect popup
[33mcommit 4f6fb584a654c3a73d35560eafe6a51a0869ef09[m[33m ([m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: Hans Bakker <[email protected]>
Date: Fri Aug 5 12:32:53 2022 +0700
added category csv up/download
[33mcommit 0317d14bb8dbf39ae9b6837b3a7feb9272a20b2c[m
Author: Hans Bakker <[email protected]>
Date: Mon Aug 1 12:08:56 2022 +0700
new register screen too small
[33mcommit e3aa0354c0c177a1e40e1e37e0f1d204ea267a45[m[33m ([m[1;31mgitlab/master[m[33m)[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 29 16:48:32 2022 +0700
move update button on userdialog to the bottom, combine name and company on a single line, user test now works
[33mcommit f26f093dbd3d480ca2a631ac7ddd69e967004973[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 29 11:05:50 2022 +0700
add scrollview to user dialog
[33mcommit 822db3484234c116ca667f7da5a8c598116fd0c0[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 29 10:25:04 2022 +0700
company test improved
[33mcommit 2524ea292a074d2861fb621188ecb165090275d1[m
Author: Hans Bakker <[email protected]>
Date: Thu Jul 28 12:59:55 2022 +0700
Completed website page integration test inclusing fault fixes in the same page
[33mcommit 514a91ba6ef612c272f9d7ef09e49eb1c03b8cf9[m
Author: Hans Bakker <[email protected]>
Date: Tue Jul 26 08:24:36 2022 +0700
show loading indicator in category maintenance
[33mcommit 630778cafaf990e5d3c4f5658df4e70606acbd0d[m
Author: Hans Bakker <[email protected]>
Date: Mon Jul 25 07:53:04 2022 +0700
0.4.0+47 to playstore
[33mcommit 88075b2c66696bcbfbc4c09b2a41abe31e442def[m
Author: Hans Bakker <[email protected]>
Date: Mon Jul 25 06:39:39 2022 +0700
website colors not properly initialized when new company
[33mcommit ba949d7f564aa99f1255578127584e054d5e4a83[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 24 14:57:20 2022 +0700
correction on website color selection
[33mcommit 2dd67d5a79b427c00c640be29b1040e67044577f[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 24 14:32:18 2022 +0700
forgot password correction
[33mcommit 676397f5dbd90854904246e8f49f5d192c0a10f0[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 24 14:17:30 2022 +0700
show product and user/company dialog in two columns on the web
[33mcommit 5bba88ee4ae9e7bd25938e1588439e566a635315[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 24 13:21:38 2022 +0700
show website maint in 2 colums on the web
[33mcommit 8bc367bda2f206ef648d1e14646d06a8fdddcc11[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 24 11:54:41 2022 +0700
set website colors
[33mcommit bc21f355bcb5ce7db24e3244869ca39ede5a1746[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 22 10:27:34 2022 +0700
added website documentation
[33mcommit 3dc04cc7b87713a70add71b0cb1a28e7001c1e89[m
Author: Hans Bakker <[email protected]>
Date: Thu Jul 21 15:47:15 2022 +0700
deleting users,products,categories do not transfer image
[33mcommit d987c566880c183fe4c094af8e207b01a9a4fc63[m
Author: Hans Bakker <[email protected]>
Date: Thu Jul 21 13:26:58 2022 +0700
add confirmation alerts to delete chip
[33mcommit f771b073c759a2a572677617a5b5b87a83db0a72[m
Author: Hans Bakker <[email protected]>
Date: Wed Jul 20 16:37:54 2022 +0700
fixed change/forget password
[33mcommit 2808198e59d804c1d80283dd6541089d467eb3e0[m
Author: Hans Bakker <[email protected]>
Date: Wed Jul 20 07:58:42 2022 +0700
findoc status val error
[33mcommit caf1dfe10bfd2af700d8360e1d4e918779931329[m
Author: Hans Bakker <[email protected]>
Date: Mon Jul 18 12:14:27 2022 +0700
move floating buttons within container in webversion
[33mcommit 4086d55d5741de0f53c403ee90e77ffc39b7167a[m
Author: Hans Bakker <[email protected]>
Date: Sat Jul 16 10:58:12 2022 +0700
refactored website content; added upload images for include in markdown
[33mcommit 4de2db103bca950c594a8c9da2211c539021d262[m
Author: Hans Bakker <[email protected]>
Date: Mon Jul 11 08:15:30 2022 +0700
Now possible for a user to dlete himself from the system
[33mcommit 280cfbf00dfe871fa3ebaa4622429fdd07148122[m
Author: Hans Bakker <[email protected]>
Date: Sat Jul 9 09:42:59 2022 +0700
update startup icons
[33mcommit ae92ff798f5166290a0d6dfe454f24569c406bfe[m
Author: Hans Bakker <[email protected]>
Date: Sat Jul 9 08:39:20 2022 +0700
Improved web start up
[33mcommit e7ce3f54b640d8bdb66a003b4d076b8312bdf6ec[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 8 07:20:43 2022 +0700
fix hotel dockerfile
[33mcommit 1e5904d72cda9802dd24f2107f8a19aee10b1c62[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 8 07:16:34 2022 +0700
renew index.html and favicon
[33mcommit 1db3450c3ac3c6933bf6ed7b0b3e9c93a3720ac7[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 8 06:31:33 2022 +0700
update readme admin -> test system
[33mcommit df64d04379c9250fce1fca53b824b2228e80d791[m
Author: hans <[email protected]>
Date: Thu Jul 7 14:01:48 2022 +0700
version submitted to appstore 0.3.0+40
[33mcommit 0aedc9ec4bbd4b9b14ca43e79c596b0677221609[m
Author: Hans Bakker <[email protected]>
Date: Thu Jul 7 13:12:32 2022 +0700
submitted 0.3.0+40 to the play store
[33mcommit f4ec6fbf47c7504dabc88f4e5dc0139516aa2bfe[m
Author: Hans Bakker <[email protected]>
Date: Thu Jul 7 12:59:49 2022 +0700
improve website maintenance
[33mcommit f0d5380bbe897929cb0efc2489fda73391d5737a[m
Author: Hans Bakker <[email protected]>
Date: Wed Jul 6 17:32:14 2022 +0700
improved web interface
[33mcommit 4b0b6c74733f6ba40413cb8a3ac6bb2c35474f33[m
Author: Hans Bakker <[email protected]>
Date: Wed Jul 6 12:34:01 2022 +0700
reduces image size of pictures over 200K
[33mcommit 5b63e2b1d6fb3748ca800a01c080d6c4e9605ecf[m
Author: Hans Bakker <[email protected]>
Date: Wed Jul 6 10:13:47 2022 +0700
make website content dynamic , reordable fully dependent on markkdown content
[33mcommit 2425f1f7ad86596ba046fbf257d488db3181c5ef[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 3 15:42:35 2022 +0700
upgrade freelance to new core package, still under development...
[33mcommit 4a6528d5a8110e965219af7e2b4ead57d95546eb[m
Author: Hans Bakker <[email protected]>
Date: Sun Jul 3 14:27:06 2022 +0700
upgrade hotel to latest core
[33mcommit 90ab0aaeafbaa91dfcbfb6df500108ae0b92b26d[m
Author: Hans Bakker <[email protected]>
Date: Sat Jul 2 06:52:26 2022 +0700
put ipchange form back
[33mcommit 3b5f951b607cc836aedc6f9b5d7d0f81b4b783de[m
Author: Hans Bakker <[email protected]>
Date: Fri Jul 1 06:20:34 2022 +0700
show reduced sized modal on web version
[33mcommit 2960d574d540525a4938c9e2c6db5ff916672d25[m
Author: Hans Bakker <[email protected]>
Date: Thu Jun 30 12:36:18 2022 +0700
correction on last commit
[33mcommit 3e63c645528695e3e7b8b6821bd46a59ff10ebc1[m
Author: Hans Bakker <[email protected]>
Date: Thu Jun 30 12:27:32 2022 +0700
show version and appname at login and mainmenu screen
[33mcommit c8ef71a974d89d3519a2ee8ce5059428dd706cb5[m[33m ([m[1;33mtag: v0.2.0[m[33m)[m
Author: Hans Bakker <[email protected]>
Date: Thu Jun 30 08:20:12 2022 +0700
Android app submission 0.2.0+39
[33mcommit 1320a6621ec5152403c0438204da70f77496efc5[m
Author: hans <[email protected]>
Date: Wed Jun 29 13:39:31 2022 +0700
appstore admin submit 0.2.0+1
[33mcommit 89cd81591bb5ea140983113fa1e6c9c9f4dc0746[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 28 19:43:24 2022 +0700
update dockerfile
[33mcommit 19c0b4005d8bf3ef1b0ee7faf9db506ed6e92270[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 28 19:29:40 2022 +0700
add screen prints, move website screen, update dockerfile
[33mcommit 0a5d4fc4b0b28b98fea87e1cbca6a56bcef18705[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 28 07:02:17 2022 +0700
update api url links
[33mcommit 5f45f43bf67b917716088d40ab4a338bee929efa[m
Author: Hans Bakker <[email protected]>
Date: Mon Jun 27 07:18:30 2022 +0700
more documentation updates
[33mcommit 7cac293a439bf482cbc052fa415c1344e6753bea[m
Author: Hans Bakker <[email protected]>
Date: Sun Jun 26 19:36:28 2022 +0700
makes use of a new enum in dart 2.17
[33mcommit ec393c77c763525a4816a0233f1fa3e7fa4cf23d[m
Author: Hans Bakker <[email protected]>
Date: Fri Jun 24 11:28:55 2022 +0700
more documentation
[33mcommit 76a856f5a9b358c6d26daa5c1c5dcc47da0d1ee9[m
Author: Hans Bakker <[email protected]>
Date: Thu Jun 23 16:18:22 2022 +0700
documentation update
[33mcommit 41f17d37867a4b11e770e76c0ee47ca3ea75d55e[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 22 10:09:29 2022 +0700
refactor product dialog, widen update/create button
[33mcommit 632b36f918736378e707623e6f9b0d7258acf2c4[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 21 13:28:49 2022 +0700
do not allow edit/approve on web orders in preparation by using sales channel
[33mcommit 546968ee64033ec777ef4dad1f0c2214647b508a[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 21 10:12:46 2022 +0700
added shipmentMethod, postal address and telephone to findoc (order/shipment/invoice etc), moved wh locations to the right
[33mcommit 512ba722193fc86cfbd373e8d94920f124d1c197[m
Author: Hans Bakker <[email protected]>
Date: Mon Jun 20 13:36:46 2022 +0700
listPrice display error
[33mcommit 6b14347d4336512f92015edbbe442eed7b5d0eed[m
Author: Hans Bakker <[email protected]>
Date: Mon Jun 20 11:48:21 2022 +0700
added editing of available categories on website
[33mcommit 4f51d43b26773ec0446598b10be5bd4e02410e7b[m
Author: Hans Bakker <[email protected]>
Date: Sun Jun 19 19:19:21 2022 +0700
update asset count also from product screen, some refactoring..
[33mcommit d9336433f74874c0aad5fb9e4b2a89f7db999d70[m
Author: Hans Bakker <[email protected]>
Date: Thu Jun 9 15:04:52 2022 +0700
hotel upgrade, move close window button inside modal, does not properly work otherwise
[33mcommit cfdb92dac86d63fb829ecf73e1c28cf49ee78329[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 8 17:13:21 2022 +0700
upgraded hotel with the new core..tests not done yet
[33mcommit 9a81963b8beeb3910bf39977064223b74b4b3851[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 8 10:21:32 2022 +0700
moved general widgets dir into domain/common/widgets
[33mcommit e8e6e7c8948c1431b6b11ab71e7ac598f21054fe[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 8 10:16:26 2022 +0700
fix rental integration test
[33mcommit 7b57db23be3c4ae4c400df339d6c2511dfe7d575[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 7 14:38:27 2022 +0700
put read limits back on products, Decimal does not need a fromJson conversion
[33mcommit c2bd0152ea9f89879231ad90a05c6272c51a10f4[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 7 09:44:21 2022 +0700
fix purchase payment test
[33mcommit 0d3af88553838c85a32c10b59e4871c9a23e4433[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 7 09:38:44 2022 +0700
removed scaffoldmessenger already available in materialApp
[33mcommit c815679e5eeb675a3fa82553921a0245170de425[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 7 09:21:48 2022 +0700
fix opportunity test
[33mcommit b93cb4be27ffe51ee0392b0fb753261b3b9adab1[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 7 07:30:04 2022 +0700
remove test from lib
[33mcommit a2c2c7609995e620075305e67320283c5ba1252d[m
Author: Hans Bakker <[email protected]>
Date: Tue Jun 7 06:39:39 2022 +0700
fixes and refactoring as a result of product test
[33mcommit c4b1200e5737afcfb4d77b4bd96846ccb083ff90[m
Author: Hans Bakker <[email protected]>
Date: Sat Jun 4 16:08:18 2022 +0700
added listprice to product
[33mcommit b9e7eacf8eb2b79bf2534dd6d7c3d0105b58b433[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 1 15:40:55 2022 +0700
refactor website screens with fixing of small errors
[33mcommit 4388214a4fb68385627911907943b31cf4431bbc[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 1 14:25:16 2022 +0700
correction on previous commit website categories
[33mcommit 4ad495d38e5dd989230d028674c24a7ee3906ff5[m
Author: Hans Bakker <[email protected]>
Date: Wed Jun 1 13:40:33 2022 +0700
completed website maintenance under company option
[33mcommit 5f820bc5304a18d4afe903d7c4f9d7cc574b54c5[m
Author: Hans Bakker <[email protected]>
Date: Tue May 31 08:55:06 2022 +0700
enable to assign products to a category on the category screen
[33mcommit 05e4fcb230463d066a28b7bcc30301325a658582[m
Author: Hans Bakker <[email protected]>
Date: Mon May 30 15:06:48 2022 +0700
fixed category integration tests, upgraded shared_preferences
[33mcommit afe0c099c30456b64710546ad13b9d6065348783[m
Author: Hans Bakker <[email protected]>
Date: Mon May 30 11:38:21 2022 +0700
1. fix overflow on the splash screen
2. fix the company integrated test
3. added android multidex support
[33mcommit c8f7fc228c6dfdd273accaa5d68e68b097e5323e[m
Author: Hans Bakker <[email protected]>
Date: Sun May 29 17:36:56 2022 +0700
update integration test
[33mcommit 0c4f9b50cbafe224793d7881bf2f8c5a4ff8b964[m
Author: Hans Bakker <[email protected]>
Date: Sun May 29 17:05:09 2022 +0700
added website page editing in markdown format
[33mcommit da036e935fbafe88ba544c8ef937e084cf745904[m
Author: Hans Bakker <[email protected]>
Date: Wed May 25 14:48:48 2022 +0700
add popreststore to integration test
[33mcommit deefcd4d7c59e3123d12ef1c41155183f7dcbe8b[m
Author: Hans Bakker <[email protected]>
Date: Wed May 25 14:44:45 2022 +0700
1. utils integration test improvements
2. adapt product/category for ecommerce
[33mcommit 2faea0fe7311dcf3c6918955851cd58ec8bb7339[m
Author: Hans Bakker <[email protected]>
Date: Mon May 23 07:50:02 2022 +0700
adapted product tests to multiple categories, corrected errors as result
[33mcommit b9f06d1886337f7d3d2f3d23984ac72dad55958b[m
Author: Hans Bakker <[email protected]>
Date: Sat May 21 11:58:59 2022 +0700
- allow more than one category for a product
- upgrade packages, fix freezed warning
[33mcommit 5e70b2e61b035f116fea9deeb03085dc29f8db9e[m
Author: Hans Bakker <[email protected]>
Date: Wed May 18 14:44:47 2022 +0700
- upgrade dropdownsearch and provide with header
- added first screen to maintain a html website with optional e-commerce
[33mcommit 31a4b185690088943c40e4c5f25910a5d10b3aed[m
Author: Hans Bakker <[email protected]>
Date: Sun May 15 17:16:54 2022 +0700
correction on integration script
[33mcommit e565070f390b9a1bde208de3575a335208d3639f[m
Author: Hans Bakker <[email protected]>
Date: Sun May 15 16:10:49 2022 +0700
remove POPcommerce from install
[33mcommit 900c9402bb91d8394992213d62631c6d9c24802f[m
Author: Hans Bakker <[email protected]>
Date: Sat May 14 15:31:21 2022 +0700
integration test: run pub get before run build_runner
[33mcommit 5d01ada3e08302d1110e5371bbc86d6d69ae40d7[m
Author: Hans Bakker <[email protected]>
Date: Sat May 14 15:19:45 2022 +0700
Upgrade to flutter 3:
1. rename menuItem to menu option (conflict with flutter)
2. some changes to last commit documenting backend API
3. Upgrade packages
[33mcommit c7e2169c94765d4b4e5b0f7b3714f74c9ba4b9a1[m
Author: Hans Bakker <[email protected]>
Date: Fri May 13 14:37:53 2022 +0700
use now a branch of framework
[33mcommit 0d130f2e173c5bc9647aa71eecf205bec26d0aa2[m
Author: Hans Bakker <[email protected]>
Date: Thu May 12 07:54:45 2022 +0700
remove not used variable in login api call
[33mcommit c8d954895d9c8f1aa001de9d31cd600a8094c881[m
Author: Hans Bakker <[email protected]>
Date: Wed May 11 10:26:55 2022 +0700
more test fixes
[33mcommit 78f1bfdb80299f3054709bf6fc7fb89bbde161c0[m
Author: Hans Bakker <[email protected]>
Date: Wed May 11 10:26:04 2022 +0700
some refactoring user maintanence
[33mcommit 6899792022846ca0cdf56b9e91e960ccccd8c66d[m
Author: Hans Bakker <[email protected]>
Date: Tue May 10 12:39:57 2022 +0700
more test fixes
[33mcommit 36305cc2f598b48e10cc01c2e6f3bad229ab5773[m
Author: Hans Bakker <[email protected]>
Date: Mon May 9 20:24:55 2022 +0700
more test fixes
[33mcommit 8c4675b9a209452e9f96ab02791edeb5dbbf4351[m
Author: Hans Bakker <[email protected]>
Date: Mon May 9 19:39:48 2022 +0700
more test fixes
[33mcommit 6ea5770377781fff1ea30c1118dc36455204d1f3[m
Author: Hans Bakker <[email protected]>
Date: Mon May 9 18:03:09 2022 +0700
add test fixes
[33mcommit 678ab88f8fe7c60cdc539a6ae15c3b586d5c881e[m
Author: Hans Bakker <[email protected]>
Date: Mon May 9 15:47:06 2022 +0700
- Added opportunity test
- refactor open/close search meganism
- changed BlocProvider.of<xxxxBloc>(context) to context.read<xxxxBloc>()
[33mcommit 87dba52e1e3d5396f4a10970937bf9e825231892[m
Author: Hans Bakker <[email protected]>
Date: Sun May 8 20:32:21 2022 +0700
fix payment test error and simplify findoc search activation
[33mcommit 6bde9c0a2cb1bc5909a585a48fe19fd7674d29fb[m
Author: Hans Bakker <[email protected]>
Date: Sat May 7 19:52:25 2022 +0700
added customer/suppliers to accounting screens,extended payment_sales test
[33mcommit d93bc57df06e95a5b8abb4a71342b9cba2d411af[m
Author: Hans Bakker <[email protected]>
Date: Sat May 7 08:40:58 2022 +0700
belong to last commit
[33mcommit 3b41930ac5a04cbce4414a41ef7acea1cbd1091e[m
Author: Hans Bakker <[email protected]>
Date: Sat May 7 08:03:49 2022 +0700
improved purchase payment test, works with stripe
[33mcommit a70442605f3ed8b0a812db940c3dbf892e536950[m
Author: Hans Bakker <[email protected]>
Date: Thu May 5 19:33:24 2022 +0700
pull all growerp moqui components in integration test
[33mcommit fe8163a7e6016c8aea311afba1a68e57adf842f0[m[33m ([m[1;33mtag: v0.1.1[m[33m)[m
Author: Hans Bakker <[email protected]>
Date: Tue May 3 08:57:41 2022 +0700
published in the ios app store 0.1.0 37
[33mcommit f172f3a0f2570a84bb9241fb3f4f0c25a5c77ac2[m
Author: Hans Bakker <[email protected]>
Date: Tue May 3 08:49:31 2022 +0700
submitted to playstore 0.1.1
[33mcommit cce1689633ceef1a1a8760ca0a438877e04e2654[m
Author: Hans Bakker <[email protected]>
Date: Mon May 2 15:02:03 2022 +0700
run cleandb before starting backend in integration test
[33mcommit deb30f4d6b6a3ebf7c2acbd00bf9334c0eba1183[m
Author: Hans Bakker <[email protected]>
Date: Mon May 2 12:17:31 2022 +0700
add stripe test
[33mcommit 302981badf58b4836f435211e398a0516379f7df[m
Author: Hans Bakker <[email protected]>
Date: Mon May 2 12:11:58 2022 +0700
added validation to the payment dialog
[33mcommit 133023f6e5f0d167794c9df67200c01c7669b622[m
Author: Hans Bakker <[email protected]>
Date: Sat Apr 30 07:57:56 2022 +0700
upgraded automatic integration test script
[33mcommit 7a5d2b4ccd658b392887e9ec962b9fac54f40f92[m
Author: Hans Bakker <[email protected]>
Date: Thu Apr 28 11:59:30 2022 +0700
all integration tests passed
[33mcommit 06111a041aae5b74b7dd737670f23bf3ceee0ae5[m
Author: Hans Bakker <[email protected]>
Date: Tue Apr 26 19:05:36 2022 +0700
modify accounting headers, improve payment integration test
[33mcommit 1a551a59b6dad5221a42a22eef7d00492c79b43c[m
Author: Hans Bakker <[email protected]>
Date: Tue Apr 26 18:25:52 2022 +0700
payment has no items, shipment no seqId: error in sort
[33mcommit e88882c717cc6bb40f2e23437cdb22698559a470[m
Author: Hans Bakker <[email protected]>
Date: Tue Apr 26 12:21:06 2022 +0700
correct error in last commit
[33mcommit 17a2cff76aeac3d93342c47d231ec585384716e0[m
Author: Hans Bakker <[email protected]>
Date: Tue Apr 26 12:16:04 2022 +0700
Purchase roundtrip integration test fixed
[33mcommit c81f65c669a96d7f74a790694fd8b8005e6f6ec0[m
Author: Hans Bakker <[email protected]>
Date: Mon Apr 25 17:37:17 2022 +0700
more usertest updates
[33mcommit 7a1714e58432994d8ee6fb2fbe005ccdff5f1f0c[m
Author: Hans Bakker <[email protected]>
Date: Mon Apr 25 12:17:20 2022 +0700
correction on user integration test
[33mcommit a18aaaf5d29a3d2385d1d8a297242beb994c47f3[m
Author: Hans Bakker <[email protected]>
Date: Mon Apr 25 09:45:07 2022 +0700
restored accidentally deleted usertest file
[33mcommit 95f5fe1fffe491c636d58135f41e2c751a8c095d[m
Author: Hans Bakker <[email protected]>
Date: Mon Apr 25 09:20:40 2022 +0700
fix asset integration test
[33mcommit e0eb1561b172e0564e4b4f9a21f42641c4024321[m
Author: Hans Bakker <[email protected]>
Date: Fri Apr 22 20:14:06 2022 +0700
more category and product integrated automated test fixes
[33mcommit cbbc07fe4be50a8f57f91845b36a71a3f8d2c100[m
Author: Hans Bakker <[email protected]>
Date: Thu Apr 21 12:09:59 2022 +0700
now the category and product integration tests succeed
[33mcommit e2afffbbcb6a9b98704d0d8e6839157433998eb8[m
Author: Hans Bakker <[email protected]>
Date: Thu Apr 21 09:41:43 2022 +0700
category integration test refactored with debug prints
[33mcommit 1411408fecdb2a9242fa2005913e87fb4ad3333b[m
Author: Hans Bakker <[email protected]>
Date: Sun Apr 17 19:54:06 2022 +0700
fixed integration test errors, started to use bloc for widget dropdowns
[33mcommit 7c125bb7074123f96542d8a2af77c815df6548c4[m
Author: Hans Bakker <[email protected]>
Date: Fri Apr 15 12:56:01 2022 +0700
extended the payment maintenance screen to enter a payment without invoice. Also completed the sales/purchase payment integration tests
[33mcommit f7948771a4e4cb6c50a4555b56973cce92580b63[m
Author: Hans Bakker <[email protected]>
Date: Thu Apr 14 12:05:57 2022 +0700
moved accounting models from findoc to accounting domain add item/payment type to findoc, fixed integration tests
[33mcommit c243fd28308a15bda688a66e6fec314a33022f0a[m
Author: Hans Bakker <[email protected]>
Date: Wed Apr 13 15:31:34 2022 +0700
various changes to integration tests
[33mcommit 2abb84c35343a7aeacf1a6364ef63f98fca37854[m
Author: Hans Bakker <[email protected]>
Date: Tue Apr 12 08:27:05 2022 +0700
refactured integration tests, added invoice/payment tests
[33mcommit 2e72669a40a1b7573fc4f558b608a125f7adca78[m
Author: Hans Bakker <[email protected]>
Date: Fri Apr 1 13:41:07 2022 +0700
added payment method to payment
[33mcommit 0c528257834a2f9d3b09ba0c6c973245e414675b[m
Author: Hans Bakker <[email protected]>
Date: Wed Mar 30 18:19:40 2022 +0700
first version of payment maintenace
[33mcommit 2f2dd5e67a989345cf2b504f9a3f9c45a7fa48ad[m
Author: Hans Bakker <[email protected]>
Date: Tue Mar 29 08:23:26 2022 +0700
added invoice creation without order
[33mcommit 52afa4c92aee0f0bf27d4ed0b27abd0f22fb39b9[m
Author: Hans Bakker <[email protected]>
Date: Sat Mar 26 09:58:30 2022 +0700
upgrade dropdownsearch package to 2.0.1
[33mcommit 512c5338b3e40708a1925ce250f12448d21e8158[m
Author: Hans Bakker <[email protected]>
Date: Thu Mar 24 19:24:43 2022 +0700
docs updates, packages upgrades
[33mcommit b76ce21121aa40435912fea1b3ee10d334117561[m
Author: Hans Bakker <[email protected]>
Date: Tue Mar 22 12:30:45 2022 +0700
more documentation
[33mcommit 47565fb2705c0b0de9e3579288975148083cd746[m
Author: Hans Bakker <[email protected]>
Date: Tue Mar 22 10:32:10 2022 +0700
update docs
[33mcommit f409e733a7f8a02963fb41351b57180390d4d424[m
Author: Hans Bakker <[email protected]>
Date: Sat Mar 19 09:41:25 2022 +0700
correction on integration test users
[33mcommit 82bca1677909928d559cb07bb799b0afd23aa9a4[m
Author: Hans Bakker <[email protected]>
Date: Mon Mar 14 13:48:31 2022 +0700
add telephone and creditcard to user and company
updated integration tests
[33mcommit 2a841627cb9177186bcc347fda134b4242df16a3[m
Author: Hans Bakker <[email protected]>
Date: Mon Mar 7 10:42:49 2022 +0700
added business flow user document and 'mermaid' to support flowcharts
[33mcommit f290ff29cf016ade8698cc1cc8e144b52d706dbf[m
Author: Hans Bakker <[email protected]>
Date: Sun Mar 6 10:17:23 2022 +0700
remove package-lock in root
[33mcommit af0a0e73239d0ab69c8178d83014fcffc45cf1ca[m
Author: Hans Bakker <[email protected]>
Date: Fri Mar 4 09:20:56 2022 +0700
added a general description about growerp
[33mcommit 37bf90731a267ea132586c3be109ebdd1cdac5dc[m
Author: Hans Bakker <[email protected]>
Date: Thu Mar 3 12:27:58 2022 +0700
update read me
[33mcommit d60d07b8ee49892722b5ba93b07d0ca25368d58a[m
Author: Hans Bakker <[email protected]>
Date: Thu Mar 3 11:59:59 2022 +0700
added docsify setup of documentation, added favicon to web apps
[33mcommit 9ed1f5f8538d0dc2aff8b3864fbddb748a5e0196[m
Author: Hans Bakker <[email protected]>
Date: Thu Mar 3 05:00:38 2022 +0700
integration test adjustments
[33mcommit 428daf321dc5057bf0e6a5d9e30e035d56eec64c[m
Author: Hans Bakker <[email protected]>
Date: Wed Mar 2 16:24:53 2022 +0700
fixed errors in user order tests
[33mcommit 79eddb539b944c089b2bdafbc976cb9f77e6d39d[m
Author: Hans Bakker <[email protected]>
Date: Wed Mar 2 09:36:38 2022 +0700
more document changes
[33mcommit 5092feea5ec7b54463fc7efecfd4d1a0204d2529[m
Author: Hans Bakker <[email protected]>
Date: Wed Mar 2 07:11:05 2022 +0700
updated docs and backend ecommerce
[33mcommit 5df2e2d1956c8731636a77a405c0088f26434967[m
Author: Hans Bakker <[email protected]>
Date: Tue Mar 1 12:16:49 2022 +0700
upgraded ecommerce app
[33mcommit de15650b67af5306be61662a8e6986e7b940772d[m
Author: Hans Bakker <[email protected]>
Date: Tue Mar 1 08:02:18 2022 +0700
fix add reservation at hotel home page
[33mcommit d2ae7990d9c5c17e25796cb17fd7895cb23e8fda[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 28 20:11:05 2022 +0700
updated hotel for appstore submission
[33mcommit 2f982f719192077d29b5c494d3c0066fc3e0d9af[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 28 19:04:19 2022 +0700
update hotel for release
[33mcommit 8b6c2fedb5dffa0317ac3290a5b70b45abc6f5ad[m[33m ([m[1;33mtag: v0.1.0[m[33m)[m
Author: Hans Bakker <[email protected]>
Date: Sun Feb 27 12:34:00 2022 +0700
submitted to appstore 0.0.13/1
[33mcommit 9c75b1e8aa2c6e76883af79f61989c52c23ef297[m
Author: Hans Bakker <[email protected]>
Date: Sat Feb 26 14:49:14 2022 +0700
correct typing error
[33mcommit c83bad9db771bd5f97b1bbbb041f139c058f8ec8[m
Author: Hans Bakker <[email protected]>
Date: Sat Feb 26 13:31:53 2022 +0700
update dockerfiles
[33mcommit ed0e8ef98df5fc1439ee744a14fa62b030d3f30a[m
Author: Hans Bakker <[email protected]>
Date: Sat Feb 26 12:47:56 2022 +0700
update dockerfiles
[33mcommit 4c646c16ae072cc6c6d79f9652e652d7ee2cd75d[m
Author: Hans Bakker <[email protected]>
Date: Sat Feb 26 12:21:14 2022 +0700
playstore 3+32
[33mcommit fdfe9a6aa1447f24f92ff9e0eb1e94b770fbd87a[m
Author: Hans Bakker <[email protected]>
Date: Fri Feb 25 12:11:18 2022 +0700
additional changes to previous commit
[33mcommit 49002d1f51f5454f913534e3fe0f9fe7e99e9e2a[m
Author: Hans Bakker <[email protected]>
Date: Fri Feb 25 11:48:04 2022 +0700
re-added screenshots and framing job, upload to playstore 3+31
[33mcommit 2225040ccbc636887f1e11e8e0ca7daa5e3b861a[m
Author: Hans Bakker <[email protected]>
Date: Thu Feb 24 12:57:07 2022 +0700
uploaded android V0.03
[33mcommit 3089888b0db98d86a04ae8638b67b9d894f34688[m
Author: Hans Bakker <[email protected]>
Date: Wed Feb 23 15:33:06 2022 +0700
made sequence a local variable in tests, add a not yet working method of making screenshots with integration tests
[33mcommit cbfa0e8981623eb441dff3af7db852bbb73bee7f[m
Author: Hans Bakker <[email protected]>
Date: Wed Feb 23 11:35:23 2022 +0700
another fix for asset test
[33mcommit 77eac7602ede4570d1460f7fcd87a542e13568d2[m
Author: Hans Bakker <[email protected]>
Date: Wed Feb 23 09:42:28 2022 +0700
fix data for asset test
[33mcommit b07870fa789586d78786c5c0d7ac669364f6fcbe[m
Author: Hans Bakker <[email protected]>
Date: Wed Feb 23 09:41:21 2022 +0700
adding docsify
[33mcommit 740f9e35c0bfd6b0e9ab199956e80aa535efa09c[m
Author: Hans Bakker <[email protected]>
Date: Tue Feb 22 13:20:32 2022 +0700
upgraded chat services and rental(hotel) ordering with automated tests
[33mcommit 668d6ebdc85a309c37a3488583672a92ecea877f[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 21:23:38 2022 +0700
usertest fixes
[33mcommit f5cbde8fdfddb2de08830db3aca57ada41561738[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 17:11:11 2022 +0700
avoid updating the initial data in user test
[33mcommit 484b9fda2fd09babc243e6e25d1b01179d17630a[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 16:27:45 2022 +0700
enable all tests
[33mcommit 3e323861e76ba4fd84b35835cc998e0f8078fb81[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 16:24:59 2022 +0700
removed influence between tests
[33mcommit 89b8c1fff78cbca28e8d8daa39b552eef538bd00[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 12:44:44 2022 +0700
enable all tests
[33mcommit 6329840477b1ffae7c53964882784d761a73aaf4[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 11:03:48 2022 +0700
move test file back
[33mcommit bc8bc247c1e5ca5be9139e2f0290a64a553380fa[m
Author: Hans Bakker <[email protected]>
Date: Mon Feb 14 10:30:10 2022 +0700
move all top level tests into a single file
[33mcommit b115554f0595e7c513aa94c4884ee06a49e82074[m
Author: Hans Bakker <[email protected]>
Date: Sun Feb 13 12:10:25 2022 +0700
now order purchase/sales integration test working including full accounting
[33mcommit e5d21f9d0fb558942b47d1d705cbb988b8764cab[m
Author: Hans Bakker <[email protected]>
Date: Sun Feb 13 10:06:58 2022 +0700
added address testing to users, reusing address test from cmpany
[33mcommit 95720c4f42845fed07584ede5f8dbe479e7c995d[m
Author: Hans Bakker <[email protected]>
Date: Thu Feb 10 19:06:02 2022 +0700
added asset integration test