File tree 4 files changed +13
-12
lines changed
4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -29,3 +29,4 @@ __pycache__
29
29
/.idea
30
30
/yarn.lock
31
31
/api /apilogs.log
32
+ /api /tasklogs.log
Original file line number Diff line number Diff line change 25
25
# call to update dashboard database
26
26
@app .cli .command ()
27
27
def order_poll ():
28
- date = '\' 2021-03-04\' ' # 'getdate() '
28
+ date = 'cast(getdate() as date' # ' \'2021-03-04\''
29
29
30
30
with db .get_dyna_db ().connect () as con :
31
31
rs = con .execute (
Original file line number Diff line number Diff line change 9
9
"@testing-library/jest-dom" : " ^5.11.4" ,
10
10
"@testing-library/react" : " ^11.1.0" ,
11
11
"@testing-library/user-event" : " ^12.1.10" ,
12
+ "babel-loader" : " 8.1.0" ,
12
13
"prop-types" : " ^15.7.2" ,
13
14
"ra-data-simple-rest" : " ^3.10.4" ,
14
- "react" : " ^ 17.0.1" ,
15
+ "react" : " 17.0.1" ,
15
16
"react-admin" : " ^3.13.5" ,
16
17
"react-barcode-reader" : " ^0.0.2" ,
17
18
"react-dom" : " ^17.0.1" ,
18
19
"react-redux" : " 7.2.2" ,
19
- "react-scripts" : " 4.0.3" ,
20
20
"react-router-dom" : " ^5.2.0" ,
21
+ "react-scripts" : " 4.0.3" ,
21
22
"web-vitals" : " ^1.0.1"
22
23
},
23
24
"resolutions" : {
54
55
"@babel/plugin-proposal-class-properties" : " ^7.13.0"
55
56
},
56
57
"babel" : {
57
- "presets" : [
58
- " @babel/preset-env" ,
59
- " @babel/preset-react"
60
- ],
61
- "plugins" : [
62
- " @babel/plugin-proposal-class-properties"
63
- ]
64
- }
58
+ "presets" : [
59
+ " @babel/preset-env" ,
60
+ " @babel/preset-react"
61
+ ],
62
+ "plugins" : [
63
+ " @babel/plugin-proposal-class-properties"
64
+ ]
65
+ }
65
66
}
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ export const OrderList = props => (
10
10
< ArrayField source = "lines" > < SingleFieldList > < ChipField source = "item_id" /> </ SingleFieldList > </ ArrayField >
11
11
< ReferenceField source = "order_id" reference = "orders" > < TextField source = "id" /> </ ReferenceField >
12
12
< TextField source = "status" />
13
- < DateField source = "ship_date" />
14
13
< TextField source = "ship_via" />
15
14
</ Datagrid >
16
15
</ List >
You can’t perform that action at this time.
0 commit comments