if (saleDetails.length) {
var htmlData;
var paymentStatus = 0;
if ($('#PaymentStatus option:selected').val() != 0) {
paymentStatus = $('#PaymentStatus option:selected').text()
}
var SaleAmount = parseFloat(total + vat).toFixed(2);
var data = {
'AccountID': $('#hdnAccountID').val(),
'QuoteID': $('#hdnQuoteID').val(),
'BranchID': $('#BranchID option:selected').val(),
'PONO': $('#PONO').val(),
'PaymentStatus': $('#PaymentStatus').val(),
'SalesDate': $('#SaleDate').val(),
'PaymentStatus': paymentStatus,
'PaymentTypeID': $('#PaymentType option:selected').val(),
'VAT': vat,
'TotalAmount': invoiceAmount,
'DiscountAmount': $('#discInput').val(),
'AmountPaid': $('#amountPaid').val(),
'SaleDetails': saleDetails
};
var json = JSON.stringify({ 'model': data });
public ActionResult printOrder(Models.DTO.Sales model)
{
return PartialView(model);
//return View(model);
}
我在POS上工作,在销售中,客户要求我们给他一个打印选项,以便如果客户单击“打印”按钮,我们应该打开一个新标签并显示发票,以便客户可以取出打印,并且客户付钱给他,那么客户将保存SalesOrder。 我面临的问题是我无法从controller打开新选项卡。而且,如果我尝试从Java脚本执行此操作,则无法传递模型以从Java脚本查看。 因此,由于我不是MVC方面的专家,因此请在此问题上为我提供帮助。
答案 0 :(得分:0)
您可以使用Html.ActionLink在Razor页面的新标签页中打开页面,如下所示。
@Html.ActionLink("Print", "Action", new { controller="PrintOrder" }, new { target="_blank" })
Html.ActionLink
但是不允许您传递复杂的对象。您可以使用此stackoverflow答案中提到的技巧来传递模型。从帖子中:
MODEL:在类似的类中创建静态Serialize和Deserialize方法
public class XYZ { // Some Fields public string X { get; set; } public string Y { get; set; } public string X { get; set; } // This will convert the passed XYZ object to JSON string public static string Serialize(XYZ xyz) { var serializer = new JavaScriptSerializer(); return serializer.Serialize(xyz); } // This will convert the passed JSON string back to XYZ object public static XYZ Deserialize(string data) { var serializer = new JavaScriptSerializer(); return serializer.Deserialize<XYZ>(data); } }
查看:现在将复杂对象传递给JSON字符串,然后再将其传递
Action View <%= Html.ActionLink(Model.x, "SomeAction", new { modelString = XYZ.Serialize(Model) })%>
CONTROLLER:获取 对象作为Action方法中的字符串,然后将其转换回之前的对象
using public ActionResult SomeAction(string modelString) { XYX xyz = XYX.Deserialize(modelString); }