radboy 0.0.602__py3-none-any.whl → 0.0.603__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/OrderedAndRxd.py +59 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.602.dist-info → radboy-0.0.603.dist-info}/METADATA +1 -1
- {radboy-0.0.602.dist-info → radboy-0.0.603.dist-info}/RECORD +7 -7
- {radboy-0.0.602.dist-info → radboy-0.0.603.dist-info}/WHEEL +0 -0
- {radboy-0.0.602.dist-info → radboy-0.0.603.dist-info}/top_level.txt +0 -0
radboy/DB/OrderedAndRxd.py
CHANGED
|
@@ -15,6 +15,53 @@ class OrderedAndRecieved(BASE,Template):
|
|
|
15
15
|
|
|
16
16
|
order_dt=Column(DateTime,default=datetime.now())
|
|
17
17
|
rx_dt=Column(DateTime,default=datetime.today()+timedelta(days=1))
|
|
18
|
+
|
|
19
|
+
was_what_was_ordered_get_recieved=Column(Boolean,default=None)
|
|
20
|
+
frozen_pallets_rxd=Column(Integer,default=0)
|
|
21
|
+
grocery_pallets_rxd=Column(Integer,default=0)
|
|
22
|
+
variety_pallets_rxd=Column(Integer,default=0)
|
|
23
|
+
tote_pallets_rxd=Column(Integer,default=0)
|
|
24
|
+
bread_stacks_rxd=Column(Integer,default=0)
|
|
25
|
+
red_totes_rxd=Column(Integer,default=0)
|
|
26
|
+
|
|
27
|
+
one_gallon_stacks_rxd=Column(Integer,default=0)
|
|
28
|
+
one_gallon_stacks_ordered=Column(Integer,default=0)
|
|
29
|
+
one_gallon_stacks_size=Column(Integer,default=5)
|
|
30
|
+
one_gallon_per_crate=Column(Integer,default=6)
|
|
31
|
+
|
|
32
|
+
two_and_half_gallon_stacks_rxd=Column(Integer,default=0)
|
|
33
|
+
two_and_half_gallon_stacks_ordered=Column(Integer,default=0)
|
|
34
|
+
two_and_half_gallon_stack_size=Column(Integer,default=5)
|
|
35
|
+
two_and_half_gallon_per_crate=Column(Integer,default=3)
|
|
36
|
+
|
|
37
|
+
one_gallon_crates_ordered=Column(Integer,default=0)
|
|
38
|
+
one_gallon_crates_rxd=Column(Integer,default=0)
|
|
39
|
+
one_gallon_per_crate=Column(Integer,default=6)
|
|
40
|
+
one_gallon_names=Column(String,default="distilled and/or spring water")
|
|
41
|
+
|
|
42
|
+
two_and_half_gallon_crates_ordered=Column(Integer,default=0)
|
|
43
|
+
two_and_half_gallon_crates_rxd=Column(Integer,default=0)
|
|
44
|
+
two_and_half_gallon_per_crate=Column(Integer,default=3)
|
|
45
|
+
two_and_half_gallon_names=Column(String,default="distilled and/or spring water")
|
|
46
|
+
|
|
47
|
+
dairy_fluid_thrown=Column(Boolean,default=False)
|
|
48
|
+
dairy_crated_fluids_thrown=Column(Boolean,default=False)
|
|
49
|
+
sixteen_lb_ice_thrown=Column(Boolean,default=False)
|
|
50
|
+
nine_lb_ice_thrown=Column(Boolean,default=False)
|
|
51
|
+
|
|
52
|
+
empty_pallets_exported=Column(Integer,default=0)
|
|
53
|
+
crate_pallets_exported=Column(Integer,default=0)
|
|
54
|
+
bales_exported=Column(Integer,default=0)
|
|
55
|
+
bales_tied=Column(Integer,default=0)
|
|
56
|
+
|
|
57
|
+
meat_barrel_pallets_exported=Column(Integer,default=0)
|
|
58
|
+
|
|
59
|
+
produce__waxbins_exported=Column(Integer,default=0)
|
|
60
|
+
produce_waxbins_constructed=Column(Integer,default=0)
|
|
61
|
+
produce_compost_bins_exported=Column(Integer,default=0)
|
|
62
|
+
produce_compost_bins_constructed=Column(Integer,default=0)
|
|
63
|
+
produce_foldable_crate_pallets_exported=Column(Integer,default=0)
|
|
64
|
+
|
|
18
65
|
comment=Column(String,default='')
|
|
19
66
|
|
|
20
67
|
def __init__(self,*args,**kwargs):
|
|
@@ -28,6 +75,18 @@ except Exception as e:
|
|
|
28
75
|
OrderedAndRecieved.metadata.create_all(ENGINE)
|
|
29
76
|
|
|
30
77
|
class OrderAndRxdUi():
|
|
78
|
+
def between_dates(self,paged=False,limit=False,short_display=False):
|
|
79
|
+
'''list everything between start and end
|
|
80
|
+
paged=True -> page results and use menu to edit/delete/stop paging
|
|
81
|
+
paged=False -> print all at once
|
|
82
|
+
limit=True -> limit to number of results with offset ; use prompt to ask for for limit amount and offset amount through formbuilder
|
|
83
|
+
limit=False -> everything is printed
|
|
84
|
+
short_display=True -> display less information
|
|
85
|
+
'''
|
|
86
|
+
with Session(ENGINE) as session:
|
|
87
|
+
start=None
|
|
88
|
+
end=None
|
|
89
|
+
|
|
31
90
|
def fixtable(self):
|
|
32
91
|
OrderedAndRecieved.__table__.drop(ENGINE)
|
|
33
92
|
OrderedAndRecieved.metadata.create_all(ENGINE)
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.603'
|
|
Binary file
|
|
@@ -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=Lt2reA6xchq3U7Y08DvkrHboZ25i1ts7X2E9gSIwcVg,41101
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=wbGp0KLzMAFFXrDinXYweptXm--MA2xTk-J5kocgq-k,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/DatePicker.py,sha256=B75mDtXQrkHRCpoU9TJsaBVvkK37ykMaJyaiqGOo4dM,18334
|
|
|
83
83
|
radboy/DB/DisplayItemDb.py,sha256=uVvrNyFyBuKvrw-BEPXKYvfa-QWyFN5ahESi2l6vUUA,52046
|
|
84
84
|
radboy/DB/EstimatedPayCalendarWorkSheet.txt,sha256=GOjRSmGxFoNTdAnpPe2kGv7CkXDrh0Mee01HslamGbo,17173
|
|
85
85
|
radboy/DB/ExerciseTracker.py,sha256=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,27809
|
|
86
|
-
radboy/DB/OrderedAndRxd.py,sha256=
|
|
86
|
+
radboy/DB/OrderedAndRxd.py,sha256=YejG8yTnOsNCB8vrmyVcYlIqCJMHOJZBPDfnSAddfYY,12351
|
|
87
87
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
88
88
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
89
89
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -401,7 +401,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
401
401
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
402
402
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
403
403
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
404
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
404
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=Hcj1mCoT3dAeSfT26EN-xmIb0iKbCY92pAOqP9oVpbQ,165
|
|
405
405
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
406
406
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
407
407
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -429,7 +429,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
429
429
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
430
430
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
431
431
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
432
|
-
radboy-0.0.
|
|
433
|
-
radboy-0.0.
|
|
434
|
-
radboy-0.0.
|
|
435
|
-
radboy-0.0.
|
|
432
|
+
radboy-0.0.603.dist-info/METADATA,sha256=EKZUlsZWaMnRRLCVkIErV5w02BZp1uoYeA-XJ8ybLK0,1662
|
|
433
|
+
radboy-0.0.603.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
434
|
+
radboy-0.0.603.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
435
|
+
radboy-0.0.603.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|