Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Java script

ngOnInit(){
    const body = {
      PR_ID_P : this.NSGModuleTPAService.produit,
      DATE_SELECTIONNEE_P : this.NSGModuleTPAService.dateSelectionnee,
     }
     console.log(body)
     this.NSGModuleTPAService.ExecuteScanEmplacement(body)
      }  

      changerEtat() {
        this.TPAChangeEvent.emit(3)
      }
    
    
      retourEtat() {
        this.TPAChangeEvent.emit(2)
      }
    
      testSucces() {
        notify('Colis ajouté avec succès', 'success', 100)
      }
    

  form_fieldDataChanged(e) {
    let updatedField = e.dataField
    const body = {
      DATE_SELECTIONNEE_P :this.NSGModuleTPAService.dateSelectionnee ,
      PR_ID_P :this.NSGModuleTPAService.produit,
      EMPLACEMENT_P : e.value
    }
    console.log(body)
  
    notify(updatedField.toString(), 'success', 1000)
    if (e.dataField == "emplacement Scan",e.value != "") {
      if (this.NSGModuleTPAService.ExecuteScanEmplacement(body).pipe(takeUntil(this.ngUnsubscribe))
      .subscribe(
        (res: any) => {
          console.log(res)
        },       )
        )    
     console.log()
    } 
    e.value = ' ';
  } 
Source by www.roblox.com #
 
PREVIOUS NEXT
Tagged: #Java #script
ADD COMMENT
Topic
Name
9+4 =