radboy 0.0.354__py3-none-any.whl → 0.0.356__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of radboy might be problematic. Click here for more details.

radboy/DB/Prompt.py CHANGED
@@ -1817,10 +1817,31 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
1817
1817
  {Fore.grey_70}**{Fore.light_green}'exe','execute','x'{Fore.light_steel_blue} write an inline script and excute it, using {Fore.magenta}#ml#{Fore.light_steel_blue} if multi-line{Fore.orange_red_1}[if available] {Fore.grey_70}**{Fore.green_yellow}to save results for use later, use the function {Fore.light_sea_green}save(result){Fore.green_yellow} where result is the variable containing your result to be used elsewhere.{Style.reset}
1818
1818
  {Fore.grey_70}**{Fore.light_green}'exe-result','execute-result','xr'{Fore.light_steel_blue} return result from inline script save(){Style.reset}
1819
1819
  {Fore.grey_70}**{Fore.light_green}'exe-print','pxr','print exe result'{Fore.light_steel_blue} print result of inline script from save without returning{Style.reset}
1820
+ {Fore.grey_70}List Modes ONLY **{Fore.light_green}'rllo','reverse list lookup order'{Fore.light_green}Reverse the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
1821
+ {Fore.grey_70}List Modes ONLY **{Fore.light_green}'vllo','view list lookup order'{Fore.light_green}View the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
1820
1822
  '''
1821
1823
  print(extra)
1822
1824
  print(helpText)
1823
1825
  continue
1826
+ elif cmd.lower() in ['rllo','reverse list lookup order']:
1827
+ try:
1828
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1829
+ state=db.detectGetOrSet('list maker lookup order',not state,setValue=True,literal=False)
1830
+ except Exception as e:
1831
+ print(e)
1832
+ state=db.detectGetOrSet('list maker lookup order',True,setValue=True,literal=False)
1833
+ continue
1834
+ elif cmd.lower() in ['vllo','view list lookup order']:
1835
+ try:
1836
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1837
+ translate={True:"Ascending by Timestamp",False:"Descending by Timestamp"}
1838
+ print(f"{state} : {translate[state]}")
1839
+ except Exception as e:
1840
+ state=db.detectGetOrSet('list maker lookup order',True,setValue=True,literal=False)
1841
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1842
+ translate={True:"Ascending by Timestamp",False:"Descending by Timestamp"}
1843
+ print(e)
1844
+ continue
1824
1845
  elif cmd.lower() in ['txt2fl','text2file','here2there','hr2thr']:
1825
1846
  outfile=Path(db.detectGetOrSet('text2file','TextOut.txt',setValue=False,literal=True))
1826
1847
  with open(outfile,'w') as x:
@@ -2006,7 +2027,14 @@ last month = today-30d
2006
2027
  for f in location_fields:
2007
2028
  tmp.append(or_(getattr(db.Entry,f)>=0.0001))
2008
2029
  results_query=results_query.filter(or_(*tmp))
2009
- results=results_query.all()
2030
+
2031
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2032
+ if not isinstance(LookUpState,bool):
2033
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2034
+ if LookUpState == True:
2035
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2036
+ else:
2037
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2010
2038
  ct=len(results)
2011
2039
  if ct < 1:
2012
2040
  print(f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}")
@@ -2016,7 +2044,7 @@ last month = today-30d
2016
2044
  master_total_crv=0
2017
2045
  master_total_tax=0
2018
2046
  master_total_tax_crv=0
2019
-
2047
+
2020
2048
  for num,i in enumerate(results):
2021
2049
  getExtras(i.EntryId,extras)
2022
2050
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
@@ -2120,7 +2148,13 @@ last month = today-30d
2120
2148
  for f in location_fields:
2121
2149
  tmp.append(or_(getattr(db.Entry,f)>=0.0001))
2122
2150
  results_query=results_query.filter(or_(*tmp))
2123
- results=results_query.all()
2151
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2152
+ if not isinstance(LookUpState,bool):
2153
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2154
+ if LookUpState == True:
2155
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2156
+ else:
2157
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2124
2158
  ct=len(results)
2125
2159
  if ct < 1:
2126
2160
  msg=f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}"
@@ -2252,7 +2286,13 @@ last month = today-30d
2252
2286
  for f in location_fields:
2253
2287
  tmp.append(or_(getattr(db.Entry,f)>=0.0001))
2254
2288
  results_query=results_query.filter(or_(*tmp))
2255
- results=results_query.all()
2289
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2290
+ if not isinstance(LookUpState,bool):
2291
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2292
+ if LookUpState == True:
2293
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2294
+ else:
2295
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2256
2296
  ct=len(results)
2257
2297
  if ct < 1:
2258
2298
  print(f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}")
@@ -2383,7 +2423,13 @@ last month = today-30d
2383
2423
  for f in location_fields:
2384
2424
  tmp.append(or_(getattr(db.Entry,f)>=0.0001))
2385
2425
  results_query=results_query.filter(or_(*tmp))
2386
- results=results_query.all()
2426
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2427
+ if not isinstance(LookUpState,bool):
2428
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2429
+ if LookUpState == True:
2430
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2431
+ else:
2432
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2387
2433
  ct=len(results)
2388
2434
  if ct < 1:
2389
2435
  msg=f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}"
@@ -2496,7 +2542,13 @@ last month = today-30d
2496
2542
  for f in location_fields:
2497
2543
  tmp.append(or_(getattr(db.Entry,f)!=0,getattr(db.Entry,f)!=None))
2498
2544
  results_query=results_query.filter(or_(*tmp))
2499
- results=results_query.all()
2545
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2546
+ if not isinstance(LookUpState,bool):
2547
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2548
+ if LookUpState == True:
2549
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2550
+ else:
2551
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2500
2552
  ct=len(results)
2501
2553
  if ct < 1:
2502
2554
  print(f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}")
@@ -2602,7 +2654,13 @@ last month = today-30d
2602
2654
  for f in location_fields:
2603
2655
  tmp.append(or_(getattr(db.Entry,f)!=0,getattr(db.Entry,f)!=None))
2604
2656
  results_query=results_query.filter(or_(*tmp))
2605
- results=results_query.all()
2657
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2658
+ if not isinstance(LookUpState,bool):
2659
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2660
+ if LookUpState == True:
2661
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2662
+ else:
2663
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2606
2664
  ct=len(results)
2607
2665
  if ct < 1:
2608
2666
  msg=f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}"
@@ -2731,95 +2789,102 @@ last month = today-30d
2731
2789
  for f in location_fields:
2732
2790
  tmp.append(or_(getattr(db.Entry,f)!=0,getattr(db.Entry,f)!=None))
2733
2791
  results_query=results_query.filter(or_(*tmp))
2734
- results=results_query.all()
2792
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2793
+ if not isinstance(LookUpState,bool):
2794
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2795
+ if LookUpState == True:
2796
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2797
+ else:
2798
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2735
2799
  ct=len(results)
2736
2800
  if ct < 1:
2737
2801
  print(f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}")
2738
2802
  continue
2739
- ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
2740
- master_total=0
2741
- master_total_crv=0
2742
- master_total_tax=0
2743
- master_total_tax_crv=0
2744
2803
 
2745
- for num,i in enumerate(results):
2746
- getExtras(i.EntryId,extras)
2747
- msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2748
- colormapped=[
2749
- Fore.deep_sky_blue_4c,
2750
- Fore.spring_green_4,
2751
- Fore.turquoise_4,
2752
- Fore.dark_cyan,
2753
- Fore.deep_sky_blue_2,
2754
- Fore.spring_green_2a,
2755
- Fore.medium_spring_green,
2756
- Fore.steel_blue,
2757
- Fore.cadet_blue_1,
2758
- Fore.aquamarine_3,
2759
- Fore.purple_1a,
2760
- Fore.medium_purple_3a,
2761
- Fore.slate_blue_1,
2762
- Fore.light_slate_grey,
2763
- Fore.dark_olive_green_3a,
2764
- Fore.deep_pink_4c,
2765
- Fore.orange_3,
2766
- ]
2767
- total=0
2768
- crv=0
2769
- tax=0
2770
- tax_crv=0
2771
- for n2,f in enumerate(location_fields):
2772
- try:
2804
+ ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
2805
+ master_total=0
2806
+ master_total_crv=0
2807
+ master_total_tax=0
2808
+ master_total_tax_crv=0
2809
+
2810
+ for num,i in enumerate(results):
2811
+ getExtras(i.EntryId,extras)
2812
+ msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2813
+ colormapped=[
2814
+ Fore.deep_sky_blue_4c,
2815
+ Fore.spring_green_4,
2816
+ Fore.turquoise_4,
2817
+ Fore.dark_cyan,
2818
+ Fore.deep_sky_blue_2,
2819
+ Fore.spring_green_2a,
2820
+ Fore.medium_spring_green,
2821
+ Fore.steel_blue,
2822
+ Fore.cadet_blue_1,
2823
+ Fore.aquamarine_3,
2824
+ Fore.purple_1a,
2825
+ Fore.medium_purple_3a,
2826
+ Fore.slate_blue_1,
2827
+ Fore.light_slate_grey,
2828
+ Fore.dark_olive_green_3a,
2829
+ Fore.deep_pink_4c,
2830
+ Fore.orange_3,
2831
+ ]
2832
+ total=0
2833
+ crv=0
2834
+ tax=0
2835
+ tax_crv=0
2836
+ for n2,f in enumerate(location_fields):
2837
+ try:
2838
+ if getattr(i,f) != 0:
2839
+ total+=getattr(i,f)
2840
+ except Exception as e:
2841
+ print(e)
2842
+ for n2,f in enumerate(location_fields):
2773
2843
  if getattr(i,f) != 0:
2774
- total+=getattr(i,f)
2844
+ msg2=f'{colormapped[n2]}{f} = {round(getattr(i,f),ROUNDTO)}{Style.reset}'
2845
+ if n2 < len(location_fields):
2846
+ msg2+=","
2847
+ msg+=msg2
2848
+ master_total+=total*round(i.Price,3)
2849
+
2850
+ crv+=(round(i.CRV,ROUNDTO)*total)
2851
+ tax+=(round(i.Tax,ROUNDTO)*total)
2852
+ if tax == 0 and crv > 0:
2853
+ tax_crv=(round(i.CRV,ROUNDTO)*total)
2854
+ else:
2855
+ tax_crv+=((round(i.Tax,ROUNDTO)*total)+(round(i.CRV,ROUNDTO)*total))
2856
+ master_total_tax+=tax
2857
+ master_total_crv+=crv
2858
+ master_total_tax_crv+=tax_crv
2859
+ tax_crv=round(tax_crv,ROUNDTO)
2860
+ try:
2861
+ super_total=(round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)/getSuperTotal(results,location_fields,colormapped)['final total'],ROUNDTO))*100
2775
2862
  except Exception as e:
2863
+ p1=round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO))
2864
+ p2=getSuperTotal(results,location_fields,colormapped)['final total']
2776
2865
  print(e)
2777
- for n2,f in enumerate(location_fields):
2778
- if getattr(i,f) != 0:
2779
- msg2=f'{colormapped[n2]}{f} = {round(getattr(i,f),ROUNDTO)}{Style.reset}'
2780
- if n2 < len(location_fields):
2781
- msg2+=","
2782
- msg+=msg2
2783
- master_total+=total*round(i.Price,3)
2784
-
2785
- crv+=(round(i.CRV,ROUNDTO)*total)
2786
- tax+=(round(i.Tax,ROUNDTO)*total)
2787
- if tax == 0 and crv > 0:
2788
- tax_crv=(round(i.CRV,ROUNDTO)*total)
2789
- else:
2790
- tax_crv+=((round(i.Tax,ROUNDTO)*total)+(round(i.CRV,ROUNDTO)*total))
2791
- master_total_tax+=tax
2792
- master_total_crv+=crv
2793
- master_total_tax_crv+=tax_crv
2794
- tax_crv=round(tax_crv,ROUNDTO)
2795
- try:
2796
- super_total=(round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)/getSuperTotal(results,location_fields,colormapped)['final total'],ROUNDTO))*100
2797
- except Exception as e:
2798
- p1=round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO))
2799
- p2=getSuperTotal(results,location_fields,colormapped)['final total']
2800
- print(e)
2801
- print(p1,"p1")
2802
- print(p2,"p2")
2803
- super_total=0
2804
-
2805
- msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{round(total,ROUNDTO)}
2806
- {Fore.light_magenta}Price({i.Price}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({round(total,ROUNDTO)}):{round(i.Price*total,ROUNDTO)}
2807
- {Fore.grey_70}+CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TotalCRV({crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(total*i.Price,ROUNDTO)+crv})
2808
- {Fore.grey_70}+Tax({i.Tax}) w/o CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxNoCRVTotal({tax})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax,ROUNDTO)})
2809
- {Fore.grey_70}+Tax({i.Tax}) w/ CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxCRVTotal({tax_crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)})
2810
- {Fore.medium_violet_red}PercentOfTotal({round(super_total,ROUNDTO)}) of Total({getSuperTotal(results,location_fields,colormapped)['final total']})
2811
- {'*'*os.get_terminal_size().columns}{Style.reset}"""
2866
+ print(p1,"p1")
2867
+ print(p2,"p2")
2868
+ super_total=0
2869
+
2870
+ msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{round(total,ROUNDTO)}
2871
+ {Fore.light_magenta}Price({i.Price}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({round(total,ROUNDTO)}):{round(i.Price*total,ROUNDTO)}
2872
+ {Fore.grey_70}+CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TotalCRV({crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(total*i.Price,ROUNDTO)+crv})
2873
+ {Fore.grey_70}+Tax({i.Tax}) w/o CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxNoCRVTotal({tax})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax,ROUNDTO)})
2874
+ {Fore.grey_70}+Tax({i.Tax}) w/ CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxCRVTotal({tax_crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)})
2875
+ {Fore.medium_violet_red}PercentOfTotal({round(super_total,ROUNDTO)}) of Total({getSuperTotal(results,location_fields,colormapped)['final total']})
2876
+ {'*'*os.get_terminal_size().columns}{Style.reset}"""
2877
+ print(msg)
2878
+ master_total=round(master_total,ROUNDTO)
2879
+ master_total_crv=round(master_total_crv,ROUNDTO)
2880
+ master_total_tax=round(master_total_tax,ROUNDTO)
2881
+ master_total_tax_crv=round(master_total_tax_crv,ROUNDTO)
2882
+ msg=f"""{Fore.light_green}Total Product Value:{Fore.slate_blue_1}{round(master_total,ROUNDTO)}
2883
+ {Fore.light_green}Total Product Value w/CRV({master_total_crv}):{Fore.slate_blue_1}{round(master_total_crv+master_total,ROUNDTO)}
2884
+ {Fore.light_green}Total Product Value Taxed w/o CRV({master_total_tax}):{Fore.slate_blue_1}{round(master_total_tax+master_total,ROUNDTO)}
2885
+ {Fore.light_green}Total Product Value Taxed w/ CRV({master_total_tax_crv}):{Fore.slate_blue_1}{round(master_total_tax_crv+master_total,ROUNDTO)}
2886
+ {Style.reset}"""
2812
2887
  print(msg)
2813
- master_total=round(master_total,ROUNDTO)
2814
- master_total_crv=round(master_total_crv,ROUNDTO)
2815
- master_total_tax=round(master_total_tax,ROUNDTO)
2816
- master_total_tax_crv=round(master_total_tax_crv,ROUNDTO)
2817
- msg=f"""{Fore.light_green}Total Product Value:{Fore.slate_blue_1}{round(master_total,ROUNDTO)}
2818
- {Fore.light_green}Total Product Value w/CRV({master_total_crv}):{Fore.slate_blue_1}{round(master_total_crv+master_total,ROUNDTO)}
2819
- {Fore.light_green}Total Product Value Taxed w/o CRV({master_total_tax}):{Fore.slate_blue_1}{round(master_total_tax+master_total,ROUNDTO)}
2820
- {Fore.light_green}Total Product Value Taxed w/ CRV({master_total_tax_crv}):{Fore.slate_blue_1}{round(master_total_tax_crv+master_total,ROUNDTO)}
2821
- {Style.reset}"""
2822
- print(msg)
2823
2888
  elif cmd.lower() in ['esbld-','export search build -','export_search_build-','exp scan build-','exp_scan_bld-']:
2824
2889
  extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2825
2890
  if extras in [None,'d',False]:
@@ -2857,98 +2922,104 @@ last month = today-30d
2857
2922
  for f in location_fields:
2858
2923
  tmp.append(or_(getattr(db.Entry,f)!=0,getattr(db.Entry,f)!=None))
2859
2924
  results_query=results_query.filter(or_(*tmp))
2860
- results=results_query.all()
2925
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2926
+ if not isinstance(LookUpState,bool):
2927
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
2928
+ if LookUpState == True:
2929
+ results=results_query.order_by(db.Entry.Timestamp.asc()).all()
2930
+ else:
2931
+ results=results_query.order_by(db.Entry.Timestamp.desc()).all()
2861
2932
  ct=len(results)
2862
2933
  if ct < 1:
2863
2934
  msg=f"{Fore.light_steel_blue}Nothing in {Fore.slate_blue_1}Bld{Fore.light_red}LS!{Style.reset}"
2864
2935
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
2865
2936
  print(msg)
2866
2937
  continue
2867
- ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
2868
- master_total=0
2869
- master_total_crv=0
2870
- master_total_tax=0
2871
- master_total_tax_crv=0
2872
-
2873
- for num,i in enumerate(results):
2874
- getExtras(i.EntryId,extras)
2875
- msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2876
- colormapped=[
2877
- Fore.deep_sky_blue_4c,
2878
- Fore.spring_green_4,
2879
- Fore.turquoise_4,
2880
- Fore.dark_cyan,
2881
- Fore.deep_sky_blue_2,
2882
- Fore.spring_green_2a,
2883
- Fore.medium_spring_green,
2884
- Fore.steel_blue,
2885
- Fore.cadet_blue_1,
2886
- Fore.aquamarine_3,
2887
- Fore.purple_1a,
2888
- Fore.medium_purple_3a,
2889
- Fore.slate_blue_1,
2890
- Fore.light_slate_grey,
2891
- Fore.dark_olive_green_3a,
2892
- Fore.deep_pink_4c,
2893
- Fore.orange_3,
2894
- ]
2895
- total=0
2896
- crv=0
2897
- tax=0
2898
- tax_crv=0
2899
- for n2,f in enumerate(location_fields):
2900
- try:
2938
+ ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
2939
+ master_total=0
2940
+ master_total_crv=0
2941
+ master_total_tax=0
2942
+ master_total_tax_crv=0
2943
+
2944
+ for num,i in enumerate(results):
2945
+ getExtras(i.EntryId,extras)
2946
+ msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2947
+ colormapped=[
2948
+ Fore.deep_sky_blue_4c,
2949
+ Fore.spring_green_4,
2950
+ Fore.turquoise_4,
2951
+ Fore.dark_cyan,
2952
+ Fore.deep_sky_blue_2,
2953
+ Fore.spring_green_2a,
2954
+ Fore.medium_spring_green,
2955
+ Fore.steel_blue,
2956
+ Fore.cadet_blue_1,
2957
+ Fore.aquamarine_3,
2958
+ Fore.purple_1a,
2959
+ Fore.medium_purple_3a,
2960
+ Fore.slate_blue_1,
2961
+ Fore.light_slate_grey,
2962
+ Fore.dark_olive_green_3a,
2963
+ Fore.deep_pink_4c,
2964
+ Fore.orange_3,
2965
+ ]
2966
+ total=0
2967
+ crv=0
2968
+ tax=0
2969
+ tax_crv=0
2970
+ for n2,f in enumerate(location_fields):
2971
+ try:
2972
+ if getattr(i,f) != 0:
2973
+ total+=getattr(i,f)
2974
+ except Exception as e:
2975
+ print(e)
2976
+ for n2,f in enumerate(location_fields):
2901
2977
  if getattr(i,f) != 0:
2902
- total+=getattr(i,f)
2978
+ msg2=f'{colormapped[n2]}{f} = {round(getattr(i,f),ROUNDTO)}{Style.reset}'
2979
+ if n2 < len(location_fields):
2980
+ msg2+=","
2981
+ msg+=msg2
2982
+ master_total+=total*round(i.Price,ROUNDTO)
2983
+
2984
+ crv+=(round(i.CRV,ROUNDTO)*total)
2985
+ tax+=(round(i.Tax,ROUNDTO)*total)
2986
+ if tax == 0 and crv > 0:
2987
+ tax_crv=(round(i.CRV,ROUNDTO)*total)
2988
+ else:
2989
+ tax_crv+=((round(i.Tax,ROUNDTO)*total)+(round(i.CRV,ROUNDTO)*total))
2990
+ master_total_tax+=tax
2991
+ master_total_crv+=crv
2992
+ master_total_tax_crv+=tax_crv
2993
+ tax_crv=round(tax_crv,ROUNDTO)
2994
+ try:
2995
+ super_total=(round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)/getSuperTotal(results,location_fields,colormapped)['final total'],ROUNDTO))*100
2903
2996
  except Exception as e:
2997
+ p1=round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO))
2998
+ p2=getSuperTotal(results,location_fields,colormapped)['final total']
2904
2999
  print(e)
2905
- for n2,f in enumerate(location_fields):
2906
- if getattr(i,f) != 0:
2907
- msg2=f'{colormapped[n2]}{f} = {round(getattr(i,f),ROUNDTO)}{Style.reset}'
2908
- if n2 < len(location_fields):
2909
- msg2+=","
2910
- msg+=msg2
2911
- master_total+=total*round(i.Price,ROUNDTO)
2912
-
2913
- crv+=(round(i.CRV,ROUNDTO)*total)
2914
- tax+=(round(i.Tax,ROUNDTO)*total)
2915
- if tax == 0 and crv > 0:
2916
- tax_crv=(round(i.CRV,ROUNDTO)*total)
2917
- else:
2918
- tax_crv+=((round(i.Tax,ROUNDTO)*total)+(round(i.CRV,ROUNDTO)*total))
2919
- master_total_tax+=tax
2920
- master_total_crv+=crv
2921
- master_total_tax_crv+=tax_crv
2922
- tax_crv=round(tax_crv,ROUNDTO)
2923
- try:
2924
- super_total=(round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)/getSuperTotal(results,location_fields,colormapped)['final total'],ROUNDTO))*100
2925
- except Exception as e:
2926
- p1=round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO))
2927
- p2=getSuperTotal(results,location_fields,colormapped)['final total']
2928
- print(e)
2929
- print(p1,"p1")
2930
- print(p2,"p2")
2931
- super_total=0
2932
- msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{round(total,ROUNDTO)}
2933
- {Fore.light_magenta}Price({i.Price}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({round(total,ROUNDTO)}):{round(i.Price*total,ROUNDTO)}
2934
- {Fore.grey_70}+CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TotalCRV({crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(total*i.Price,ROUNDTO)+crv})
2935
- {Fore.grey_70}+Tax({i.Tax}) w/o CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxNoCRVTotal({tax})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax,ROUNDTO)})
2936
- {Fore.grey_70}+Tax({i.Tax}) w/ CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxCRVTotal({tax_crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)})
2937
- {Fore.medium_violet_red}PercentOfTotal({round(super_total,ROUNDTO)}) of Total({getSuperTotal(results,location_fields,colormapped)['final total']})
2938
- {'*'*os.get_terminal_size().columns}{Style.reset}"""
3000
+ print(p1,"p1")
3001
+ print(p2,"p2")
3002
+ super_total=0
3003
+ msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{round(total,ROUNDTO)}
3004
+ {Fore.light_magenta}Price({i.Price}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({round(total,ROUNDTO)}):{round(i.Price*total,ROUNDTO)}
3005
+ {Fore.grey_70}+CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TotalCRV({crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(total*i.Price,ROUNDTO)+crv})
3006
+ {Fore.grey_70}+Tax({i.Tax}) w/o CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxNoCRVTotal({tax})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax,ROUNDTO)})
3007
+ {Fore.grey_70}+Tax({i.Tax}) w/ CRV({i.CRV})*Total({round(total,ROUNDTO)}){Fore.slate_blue_1}\n=TaxCRVTotal({tax_crv})+TotalPrice({round(total*i.Price,ROUNDTO)})=NetPrice({round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)})
3008
+ {Fore.medium_violet_red}PercentOfTotal({round(super_total,ROUNDTO)}) of Total({getSuperTotal(results,location_fields,colormapped)['final total']})
3009
+ {'*'*os.get_terminal_size().columns}{Style.reset}"""
3010
+ print(msg)
3011
+ db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
3012
+ master_total=round(master_total,ROUNDTO)
3013
+ master_total_crv=round(master_total_crv,ROUNDTO)
3014
+ master_total_tax=round(master_total_tax,ROUNDTO)
3015
+ master_total_tax_crv=round(master_total_tax_crv,ROUNDTO)
3016
+ msg=f"""{Fore.light_green}Total Product Value:{Fore.slate_blue_1}{round(master_total,ROUNDTO)}
3017
+ {Fore.light_green}Total Product Value w/CRV({master_total_crv}):{Fore.slate_blue_1}{round(master_total_crv+master_total,ROUNDTO)}
3018
+ {Fore.light_green}Total Product Value Taxed w/o CRV({master_total_tax}):{Fore.slate_blue_1}{round(master_total_tax+master_total,ROUNDTO)}
3019
+ {Fore.light_green}Total Product Value Taxed w/ CRV({master_total_tax_crv}):{Fore.slate_blue_1}{round(master_total_tax_crv+master_total,ROUNDTO)}
3020
+ {Style.reset}"""
2939
3021
  print(msg)
2940
3022
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
2941
- master_total=round(master_total,ROUNDTO)
2942
- master_total_crv=round(master_total_crv,ROUNDTO)
2943
- master_total_tax=round(master_total_tax,ROUNDTO)
2944
- master_total_tax_crv=round(master_total_tax_crv,ROUNDTO)
2945
- msg=f"""{Fore.light_green}Total Product Value:{Fore.slate_blue_1}{round(master_total,ROUNDTO)}
2946
- {Fore.light_green}Total Product Value w/CRV({master_total_crv}):{Fore.slate_blue_1}{round(master_total_crv+master_total,ROUNDTO)}
2947
- {Fore.light_green}Total Product Value Taxed w/o CRV({master_total_tax}):{Fore.slate_blue_1}{round(master_total_tax+master_total,ROUNDTO)}
2948
- {Fore.light_green}Total Product Value Taxed w/ CRV({master_total_tax_crv}):{Fore.slate_blue_1}{round(master_total_tax_crv+master_total,ROUNDTO)}
2949
- {Style.reset}"""
2950
- print(msg)
2951
- db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
2952
3023
  #end#
2953
3024
  elif cmd.lower() in ['cdp','clipboard_default_paste','clipboard default paste']:
2954
3025
  with db.Session(db.ENGINE) as session:
radboy/TasksMode/Tasks.py CHANGED
@@ -841,6 +841,7 @@ Distress - ls Distress
841
841
  print(f"{m}\n{hr}")
842
842
 
843
843
  def SearchAuto(self,InList=None,skipReturn=False):
844
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
844
845
  while True:
845
846
  try:
846
847
  with Session(self.engine) as session:
@@ -862,7 +863,10 @@ Distress - ls Distress
862
863
  query=query.filter(or_(*q))
863
864
  if InList != None:
864
865
  query=query.filter(Entry.InList==InList)
865
- results=query.all()
866
+ if state == True:
867
+ results=query.order_by(Entry.Timestamp.asc()).all()
868
+ else:
869
+ results=query.order_by(Entry.Timestamp.desc()).all()
866
870
  ct=len(results)
867
871
  for num,r in enumerate(results):
868
872
  if num < round(0.25*ct,0):
@@ -1884,6 +1888,7 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
1884
1888
  entrySepStart=f'{Back.grey_30}{Fore.light_red}\\\\{Fore.light_green}{"*"*10}{Fore.light_yellow}|{Fore.light_steel_blue}#REPLACE#{Fore.light_magenta}|{Fore.orange_red_1}{"+"*10}{Fore.light_yellow}{Style.bold}({today()}){Fore.light_red}//{Style.reset}'
1885
1889
  entrySepEnd=f'{Back.grey_30}{Fore.light_red}\\\\{Fore.orange_red_1}{"+"*10}{Fore.light_yellow}|{Fore.light_steel_blue}#REPLACE#{Fore.light_magenta}|{Fore.light_green}{"*"*10}{Fore.light_yellow}{Style.bold}({today()}){Fore.light_red}//{Style.reset}'
1886
1890
  def setFieldInList(self,fieldname,load=False,repack_exec=None,barcode=None,only_select_qty=False):
1891
+ #determine if ascending or descending by
1887
1892
  def hnf(resultx,fieldname,code):
1888
1893
  if isinstance(resultx,Entry):
1889
1894
  with Session(ENGINE) as session:
@@ -2028,7 +2033,11 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
2028
2033
  'x':1,
2029
2034
  'f':1,
2030
2035
  }
2031
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).first()
2036
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2037
+ if state == True:
2038
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.asc()).first()
2039
+ else:
2040
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.desc()).first()
2032
2041
  if result:
2033
2042
  if result.CaseCount==0:
2034
2043
  result.CaseCount=1
@@ -2148,7 +2157,12 @@ use of the python3.x module math is valid
2148
2157
  '^':1,
2149
2158
  '%':1,
2150
2159
  }
2151
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).first()
2160
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2161
+ if state == True:
2162
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.asc()).first()
2163
+ else:
2164
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.desc()).first()
2165
+
2152
2166
  if result:
2153
2167
  if result.CaseCount==0:
2154
2168
  result.CaseCount=1
@@ -2459,10 +2473,19 @@ Location Fields:
2459
2473
  CD=code
2460
2474
  ci=0
2461
2475
 
2462
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).first()
2476
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2477
+ if state == True:
2478
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).order_by(Entry.Timestamp.asc()).first()
2479
+ else:
2480
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).order_by(Entry.Timestamp.desc()).first()
2481
+
2482
+ #result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).first()
2463
2483
  if result == None:
2484
+ if state == True:
2485
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code))).order_by(Entry.Timestamp.asc()).first()
2486
+ else:
2487
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code))).order_by(Entry.Timestamp.desc()).first()
2464
2488
 
2465
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code))).first()
2466
2489
  #print(isinstance(result,Entry))
2467
2490
 
2468
2491
 
@@ -2510,9 +2533,19 @@ Location Fields:
2510
2533
  {Style.bold}{Fore.light_sea_green}Code={Fore.spring_green_3a}{Entry.cfmt(None,CD)}{Style.reset}'''
