@extends('layouts.fixed')
@section('title','WELL-GROUP | Time & Action Plan')
@section('content')
{{ Form::open(['action'=>'Merchandise\ActionPlanController@store','method'=>'POST','id'=>'form', 'class'=>'form-horizontal','enctype'=>'multipart/form-data']) }}
{{ Form::label('','Order Summary No : ') }}
{{ Form::text('order_summary_no',$order_summary_no, ['class'=>'form-control ','readonly']) }}
{{ Form::label('','Input Date : ') }}
{{ Form::date('input_date',null, ['class'=>'form-control ','placeholder'=>'Enter Date:']) }}
{{ Form::label('','Merchant Team : ') }}
{{ Form::text('merchant_team',null, ['class'=>'form-control ','placeholder'=>'Enter Team Name:']) }}
Order Summary
{{ Form::label('unit_id','Factory: ') }}
{{ Form::select('unit_id',$repository->AllCompanyUnit(),null,['class'=>'form-control','placeholder'=>'Select Factory']) }}
{{ Form::label('buyer_id','Buyer Name: ') }}
{{ Form::select('buyer_id',$buyers,null,['class'=>'form-control','placeholder'=>'Select Buyer']) }}
{{ Form::label('payment_term','Buyer Payment Terms: ') }}
{{ Form::select('payment_term',$payment_terms,null,['class'=>'form-control','placeholder'=>'Select Payment Terms']) }}
{{ Form::label('front_image','Product Front Picture:') }}
{{ Form::file("front_image",['class'=>'form-control']) }}
@if($errors->has("front_image"))
{{ $errors->first('front_image') }}
@endif
{{ Form::label('back_image','Product Back Picture:') }}
{{ Form::file("back_image",['class'=>'form-control']) }}
@if($errors->has("back_image"))
{{ $errors->first('back_image') }}
@endif
{{ Form::label('','Item Name : ') }}
{{ Form::text('item',null, ['class'=>'form-control ','placeholder'=>'Enter Item Name:']) }}
{{ Form::label('style_id','Style Name: ') }}
{{ Form::select('style_id',$Styles,null,['class'=>'form-control','placeholder'=>'Select Style:','required']) }}
{{ Form::label('spec_group','Spec Group : ') }}
{{ Form::text('spec_group',null, ['class'=>'form-control ','placeholder'=>'Enter Spec Group:']) }}
{{ Form::label('size_range','Size Range : ') }}
{{ Form::text('size_range',null, ['class'=>'form-control ','placeholder'=>'Enter Size Range:']) }}
{{ Form::label('confirmation_date','Order Confirmation Date : ') }}
{{ Form::date('confirmation_date',null, ['class'=>'form-control ','placeholder'=>'Enter confirmation date:']) }}
{{ Form::label('po_issue_date','Po Issue Date : ') }}
{{ Form::date('po_issue_date',null, ['class'=>'form-control ','placeholder'=>'Enter Po Issue date:']) }}
{{ Form::label('lc_contract_rcv_date','L/C Sales Contract Received Date : ') }}
{{ Form::date('lc_contract_rcv_date',null, ['class'=>'form-control ','placeholder'=>'L/C Sales Contract Received Date:']) }}
{{ Form::label('','Garments Color Name : ') }}
{{ Form::text('color_name',null,['class'=>'form-control','placeholder'=>'Enter Color Name:']) }}
@if($errors->has('color_name'))
{{ $errors->first('color_name') }}
@endif
{{ Form::label('','Budget Approved FOB Price(Pcs) : ') }}
{{ Form::text('fob_price_pcs',null,['class'=>'form-control','placeholder'=>'Enter Price:']) }}
@if($errors->has('fob_price_pcs'))
{{ $errors->first('fob_price_pcs') }}
@endif
{{ Form::label('','Budget Approved CM Price(Pcs) : ') }}
{{ Form::text('cm_price_pcs',null,['class'=>'form-control','placeholder'=>'Enter Price:']) }}
@if($errors->has('cm_price_pcs'))
{{ $errors->first('cm_price_pcs') }}
@endif
{{ Form::label('','Quantity(Pcs) : ') }}
{{ Form::text('quantity_pcs',null,['class'=>'form-control','placeholder'=>'Enter Quantity:']) }}
@if($errors->has('quantity_pcs'))
{{ $errors->first('quantity_pcs') }}
@endif
{{ Form::label('','Garments Ship Date : ') }}
{{ Form::date('ship_date',null,['class'=>'form-control','placeholder'=>'Ship Date:']) }}
@if($errors->has('ship_date'))
{{ $errors->first('ship_date') }}
@endif
| Action |
Color Name |
FOB Price(Pcs) |
CM Price(Pcs) |
Quantity(Pcs) |
Ship Date |
{{ Form::close() }}
@endsection
@section('script')
@endsection