recorddetailsinfo.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. // pages/record/recorddetailsinfo/recorddetailsinfo.js
  2. const app = getApp()
  3. // const util = require('../../..//utils/util.js')
  4. // const BL = require('../../../utils/lanya.js')
  5. var pos = require('../../../utils/pos.js')
  6. var GXZT;//更新状态
  7. Page({
  8. /**
  9. * 页面的初始数据
  10. */
  11. data: {
  12. id: 0,
  13. info: '',
  14. show: 0,
  15. },
  16. /**
  17. * 生命周期函数--监听页面加载
  18. */
  19. onLoad: function (options) {
  20. this.setData({
  21. id: options.id,
  22. show: options.si ? 1 : 0
  23. })
  24. },
  25. /**
  26. * 生命周期函数--监听页面初次渲染完成
  27. */
  28. onReady: function () {
  29. },
  30. onClick() {
  31. wx.navigateBack({
  32. delta: 2 //想要返回的层级
  33. })
  34. },
  35. /**
  36. * 生命周期函数--监听页面显示
  37. */
  38. onShow: function () {
  39. this.getinfo()
  40. },
  41. getinfo() {
  42. let that = this
  43. wx.showLoading()
  44. app.api.useApi(app.globalData.baseAppUrl + "api/admin/sorting/pack/InventoryRecord", { id: that.data.id }, "get").then(function (res) {
  45. wx.hideLoading()
  46. if (res.code == 200) {
  47. that.setData({ info: res.message.data })
  48. }
  49. }).catch(function (err) {
  50. console.log(222);
  51. })
  52. },
  53. /**
  54. * 生命周期函数--监听页面隐藏
  55. */
  56. onHide: function () {
  57. },
  58. /**
  59. * 生命周期函数--监听页面卸载
  60. */
  61. onUnload: function () {
  62. },
  63. /**
  64. * 页面相关事件处理函数--监听用户下拉动作
  65. */
  66. onPullDownRefresh: function () {
  67. },
  68. /**
  69. * 页面上拉触底事件的处理函数
  70. */
  71. onReachBottom: function () {
  72. },
  73. /**
  74. * 用户点击右上角分享
  75. */
  76. onShareAppMessage: function () {
  77. },
  78. pd: function () {
  79. var that=this;
  80. console.log("开始打印")
  81. //pos.PrintText("情景4:综合支付不使用零钱也不存零,无找零");//打印标题
  82. pos.PrintJumpLines(1);
  83. pos.PrintTitle("客户信息");//打印标题
  84. pos.PrintNameValue('姓名: ', that.data.info.users.username);
  85. pos.PrintNameValue("手机:",that.data.info.users.phone);//打印标题
  86. pos.PrintNameValue('地址:',that.data.info.users.address);
  87. pos.PrintTitle("物流单信息");//打印标题
  88. pos.PrintNameValue("物流单号:",that.data.info.logistic.seal_no);
  89. pos.PrintNameValue("目的地:",that.data.info.title);
  90. pos.PrintTitle("打包衣物:"+that.data.hand.length+"件");
  91. var hand=that.data.info.hand;
  92. hand.forEach(element => {
  93. pos.PrintNameValue("","#".element.wash_code+element.cat_title+"-"+element.goods_title+"-"+element.standard_title);
  94. });
  95. // pos.PrintText("可口可乐(听)");
  96. // pos.PPP("2.0", "2", "4.00");
  97. // pos.PrintText("大泽山葡萄(kg)");
  98. // pos.PPP("12.8", "2.0", "25.6");
  99. // pos.PrintText("大泽山葡萄(盒)");
  100. // pos.PPP("30", "2.0", "60.0");
  101. // pos.PrintMiddleText('--------------------------------');
  102. // pos.PrintNameValue('合计数量: ', '6.0');
  103. // pos.PrintNameValue('标价金额: ', '128.8');
  104. // pos.PrintText('合计优惠(促销/特价等): -2.3');
  105. // pos.PrintNameValue('合计应收: ', '126.5');
  106. // pos.PrintNameValue('实际收款: ', '126.5');
  107. // //pos.PrintNameValue('优惠(抹零): ', '0.5');
  108. // pos.PrintMiddleText('--------------------------------');
  109. // pos.PrintText("收款明细: ");//打印标题
  110. // pos.PrintNameValue('现金: ', '100');
  111. // pos.PrintNameValue('微信刷卡: ', '26.5');
  112. // //pos.PrintNameValue('零钱包支付: ', '0.5');
  113. // //pos.PrintNameValue('现金找零: ', '4.0');
  114. // pos.PrintMiddleText('--------------------------------');
  115. // pos.PrintNameValue('会员卡: ', '132****8588');
  116. // //pos.PrintNameValue('支付前余额: ', '5.00');
  117. // pos.PrintNameValue('当前可用余额: ', '4.5');
  118. // pos.PrintNameValue('本次积分: ', '12.0');
  119. // pos.PrintNameValue('当前可用积分: ', '285.0');
  120. // pos.PrintMiddleText('--------------------------------');
  121. // pos.PrintText("谢谢您的惠顾,欢迎下次光临!");//打印标题
  122. // pos.PrintQRcode('http://xxx.xxx.xxx');//二维码 PrintBarcode: PrintBarcode,//打印条码
  123. // pos.PrintJumpLines(3);
  124. // pos.PrintBarcode('6934199500017');//条码
  125. pos.PrintJumpLines(3);
  126. pos.DaYin(function (res) {
  127. if (res == "err") {
  128. pos.ClearQueue();//清空打印列队
  129. //提示,打印出错,请稍后再试,仍然出错请重新设置打印机
  130. }
  131. })
  132. }
  133. })