Merge branch 'frontend-orders/number' of gitlab.com:saburly/wiaas/new-wiaas into frontend-orders/number
This commit is contained in:
@@ -148,7 +148,7 @@ class CustomerAcceptance extends Component {
|
|||||||
{
|
{
|
||||||
customerAcceptance.documents.map((document, index) => <div key={'acceptance-documnet-' + index}>
|
customerAcceptance.documents.map((document, index) => <div key={'acceptance-documnet-' + index}>
|
||||||
<span className="document-link">
|
<span className="document-link">
|
||||||
<i className={'fa fa-file'}></i> <a href={document.url}> {document.name} ({document.extension}) </a>
|
<i className={'fa fa-file'}></i> <a target="_blank" href={document.url}> {document.name} ({document.extension}) </a>
|
||||||
</span>
|
</span>
|
||||||
<span className="document-status">
|
<span className="document-status">
|
||||||
{document.validation} <div className={'status-icon ' + document.validation}></div>
|
{document.validation} <div className={'status-icon ' + document.validation}></div>
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ class ValidateQuestionnaire extends Component {
|
|||||||
|
|
||||||
componentDidMount(){
|
componentDidMount(){
|
||||||
const {idOrder, idProcessStep} = this.props.step;
|
const {idOrder, idProcessStep} = this.props.step;
|
||||||
this.props.dispatch(fetchCustomerDocuments(idOrder, 'orderQuestionaire'));
|
//this.props.dispatch(fetchCustomerDocuments(idOrder, 'orderQuestionaire'));
|
||||||
this.props.dispatch(fetchValidationComments(idOrder, idProcessStep, 'invalidQuestionnaireComment'));
|
//this.props.dispatch(fetchValidationComments(idOrder, idProcessStep, 'invalidQuestionnaireComment'));
|
||||||
}
|
}
|
||||||
|
|
||||||
findById(orderPackage, idOrderPackagePair){
|
findById(orderPackage, idOrderPackagePair){
|
||||||
|
|||||||
Reference in New Issue
Block a user