2511
2534
 
2512
2535
  print(hafnhaf)
2513
- results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).all()
2536
+
2537
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2538
+ if state == True:
2539
+ results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.asc()).all()
2540
+ else:
2541
+ results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.desc()).all()
2542
+
2543
+ #results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).all()
2514
2544
  results_ct=len(results)
2515
- resultsName=session.query(Entry).filter(or_(Entry.Name.icontains(code))).all()
2545
+ if state == True:
2546
+ resultsName=session.query(Entry).filter(or_(Entry.Name.icontains(code))).order_by(Entry.Timestamp.asc()).all()
2547
+ else:
2548
+ resultsName=session.query(Entry).filter(or_(Entry.Name.icontains(code))).order_by(Entry.Timestamp.desc()).all()
2516
2549
  resultsName_ct=len(resultsName)
2517
2550
  if results_ct > 0:
2518
2551
  warn1=f"{Fore.light_sea_green}Enter/<CODE> will default to Skipping anything from this option, and will probably present {Fore.light_yellow}another prompt{Style.reset}"
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.354'
1
+ VERSION='0.0.356'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.354
3
+ Version: 0.0.356
4
4
  Summary: A small example package
5
5
  Author: Carl Joseph Hirner III
6
6
  Author-email: Carl Hirner III <k.j.hirner.wisdom@gmail.com>
@@ -5,7 +5,7 @@ radboy/Holidays.txt,sha256=y-JZPihh5iaWKxMIHNXD39yVuVmf1vMs4FdNDcg0f1Y,3114
5
5
  radboy/InventoryGlossary.txt,sha256=018-Yqca6DFb10jPdkUY-5qhkRlQN1k3rxoTaERQ-LA,91008
6
6
  radboy/RecordMyCodes.py,sha256=XXy-o5Z_yOgrgHNju4iqM3h7xhRBkNIoHG1qePtBnGY,41316
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=2heHC3gSwHxepR-0lBzh9nQFcLxsam1kmkdoW1c5alA,17
8
+ radboy/__init__.py,sha256=Qb1JlkcDptfCs8V8tmn6WiII5clwiq17RqiYbV7l_Mg,17
9
9
  radboy/api_key,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  radboy/case-export-2024-05-14-13-10-00.672971.xlsx,sha256=Wd592d_VLFmfUI9KKKSVjNwjV91euc1T7ATyvwvUhlg,5431
11
11
  radboy/case-export-2024-05-14-13-13-22.540614.xlsx,sha256=OnGrhmScHfGp_mVaWW-LNMsqrQgyZDpiU3wV-2s3U5Q,5556
@@ -83,7 +83,7 @@ radboy/DB/ExerciseTracker.py,sha256=CZ8jdKJiAE_QTAiJTRXi8ZOnS1NUiSvWVSKLHLpYVGk,
83
83
  radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
