0
我正在尋找添加稅線以及產品下的總行。稅額固定爲100美元,直到小計的30%超過100美元爲止,此時稅額等於30%(小計)。這是我做的,當我最初寫在JavaScript形式(但意識到PHP的可能是去了解這個從方式獲得去 - 我錯了?):PHP訂單 - 固定/可變小計行?
var setup = 0;
if(gt*.30>100){
setup = gt*.3;
}
else if (gt*.3<100 && gt>0){
setup = 100;
}
else if (gt =0) {
setup = 0;
}
這裏是模板我工作過的:http://www.dyn-web.com/php/order_form/example2.php
PHP代碼至今:
<?php
$PRODUCTS = array(
// product abbreviation, product name, unit price
// follow valid name/ID rules for product abbreviation
array('prod1', '20" 4:3 (1600 x 1200)', 150),
array('prod2', '24" 16:9 (1920 x 1200)', 250),
array('prod3', '32" 16:9 (1920 x 1080)', 300),
array('prod4', '40" 16:9 (1920 x 1080)', 450),
array('prod5', '46」 LCD 16:9 (1920 x 1080)', 600),
);
// functions for example 2 order form
function getOrderForm2() {
global $PRODUCTS;
$tbl = new HTML_Table('', 'demoTbl');
$frm = new HTML_Form();
// header row
$tbl->addRow();
$tbl->addCell('Product', 'first', 'header');
$tbl->addCell('Price', '', 'header');
$tbl->addCell('Quantity', '', 'header');
$tbl->addCell('Totals', '', 'header');
// display product info/form elements
foreach($PRODUCTS as $product) {
list($abbr, $name, $price) = $product;
// quantity text input
$qty_el = $frm->addInput('text', $abbr . '_qty', 0,
array('size'=>4, 'class'=>'cur', 'pattern'=>'[0-9]+', 'placeholder'=>0,
'onchange'=>'getProductTotal(this)',
'onclick'=>'checkValue(this)', 'onblur'=>'reCheckValue(this)'));
// total text input
$tot_el = $frm->addInput('text', $abbr . '_tot', 0, array('readonly'=>true, 'size'=>8, 'class'=>'cur'));
// price hidden input
$price_el = $frm->addInput('hidden', $abbr . '_price', $price);
$tbl->addRow();
$tbl->addCell($name);
$tbl->addCell('$' . number_format($price, 2) . $price_el, 'cur');
$tbl->addCell($qty_el, 'qty');
$tbl->addCell($tot_el);
}
// subtotal row
$tbl->addRow();
$tbl->addCell('Equipment Subtotal: ', 'total', 'data', array('colspan'=>3));
$tbl->addCell($frm->addInput('text', 'total', 0, array('readonly'=>true, 'size'=>8, 'class'=>'cur')));
//tax row
$tbl->addRow();
$tbl->addCell('Delivery/Set-Up/Pick-Up: 30% of Equipment Subtotal ($100 minimum): ', 'total', 'data', array('colspan'=>3));
$tbl->addCell($frm->addInput('text', 'tax', 0, array('readonly'=>true, 'size'=>8, 'class'=>'cur')));
// total row
$tbl->addRow();
$tbl->addCell('Grand Total: ', 'total', 'data', array('colspan'=>3));
$tbl->addCell($frm->addInput('text', 'final', 0, array('readonly'=>true, 'size'=>8, 'class'=>'cur')));
// additional fields for contact info
$tbl->addRow();
$tbl->addCell('First Name: ', 'label');
$tbl->addCell(
$frm->addInput('text', 'first_name', '', array('size'=>36)),
'', 'data', array('colspan'=>3)
);
$tbl->addRow();
$tbl->addCell('Last Name: ', 'label');
$tbl->addCell(
$frm->addInput('text', 'last_name', '', array('size'=>36)),
'', 'data', array('colspan'=>3)
);
$tbl->addRow();
$tbl->addCell('Email: ', 'label');
$tbl->addCell(
$frm->addInput('text', 'email', '', array('size'=>36,
'pattern' => '^[\w\+\'\.-][email protected][\w\'\.-]+\.[a-zA-Z]{2,}$',
'required' => true
)), '', 'data',
array('colspan'=>3)
);
$tbl->addRow();
$tbl->addCell('Phone: ', 'label');
$tbl->addCell(
$frm->addInput('text', 'phone', '', array('size'=>36)),
'last', 'data', array('colspan'=>3)
);
// submit button
$tbl->addRow();
$tbl->addCell($frm->addInput('submit', 'submit', 'Submit'),
'submit', 'data', array('colspan'=>4));
$frmStr = $frm->startForm('ex2_result.php', 'post', '', array('onsubmit'=>'return checkSubmit(this);')) .
$tbl->display() . $frm->endForm();
return $frmStr;
}
我人爲地賦予變量「稅」和「最後的」稅務和總計行,但我甚至確定小計在模板中是如何計算的,我沒有看到任何線summi在任何地方。我覺得我可能會有點頭痛,但我認爲我可以通過一些幫助來解決這個問題。任何人都可以指導我正確設置它嗎?
感謝您的回覆......我認爲我遇到的問題是,稅款需要小計的功能,而不是每個項目,因爲它是30%(如果超過100美元)的總訂單。 我認爲在你寫出的情況下,3種產品[1]的總稅額應該是300美元,當它應該達到225美元時。那有意義嗎? – sixfiveoh
查看我更新的答案。這有幫助嗎? – phreakv6
它呢,謝謝!我還有一個問題來自我的原始php - //小計行 $ tbl-> addRow(); $ tbl-> addCell('Equipment Subtotal:','total','data',array('colspan'=> 3)); ('readonly'=> true,'size'=> 8,'class'=>'cur')))$ tbl-> addCell($ frm-> addInput('text','total',0,array,'' ; 究竟在這段代碼中的小計是總結?我看到小計值的addinput('text','total',0)行,但沒有看到任何對全局或局部變量的引用,這些變量具有總計我的單元總數的公式... – sixfiveoh