1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using JCSoft.WX.Framework.Api;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Http;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Common.Wechat;
- using Common;
- using SupplierWeb.Codes.mvc;
- namespace SupplierWeb.Controllers
- {
- [Route("web/supplywarehouse")]
- public class WareHouseController : Controller
- {
- public WareHouseController()
- {
- }
- ////有挂靠的业务员查看发票签收状态,付款状态
- [AuthPermission]
- [HttpGet,Route("orderinvoice")]
- public ActionResult OrderInvoice(string echostr, string signature, string timestamp, string nonce)
- {
- #region 获取Openid
- WechatHelper.ReGetOpenId(HttpContext);
- #endregion
- return View();
- }
- ////有挂靠的业务员可以在协同系统中查询其所供的商品库存
- [AuthPermission]
- [HttpGet,Route("productstockin")]
- public ActionResult ProductStockIn(string echostr, string signature, string timestamp, string nonce)
- {
- #region 获取Openid
- //WechatHelper.ReGetOpenId(HttpContext);
- #endregion
- return View();
- }
- }
- }
|