stock
This commit is contained in:
parent
25e3aa6f67
commit
6f0fb3baf8
@ -725,7 +725,7 @@ $(function() {
|
|||||||
foreach($consumaterial as $cou){
|
foreach($consumaterial as $cou){
|
||||||
$inde=$inde+1;
|
$inde=$inde+1;
|
||||||
$consubasic = ($cou->Quantity)*($cou->Price);
|
$consubasic = ($cou->Quantity)*($cou->Price);
|
||||||
$consubasicTotal = number_format( ($consubasicTotal+$consubasic),2); ?>
|
$consubasicTotal = $consubasicTotal+$consubasic; ?>
|
||||||
<tr id="consumable<?php echo $inde;?>">
|
<tr id="consumable<?php echo $inde;?>">
|
||||||
<td ><?php echo $inde?></td>
|
<td ><?php echo $inde?></td>
|
||||||
<td id="consumaterial<?php echo $inde?>"><?php echo $cou->MaterialCode."-".$cou->MaterialName?></td>
|
<td id="consumaterial<?php echo $inde?>"><?php echo $cou->MaterialCode."-".$cou->MaterialName?></td>
|
||||||
@ -1011,7 +1011,7 @@ $(function() {
|
|||||||
foreach($packagematerial as $pac){
|
foreach($packagematerial as $pac){
|
||||||
$intt=$intt+1;
|
$intt=$intt+1;
|
||||||
$packbasic = ($pac->Quantity)*($pac->Price);
|
$packbasic = ($pac->Quantity)*($pac->Price);
|
||||||
$packbasicTotal = number_format( ($packbasicTotal+$packbasic),2);?>
|
$packbasicTotal =$packbasicTotal+$packbasic;?>
|
||||||
|
|
||||||
|
|
||||||
<tr id="pack<?php echo $intt;?>">
|
<tr id="pack<?php echo $intt;?>">
|
||||||
@ -1288,7 +1288,7 @@ $(function() {
|
|||||||
$Copdt = new DateTime($dis['CoDate']);
|
$Copdt = new DateTime($dis['CoDate']);
|
||||||
$Coprdate = $Copdt->format('d-m-Y');
|
$Coprdate = $Copdt->format('d-m-Y');
|
||||||
$copbasic = ($dis['Quantity'])*($dis['Price']);
|
$copbasic = ($dis['Quantity'])*($dis['Price']);
|
||||||
$CopBasicTotal =number_format(($CopBasicTotal+ $copbasic),2);
|
$CopBasicTotal = $CopBasicTotal+ $copbasic;
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user