radboy 0.0.747__py3-none-any.whl → 0.0.748__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 +44 -175
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.747.dist-info → radboy-0.0.748.dist-info}/METADATA +1 -1
- {radboy-0.0.747.dist-info → radboy-0.0.748.dist-info}/RECORD +7 -7
- {radboy-0.0.747.dist-info → radboy-0.0.748.dist-info}/WHEEL +0 -0
- {radboy-0.0.747.dist-info → radboy-0.0.748.dist-info}/top_level.txt +0 -0
radboy/DB/OrderedAndRxd.py
CHANGED
|
@@ -94,8 +94,7 @@ MOOD_STRING='''
|
|
|
94
94
|
|
|
95
95
|
class OrderedAndRecieved(BASE,Template):
|
|
96
96
|
'''
|
|
97
|
-
|
|
98
|
-
set the rx datetime
|
|
97
|
+
work notes
|
|
99
98
|
'''
|
|
100
99
|
__tablename__='OrderedAndRecieved'
|
|
101
100
|
Name=Column(String,default=None)
|
|
@@ -107,179 +106,49 @@ class OrderedAndRecieved(BASE,Template):
|
|
|
107
106
|
order_dt=Column(DateTime,default=datetime.now())
|
|
108
107
|
rx_dt=Column(DateTime,default=datetime.today()+timedelta(days=1))
|
|
109
108
|
|
|
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
|
-
empty_pallets_exported=Column(Integer,default=0)
|
|
155
|
-
crate_pallets_exported=Column(Integer,default=0)
|
|
156
|
-
bales_exported=Column(Integer,default=0)
|
|
157
|
-
bales_tied=Column(Integer,default=0)
|
|
158
|
-
|
|
159
|
-
beverage_pallets_restacked=Column(Integer,default=0)
|
|
160
|
-
beverage_pallets_restacked_cmt=Column(String,default='')
|
|
161
|
-
|
|
162
|
-
meat_barrel_pallets_exported=Column(Integer,default=0)
|
|
163
|
-
|
|
164
|
-
produce__waxbins_exported=Column(Integer,default=0)
|
|
165
|
-
produce_waxbins_constructed=Column(Integer,default=0)
|
|
166
|
-
produce_compost_bins_exported=Column(Integer,default=0)
|
|
167
|
-
produce_compost_bins_constructed=Column(Integer,default=0)
|
|
168
|
-
produce_foldable_crate_pallets_exported=Column(Integer,default=0)
|
|
169
|
-
|
|
170
|
-
sick_calls_total=Column(Integer,default=0)
|
|
171
|
-
sick_calls_cmt=Column(String,default='')
|
|
172
|
-
|
|
173
|
-
workers_present=Column(String,default='')
|
|
174
|
-
workers_present_cmt=Column(String,default='')
|
|
175
|
-
|
|
176
|
-
was_hallway_cleared=Column(Boolean,default=False)
|
|
177
|
-
was_hallway_cleared_cmt=Column(String,default='')
|
|
178
|
-
|
|
179
|
-
DT_punched_in=Column(DateTime,default=None)
|
|
180
|
-
DT_out_of_recieving=Column(DateTime,default=None)
|
|
181
|
-
DT_first_break=Column(DateTime,default=None)
|
|
182
|
-
DT_on_aisle_from_first_break=Column(DateTime,default=None)
|
|
183
|
-
DT_to_lunch=Column(DateTime,default=None)
|
|
184
|
-
DT_from_lunch=Column(DateTime,default=None)
|
|
185
|
-
DT_punched_out=Column(DateTime,default=None)
|
|
186
|
-
DT_grocery_breakdown_finished=Column(DateTime,default=None)
|
|
187
|
-
DT_frozen_breakdown_finished=Column(DateTime,default=None)
|
|
188
|
-
|
|
189
|
-
clocked_in_early=Column(Boolean,default=False)
|
|
190
|
-
clocked_in_late=Column(Boolean,default=False)
|
|
191
|
-
clocked_out_early=Column(Boolean,default=False)
|
|
192
|
-
clocked_out_late=Column(Boolean,default=False)
|
|
193
|
-
lunch_out_early=Column(Boolean,default=False)
|
|
194
|
-
lunch_in_early=Column(Boolean,default=False)
|
|
195
|
-
lunch_out_late=Column(Boolean,default=False)
|
|
196
|
-
lunch_in_late=Column(Boolean,default=False)
|
|
197
|
-
|
|
198
|
-
assisted_deli=Column(Boolean,default=False)
|
|
199
|
-
assisted_deli_with=Column(String,default='')
|
|
200
|
-
|
|
201
|
-
rate_your_anger_0_to_10=Column(Integer,default=0)
|
|
202
|
-
rate_your_anxiety_0_to_10=Column(Integer,default=0)
|
|
203
|
-
rate_your_mood_0_to_10=Column(Integer,default=0)
|
|
204
|
-
rate_your_energy_0_to_10=Column(Integer,default=0)
|
|
205
|
-
rate_your_worriedness_0_to_10=Column(Integer,default=0)
|
|
206
|
-
personal_comment_related_to_rating=Column(String,default=MOOD_STRING)
|
|
207
|
-
|
|
208
|
-
was_receiving_assisted=Column(Boolean,default=False)
|
|
209
|
-
recieving_comments=Column(Text,default=None)
|
|
210
|
-
reciever_name=Column(String,default='')
|
|
211
|
-
reciever_present_by_dt=Column(DateTime,default=None)
|
|
212
|
-
was_there_a_reciever=Column(Boolean,default=False)
|
|
213
|
-
|
|
214
|
-
was_gm_assisted=Column(Boolean,default=False)
|
|
215
|
-
gm_comments=Column(Text,default=None)
|
|
216
|
-
gm_manager_name=Column(String,default='')
|
|
217
|
-
gm_manager_present_by_dt=Column(DateTime,default=None)
|
|
218
|
-
was_there_a_gm_manager=Column(Boolean,default=False)
|
|
219
|
-
|
|
220
|
-
was_liquor_assisted=Column(Boolean,default=False)
|
|
221
|
-
liquor_comments=Column(Text,default=None)
|
|
222
|
-
liquor_manager_name=Column(String,default='')
|
|
223
|
-
liquor_manager_present_by_dt=Column(DateTime,default=None)
|
|
224
|
-
was_there_a_liquor_manager=Column(Boolean,default=False)
|
|
225
|
-
|
|
226
|
-
was_grocery_assisted=Column(Boolean,default=False)
|
|
227
|
-
grocery_comments=Column(Text,default=None)
|
|
228
|
-
grocery_manager_name=Column(String,default='')
|
|
229
|
-
grocery_manager_present_by_dt=Column(DateTime,default=None)
|
|
230
|
-
was_there_a_grocery_manager=Column(Boolean,default=False)
|
|
231
|
-
|
|
232
|
-
was_dairy_assisted=Column(Boolean,default=False)
|
|
233
|
-
dairy_comments=Column(Text,default=None)
|
|
234
|
-
dairy_manager_name=Column(String,default='')
|
|
235
|
-
dairy_manager_present_by_dt=Column(DateTime,default=None)
|
|
236
|
-
was_there_a_dairy_manager=Column(Boolean,default=False)
|
|
237
|
-
|
|
238
|
-
was_meat_department_assisted=Column(Boolean,default=False)
|
|
239
|
-
meat_department_comments=Column(Text,default=None)
|
|
240
|
-
meat_department_manager_name=Column(String,default='')
|
|
241
|
-
meat_department_manager_present_by_dt=Column(DateTime,default=None)
|
|
242
|
-
was_there_a_meat_department_manager=Column(Boolean,default=False)
|
|
243
|
-
|
|
244
|
-
was_deli_assisted=Column(Boolean,default=False)
|
|
245
|
-
deli_comments=Column(Text,default=None)
|
|
246
|
-
deli_manager_name=Column(String,default='')
|
|
247
|
-
deli_manager_present_by_dt=Column(DateTime,default=None)
|
|
248
|
-
was_there_a_deli_manager=Column(Boolean,default=False)
|
|
249
|
-
|
|
250
|
-
was_bakery_assisted=Column(Boolean,default=False)
|
|
251
|
-
bakery_comments=Column(Text,default=None)
|
|
252
|
-
bakery_manager_name=Column(String,default='')
|
|
253
|
-
#Column(String,default=None)
|
|
254
|
-
bakery_manager_present_by_dt=Column(DateTime,default=None)
|
|
255
|
-
was_there_a_bakery_manager=Column(Boolean,default=False)
|
|
256
|
-
|
|
257
|
-
did_you_deliver_general_merchadise=Column(String,default=None)
|
|
258
|
-
did_you_break_down_general_merchandise=Column(String,default=None)
|
|
259
|
-
did_throw_general_merchandise=Column(String,default=None)
|
|
260
|
-
did_you_face_general_merchandise=Column(String,default=None)
|
|
261
|
-
did_you_face_endcaps_frontend_displays=Column(String,default=None)
|
|
262
|
-
did_you_deliver_tote_pallets=Column(String,default=None)
|
|
263
|
-
did_you_deliver_bread_stacks=Column(String,default=None)
|
|
264
|
-
did_you_deliver_red_totes_to_icc=Column(String,default=None)
|
|
265
|
-
did_deliver_warehouse39=Column(String,default=None)
|
|
266
|
-
did_you_deliver_kehe=Column(String,default=None)
|
|
267
|
-
did_you_throw_kehe=Column(String,default=None)
|
|
268
|
-
did_you_break_down_kehe=Column(String,default=None)
|
|
269
|
-
did_you_break_down_warehouse39=Column(String,default=None)
|
|
270
|
-
did_you_throw_warehouse39=Column(String,default=None)
|
|
271
|
-
did_deliver_bakery_items=Column(String,default=None)
|
|
272
|
-
did_you_deliver_meat_items=Column(String,default=None)
|
|
273
|
-
did_you_deliver_deli_items=Column(String,default=None)
|
|
274
|
-
did_you_deliver_starbucks_items=Column(String,default=None)
|
|
275
|
-
did_you_deliver_anything_to_file_maintenance=Column(String,default=None)
|
|
276
|
-
did_you_deliver_anything_to_the_front_end_or_customer_service=Column(String,default=None)
|
|
277
|
-
did_you_condense_beverage=Column(String,default=None)
|
|
278
|
-
did_you_deliver_anything_for_anyother_department_other_than_assigned=Column(String,default=None)
|
|
279
|
-
your_assigned_department=Column(String,default=None)
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
comment=Column(String,default='')
|
|
109
|
+
#schedule
|
|
110
|
+
Was_This_A_Scheduled_Shift=Column(Boolean,default=True)
|
|
111
|
+
ScheduledShiftDTOE=Column(DateTime,default=None)
|
|
112
|
+
ScheduledDays=Column(String,default=None)
|
|
113
|
+
ScheduledShiftNotes=Column(String,default=None)
|
|
114
|
+
Assigned_Department=Column(String,default=None)
|
|
115
|
+
Departments_Handled_or_Touched=Column(Text,default=None)
|
|
116
|
+
|
|
117
|
+
#shift info
|
|
118
|
+
TasksPerformed=Column(Text,default=None)
|
|
119
|
+
TasksAssigned=Column(Text,default=None)
|
|
120
|
+
TasksNotes=Column(Text,default=None)
|
|
121
|
+
#management
|
|
122
|
+
ManagerPresent=Column(Boolean,default=None)
|
|
123
|
+
Manager_Name=Column(Boolean,default=None)
|
|
124
|
+
ManagerNotes=Column(Text,default=None)
|
|
125
|
+
|
|
126
|
+
SupervisorPresent=Column(Boolean,default=None)
|
|
127
|
+
SupervisorName=Column(String,default=None)
|
|
128
|
+
SupervisorNotes=Column(Text,default=None)
|
|
129
|
+
|
|
130
|
+
RateOfPay=Column(Float,default=None)
|
|
131
|
+
RateOfPayComment=Column(Float,default=None)
|
|
132
|
+
RateOfPayBy=Column(String,default=None)
|
|
133
|
+
|
|
134
|
+
PersonInChargePresent=Column(Boolean,default=True)
|
|
135
|
+
PersonInChargeName=Column(String,default=None)
|
|
136
|
+
PersonInChargeNotes=Column(Text,default=None)
|
|
137
|
+
|
|
138
|
+
MentalEpisode=Column(Boolean,default=None)
|
|
139
|
+
MentalEpisodeTotal=Column(Integer,default=None)
|
|
140
|
+
MentalEpisodeNotes=Column(Text,default=None)
|
|
141
|
+
|
|
142
|
+
HealthViolations=Column(Boolean,default=None)
|
|
143
|
+
HealthViolationsTotal=Column(Integer,default=None)
|
|
144
|
+
HealthViolationsNotes=Column(Text,default=None)
|
|
145
|
+
|
|
146
|
+
SafetyViolations=Column(Boolean,default=None)
|
|
147
|
+
SafetyViolationsTotal=Column(Integer,default=None)
|
|
148
|
+
SafetyViolationsNotes=Column(Text,default=None)
|
|
149
|
+
|
|
150
|
+
web_links=Column(Text,default=None)
|
|
151
|
+
comment=Column(String,default=None)
|
|
283
152
|
|
|
284
153
|
def __init__(self,*args,**kwargs):
|
|
285
154
|
for k in kwargs:
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.748'
|
|
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=h30zoTqt-XLt_afDPlxMxBiKKwmKi3N-yAuldNCqXUo,41476
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=Ohqk7uE2uEGXlw93MNgBjpU379aPMS0VRMz_fJ8EA3o,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
|
|
@@ -84,7 +84,7 @@ radboy/DB/DisplayItemDb.py,sha256=uVvrNyFyBuKvrw-BEPXKYvfa-QWyFN5ahESi2l6vUUA,52
|
|
|
84
84
|
radboy/DB/EstimatedPayCalendarWorkSheet.txt,sha256=GOjRSmGxFoNTdAnpPe2kGv7CkXDrh0Mee01HslamGbo,17173
|
|
85
85
|
radboy/DB/ExerciseTracker.py,sha256=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,27809
|
|
86
86
|
radboy/DB/LetterWriter.py,sha256=0B14GB-hJK2Xf_TFASriOELFygiI1LwkSb__R3tUiU0,2631
|
|
87
|
-
radboy/DB/OrderedAndRxd.py,sha256=
|
|
87
|
+
radboy/DB/OrderedAndRxd.py,sha256=_13wm5de_c7_DKNaNAItu3UkmPWj7okUHWGVqtEe0Qg,16572
|
|
88
88
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
89
89
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
90
90
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -406,7 +406,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
406
406
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
407
407
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
408
408
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
409
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
409
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=Vu7wEP2dSDXWe-lM2s6PcCrr_nkJqn4sdSsecqAaxHM,165
|
|
410
410
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
411
411
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
412
412
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -434,7 +434,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
434
434
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
435
435
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
436
436
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
437
|
-
radboy-0.0.
|
|
438
|
-
radboy-0.0.
|
|
439
|
-
radboy-0.0.
|
|
440
|
-
radboy-0.0.
|
|
437
|
+
radboy-0.0.748.dist-info/METADATA,sha256=rWwcBefrGo0ySWGmA54FlZVMpQZSz2QgcYsJmFSPPs8,1891
|
|
438
|
+
radboy-0.0.748.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
439
|
+
radboy-0.0.748.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
440
|
+
radboy-0.0.748.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|