84
84
  radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
85
85
  radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- radboy/DB/Prompt.py,sha256=28DKhYxCnZVG9cXRVEn5d9G8VKR-mFhMNcFMwCvr_j0,183674
86
+ radboy/DB/Prompt.py,sha256=6rKNKKo_H8o_epCYb-bfkyAR_1OR5qetCrjLo26j_pk,190515
87
87
  radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
88
88
  radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
89
89
  radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
@@ -107,7 +107,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
107
107
  radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
108
108
  radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
109
109
  radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
110
- radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=7hLS0XWHsmS9XDRQM_n6s3vEaGKX-BaKD6CUpC_UEwI,268651
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=kIsYjCN7fRiO5kCcI5zZgb-DCTdctC_miZkqe0yNZq8,275399
111
111
  radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
112
112
  radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
113
113
  radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
@@ -330,7 +330,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
330
330
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
331
331
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
332
332
  radboy/TasksMode/SetEntryNEU.py,sha256=3nUNDUNyxq4zeMtmUQ7aS1o23P7KhDIMdUPNqPnYbRk,17343
333
- radboy/TasksMode/Tasks.py,sha256=QhAeLS_iAqUEu22lRwqZXf8P7Ni5EYXyDOVYamTbdMg,301922
333
+ radboy/TasksMode/Tasks.py,sha256=S6KZPx3mdnfewDyflpb6UqrRSzhptp2xkWu8plGFrAU,305097
334
334
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
335
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
336
336
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -339,7 +339,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
339
339
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=leIelDzPrZE_YgKs0B99osmhyENYtYgi3ErgS2XqSPs,20088
340
340
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
341
341
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
342
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=2Ha7YPcUIypji3vx4pfDOTKsvOL9ODPerFBkQ329r8w,368890
342
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=8oDXECFzR5h_HHLu9e_kNpwiweDfnLrTpS65FcU2920,374234
343
343
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
344
344
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
345
345
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -386,7 +386,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
386
386
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
387
387
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
388
388
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
389
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=DY5hV7AgyAk4SD2F8emvApsiqjh0yWlhOMZwYmjUaQU,165
389
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=hqEkGlkWy7tm67wZcZkiUpZVBFgEBGcu9FTr00054gM,165
390
390
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
391
391
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
392
392
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -411,7 +411,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
411
411
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
412
412
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
413
413
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
414
- radboy-0.0.354.dist-info/METADATA,sha256=3IFbLoffsNE2RiY0pE_TkmL4FWYBH2cRSaTz974wOic,794
415
- radboy-0.0.354.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
- radboy-0.0.354.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
- radboy-0.0.354.dist-info/RECORD,,
414
+ radboy-0.0.356.dist-info/METADATA,sha256=e2SDtdug1qK3Ckd55uTRQZPeh12QuV3S_vtvrg7-Ds8,794
415
+ radboy-0.0.356.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
+ radboy-0.0.356.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
+ radboy-0.0.356.dist-info/RECORD,,