build_app
This commit is contained in:
		
							parent
							
								
									1e64cab3bc
								
							
						
					
					
						commit
						7588b62dd3
					
				| @ -72,6 +72,9 @@ public class BuilderService { | ||||
| addCustomMenu( "Todo","Todo",  "Transcations");  | ||||
| 
 | ||||
| 
 | ||||
| addCustomMenu( "Todo","Todo",  "Transcations");  | ||||
| 
 | ||||
| 
 | ||||
| addCustomMenu( "Calculator","Calculator",  "Transcations");  | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -28,9 +28,9 @@ private String  task; | ||||
| 
 | ||||
| private String  description; | ||||
| 
 | ||||
| private String due_date; | ||||
| 
 | ||||
| private String completed; | ||||
| 
 | ||||
| private String duedate; | ||||
| 
 | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -81,10 +81,10 @@ old.setTask(data.getTask()); | ||||
| 
 | ||||
| old.setDescription(data.getDescription()); | ||||
| 
 | ||||
| old.setDue_date(data.getDue_date()); | ||||
| 
 | ||||
| old.setCompleted(data.getCompleted()); | ||||
| 
 | ||||
| old.setDuedate(data.getDuedate()); | ||||
| 
 | ||||
| final Todo test = Repository.save(old); | ||||
| 		data.setUpdatedBy(getUser().getUserId()); | ||||
|   return test;}  | ||||
|  | ||||
| @ -1,2 +1,2 @@ | ||||
| CREATE TABLE app-d.Todo(id BIGINT NOT NULL AUTO_INCREMENT, task VARCHAR(400), due_date Date, description VARCHAR(400), completed bit(1),  PRIMARY KEY (id)); | ||||
| CREATE TABLE app-d.Todo(id BIGINT NOT NULL AUTO_INCREMENT, task VARCHAR(400), duedate Date, description VARCHAR(400), completed bit(1),  PRIMARY KEY (id)); | ||||
| 
 | ||||
|  | ||||
| @ -31,11 +31,11 @@ | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-column [clrDgField]="'due_date'"> <ng-container *clrDgHideableColumn="{hidden: false}"> due date | ||||
| <clr-dg-column [clrDgField]="'completed'"> <ng-container *clrDgHideableColumn="{hidden: false}"> completed | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-column [clrDgField]="'completed'"> <ng-container *clrDgHideableColumn="{hidden: false}"> completed | ||||
| <clr-dg-column [clrDgField]="'duedate'"> <ng-container *clrDgHideableColumn="{hidden: false}"> dueDate | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
|   | ||||
| @ -53,11 +53,11 @@ | ||||
| <clr-dg-cell>{{user.description }}</clr-dg-cell> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-cell>{{user.due_date }}</clr-dg-cell> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-cell>{{user.completed }}</clr-dg-cell> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-cell>{{user.duedate }}</clr-dg-cell> | ||||
| 
 | ||||
|   | ||||
|   <!-- who column --> | ||||
| <clr-dg-cell> | ||||
| @ -246,13 +246,13 @@ | ||||
| 	      </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12">        | ||||
| <label>due date</label> | ||||
| 	        <input id="name" class="clr-input"  type="date" [(ngModel)]="rowSelected.due_date" name="due_date" /> | ||||
| <label>completed</label> | ||||
| 	        <input class="clr-input"  type="text" [(ngModel)]="rowSelected.completed" name="completed" /> | ||||
| 	      </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12">        | ||||
| <label>completed</label> | ||||
| 	        <input class="clr-input"  type="text" [(ngModel)]="rowSelected.completed" name="completed" /> | ||||
| <label>dueDate</label> | ||||
| 	        <input id="name" class="clr-input"  type="date" [(ngModel)]="rowSelected.duedate" name="duedate" /> | ||||
| 	      </div> | ||||
| 
 | ||||
|   </div>  | ||||
| @ -340,13 +340,13 @@ | ||||
|  </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12"> | ||||
|  <label>  due date</label> | ||||
|  <input class="clr-input"  type="date"  formControlName="due_date" />        | ||||
|  <label>  completed</label> | ||||
|  <input class="clr-input"  type="text"  formControlName="completed" />        | ||||
|  </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12"> | ||||
|  <label>  completed</label> | ||||
|  <input class="clr-input"  type="text"  formControlName="completed" />        | ||||
|  <label>  dueDate</label> | ||||
|  <input class="clr-input"  type="date"  formControlName="duedate" />        | ||||
|  </div> | ||||
| 
 | ||||
|   | ||||
|  | ||||
| @ -68,10 +68,10 @@ task : [null], | ||||
| 
 | ||||
| description : [null], | ||||
| 
 | ||||
| due_date : [null], | ||||
| 
 | ||||
| completed : [null], | ||||
| 
 | ||||
| duedate : [null], | ||||
| 
 | ||||
| 
 | ||||
|   | ||||
| 
 | ||||
|  | ||||
| @ -1,5 +1,6 @@ | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| import { CalculatorwireframeComponent } from './BuilderComponents/app-b/Calculatorwireframe/Calculatorwireframe.component'; | ||||
| 
 | ||||
| 
 | ||||
| @ -288,6 +289,8 @@ const routes: Routes = [ | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| {path:'Calculatorwireframe',component:CalculatorwireframeComponent}, | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,5 +1,6 @@ | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| import { CalculatorwireframeComponent } from './BuilderComponents/app-b/Calculatorwireframe/Calculatorwireframe.component'; | ||||
| 
 | ||||
| 
 | ||||
| @ -161,6 +162,8 @@ import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component' | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| CalculatorwireframeComponent, | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -228,7 +228,7 @@ | ||||
|   "SUB_MENU": "Sub Menu", | ||||
|   "Todo": "Todo", | ||||
|   "task": "task", | ||||
|   "due_date": "due_date", | ||||
|   "dueDate": "dueDate", | ||||
|   "description": "description", | ||||
|   "completed": "completed" | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user