Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gabriel Monnerat
erp5
Commits
f3eea0b3
Commit
f3eea0b3
authored
Feb 03, 2020
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_document_scanner: ajax must return a active process image content UUID
parent
a07158d0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
bt5/erp5_document_scanner/PathTemplateItem/web_page_module/rjs_gadget_document_scanner_js.js
...ateItem/web_page_module/rjs_gadget_document_scanner_js.js
+3
-5
bt5/erp5_document_scanner/PathTemplateItem/web_page_module/rjs_gadget_document_scanner_js.xml
...teItem/web_page_module/rjs_gadget_document_scanner_js.xml
+2
-2
bt5/erp5_document_scanner/SkinTemplateItem/portal_skins/erp5_document_scanner/Base_storeNewImageCropped.py
..._skins/erp5_document_scanner/Base_storeNewImageCropped.py
+2
-2
No files found.
bt5/erp5_document_scanner/PathTemplateItem/web_page_module/rjs_gadget_document_scanner_js.js
View file @
f3eea0b3
...
@@ -80,7 +80,7 @@
...
@@ -80,7 +80,7 @@
function
handleAsyncStore
(
gadget
,
blob_page
)
{
function
handleAsyncStore
(
gadget
,
blob_page
)
{
var
data
=
new
FormData
();
var
data
=
new
FormData
();
data
.
append
(
"
input_value
"
,
data
.
append
(
"
input_value
"
,
gadget
.
state
[
'
blob_url_
'
+
blob_page
].
split
(
'
;
'
)[
1
].
split
(
'
,
'
)[
1
]);
gadget
.
state
[
'
blob_url_
'
+
blob_page
].
split
(
'
;
'
)[
1
].
split
(
'
,
'
)[
1
]);
data
.
append
(
"
active_process_url
"
,
gadget
.
state
.
active_process
);
data
.
append
(
"
active_process_url
"
,
gadget
.
state
.
active_process
);
return
new
RSVP
.
Queue
()
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
.
push
(
function
()
{
...
@@ -93,12 +93,10 @@
...
@@ -93,12 +93,10 @@
}
}
});
});
})
})
.
push
(
function
()
{
.
push
(
function
(
response
)
{
var
state_dict
=
{};
var
state_dict
=
{};
state_dict
[
'
blob_state_
'
+
blob_page
]
=
'
OK
'
;
state_dict
[
'
blob_state_
'
+
blob_page
]
=
'
OK
'
;
// XXX TODO: ajax must return a active process image content UUID
state_dict
[
'
blob_uuid_
'
+
blob_page
]
=
response
.
uuid
;
// which should be sent in the final form submittion
state_dict
[
'
blob_uuid_
'
+
blob_page
]
=
'
XXX
'
;
return
gadget
.
changeState
(
state_dict
);
return
gadget
.
changeState
(
state_dict
);
},
function
()
{
},
function
()
{
// XXX TODO: Handle error case
// XXX TODO: Handle error case
...
...
bt5/erp5_document_scanner/PathTemplateItem/web_page_module/rjs_gadget_document_scanner_js.xml
View file @
f3eea0b3
...
@@ -244,7 +244,7 @@
...
@@ -244,7 +244,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
981.39
686.3809.47701
</string>
</value>
<value>
<string>
981.39
718.56660.63334
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -262,7 +262,7 @@
...
@@ -262,7 +262,7 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
158077
1167.45
</float>
<float>
158077
3087.67
</float>
<string>
UTC
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
...
...
bt5/erp5_document_scanner/SkinTemplateItem/portal_skins/erp5_document_scanner/Base_storeNewImageCropped.py
View file @
f3eea0b3
import
json
import
json
_
,
reference
=
context
.
Base_postDataToActiveResult
(
_
,
uuid
=
context
.
Base_postDataToActiveResult
(
active_process_url
,
input_value
)
active_process_url
,
input_value
)
return
json
.
dumps
({
"
reference"
:
reference
})
return
json
.
dumps
({
"
uuid"
:
uuid
})
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment